@@ -1,3 +1,4 @@
obj-$(CONFIG_RESET_TI) += reset-ti.o
obj-$(CONFIG_SOC_DRA7XX) += reset-ti-dra7xx.o
obj-$(CONFIG_SOC_OMAP5) += reset-ti-omap5.o
+obj-$(CONFIG_SOC_AM33XX) += reset-ti-am33xx.o
new file mode 100644
@@ -0,0 +1,37 @@
+/*
+ * am33xx reset data for PRCM Module
+ *
+ * Copyright 2014 Texas Instruments Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include "reset-ti-data.h"
+
+static struct ti_reset_reg_data am335x_reset_reg_data[] = {
+ {
+ .rstctrl_offs = 0xf00,
+ .rstctrl_bit = 0,
+ .rstst_offs = 0xf08,
+ .rstst_bit = 0,
+ },
+ {
+ .rstctrl_offs = 0x1104,
+ .rstctrl_bit = 0,
+ .rstst_offs = 0x1114,
+ .rstst_bit = 0,
+ },
+ {
+ .rstctrl_offs = 0x0D00,
+ .rstctrl_bit = 3,
+ .rstst_offs = 0x0D0C,
+ .rstst_bit = 5,
+ },
+};
+
+struct ti_reset_data am335x_reset_data = {
+ .reg_data = am335x_reset_reg_data,
+ .nr_resets = ARRAY_SIZE(am335x_reset_reg_data),
+};
@@ -57,5 +57,6 @@ struct ti_reset_data {
extern struct ti_reset_data dra7_reset_data;
extern struct ti_reset_data omap5_reset_data;
+extern struct ti_reset_data am335x_reset_data;
#endif
@@ -138,6 +138,9 @@ static const struct of_device_id ti_reset_of_match[] = {
#ifdef CONFIG_SOC_OMAP5
{ .compatible = "ti,omap5-resets", .data = &omap5_reset_data,},
#endif
+#ifdef CONFIG_SOC_AM33XX
+ { .compatible = "ti,am335x-resets", .data = &am335x_reset_data,},
+#endif
{},
};
Add the reset register data for the am335 SoC. Signed-off-by: Dan Murphy <dmurphy@ti.com> --- drivers/reset/ti/Makefile | 1 + drivers/reset/ti/reset-ti-am33xx.c | 37 ++++++++++++++++++++++++++++++++++++ drivers/reset/ti/reset-ti-data.h | 1 + drivers/reset/ti/reset-ti.c | 3 +++ 4 files changed, 42 insertions(+) create mode 100644 drivers/reset/ti/reset-ti-am33xx.c