@@ -10,6 +10,7 @@
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/interrupt-controller/arm-gic.h>
+#include <dt-bindings/reset/ti,am437x-resets.h>
#include "skeleton.dtsi"
@@ -84,6 +85,11 @@
prcm_clockdomains: clockdomains {
};
+
+ prcm_resets: resets {
+ compatible = "ti,am4372-resets";
+ #reset-cells = <1>;
+ };
};
scrm: scrm@44e10000 {
new file mode 100644
@@ -0,0 +1,19 @@
+/*
+ * AM437x reset index 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.
+ */
+
+#ifndef _DT_BINDINGS_RESET_TI_AM437X_H
+#define _DT_BINDINGS_RESET_TI_AM437X_H
+
+#define RESET_DEVICE_RESET 0
+#define RESET_ICSS_RESET 1
+#define RESET_GFX_RESET 2
+#define RESET_PER_RESET 3
+
+#endif
Add the prcm_resets node to the prcm parent node. Add the dt-bindings header to the DT file Signed-off-by: Dan Murphy <dmurphy@ti.com> --- arch/arm/boot/dts/am4372.dtsi | 6 ++++++ include/dt-bindings/reset/ti,am437x-resets.h | 19 +++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 include/dt-bindings/reset/ti,am437x-resets.h