* [PATCH v4 00/10] ARM: dts: TI: Add CAN support
@ 2014-11-13 12:22 Roger Quadros
2014-11-13 12:22 ` [PATCH v4 01/10] ARM: dts: dra7: Add syscon regmap for CORE CONTROL area Roger Quadros
` (10 more replies)
0 siblings, 11 replies; 28+ messages in thread
From: Roger Quadros @ 2014-11-13 12:22 UTC (permalink / raw)
To: tony; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
Hi Tony,
These patches add CAN support for am33xx, am43xx and dra7 platforms.
They can go in independent of [1] but depend on [1] for functionality.
Tested on am335x-evm, am437x-gp-evm and dra7-evm.
NOTE:
- for DCAN to work on DRA7 we need this patch to keep the CAN PHY powered.
https://lkml.org/lkml/2014/10/21/484
- on DRA7 there is another issue which causes undesired behaviour if WKUPAON and
L4CFG clock domains are allowed to HW_AUTO. Undesired behaviour is in the form
of DCAN1 module being stuck-in-transition when disabled and RAMINIT-done bit
not getting set as part of RAMINIT mechanism. To address these issues there is a patch
to prevent these clockdomains from HW_AUTO.
https://github.com/rogerq/linux/commit/31d6da939dbbaf8ea2ab96ca5680b81cd5607e51
Even without this second patch DCAN seems to work.
cheers,
-roger
Changelog:
v4:
- added CAN instance number to "syscon-raminit" and use new compatible ids
v3:
- Move raminit register data into driver data
- rename syscon property to "syscon-raminit"
v2:
- Added vendor prefix "ti," to raminit properties
- Updated am335x dcan nodes
[1] - CAN driver RAMINIT Syscon support
http://article.gmane.org/gmane.linux.can/6892
cheers,
-roger
---
Mugunthan V N (1):
arm: dts: am437x-gp: Add dcan support
Roger Quadros (9):
ARM: dts: dra7: Add syscon regmap for CORE CONTROL area
ARM: dts: DRA7: Add DCAN nodes
ARM: dts: dra7-evm: Add CAN support
ARM: dts: dra72-evm: Add CAN support
ARM: dts: am4372: Add control module syscon node
ARM: dts: am4372: Add DCAN nodes
ARM: dts: am33xx: Add control module syscon node
ARM: dts: am33xx: Update DCAN nodes
ARM: dts: am335x-evm: Add DCAN1 details
arch/arm/boot/dts/am335x-evm.dts | 13 +++++++++++++
arch/arm/boot/dts/am33xx.dtsi | 25 +++++++++++++++++--------
arch/arm/boot/dts/am4372.dtsi | 27 +++++++++++++++++++++++++++
arch/arm/boot/dts/am437x-gp-evm.dts | 26 ++++++++++++++++++++++++++
arch/arm/boot/dts/dra7-evm.dts | 23 +++++++++++++++++++++++
arch/arm/boot/dts/dra7.dtsi | 27 +++++++++++++++++++++++++++
arch/arm/boot/dts/dra72-evm.dts | 23 +++++++++++++++++++++++
7 files changed, 156 insertions(+), 8 deletions(-)
--
1.8.3.2
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH v4 01/10] ARM: dts: dra7: Add syscon regmap for CORE CONTROL area
2014-11-13 12:22 [PATCH v4 00/10] ARM: dts: TI: Add CAN support Roger Quadros
@ 2014-11-13 12:22 ` Roger Quadros
2014-11-13 12:22 ` [PATCH v4 02/10] ARM: dts: DRA7: Add DCAN nodes Roger Quadros
` (9 subsequent siblings)
10 siblings, 0 replies; 28+ messages in thread
From: Roger Quadros @ 2014-11-13 12:22 UTC (permalink / raw)
To: tony; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
Display and DCAN drivers use syscon regmap to access some registers
in the CORE control area. Add the syscon regmap node for this
area.
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Cc: Nishanth Menon <nm@ti.com>
Signed-off-by: Roger Quadros <rogerq@ti.com>
---
arch/arm/boot/dts/dra7.dtsi | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/arch/arm/boot/dts/dra7.dtsi b/arch/arm/boot/dts/dra7.dtsi
index 9cc9843..5fd52cd 100644
--- a/arch/arm/boot/dts/dra7.dtsi
+++ b/arch/arm/boot/dts/dra7.dtsi
@@ -201,6 +201,11 @@
ti,hwmods = "counter_32k";
};
+ dra7_ctrl_core: ctrl_core@4a002000 {
+ compatible = "syscon";
+ reg = <0x4a002000 0x6d0>;
+ };
+
dra7_ctrl_general: tisyscon@4a002e00 {
compatible = "syscon";
reg = <0x4a002e00 0x7c>;
--
1.8.3.2
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v4 02/10] ARM: dts: DRA7: Add DCAN nodes
2014-11-13 12:22 [PATCH v4 00/10] ARM: dts: TI: Add CAN support Roger Quadros
2014-11-13 12:22 ` [PATCH v4 01/10] ARM: dts: dra7: Add syscon regmap for CORE CONTROL area Roger Quadros
@ 2014-11-13 12:22 ` Roger Quadros
2014-11-13 12:22 ` [PATCH v4 03/10] ARM: dts: dra7-evm: Add CAN support Roger Quadros
` (8 subsequent siblings)
10 siblings, 0 replies; 28+ messages in thread
From: Roger Quadros @ 2014-11-13 12:22 UTC (permalink / raw)
To: tony; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
The SoC supports 2 DCAN nodes. Add them.
Signed-off-by: Roger Quadros <rogerq@ti.com>
---
arch/arm/boot/dts/dra7.dtsi | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/arch/arm/boot/dts/dra7.dtsi b/arch/arm/boot/dts/dra7.dtsi
index 5fd52cd..631b5fb 100644
--- a/arch/arm/boot/dts/dra7.dtsi
+++ b/arch/arm/boot/dts/dra7.dtsi
@@ -34,6 +34,8 @@
serial3 = &uart4;
serial4 = &uart5;
serial5 = &uart6;
+ d_can0 = &dcan1;
+ d_can1 = &dcan2;
};
timer {
@@ -1270,6 +1272,26 @@
ti,irqs-skip = <10 133 139 140>;
ti,irqs-safe-map = <0>;
};
+
+ dcan1: can@481cc000 {
+ compatible = "ti,dra7-d_can";
+ ti,hwmods = "dcan1";
+ reg = <0x4ae3c000 0x2000>;
+ syscon-raminit = <&dra7_ctrl_core 0x558 0>;
+ interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&dcan1_sys_clk_mux>;
+ status = "disabled";
+ };
+
+ dcan2: can@481d0000 {
+ compatible = "ti,dra7-d_can";
+ ti,hwmods = "dcan2";
+ reg = <0x48480000 0x2000>;
+ syscon-raminit = <&dra7_ctrl_core 0x558 1>;
+ interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&sys_clkin1>;
+ status = "disabled";
+ };
};
};
--
1.8.3.2
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v4 03/10] ARM: dts: dra7-evm: Add CAN support
2014-11-13 12:22 [PATCH v4 00/10] ARM: dts: TI: Add CAN support Roger Quadros
2014-11-13 12:22 ` [PATCH v4 01/10] ARM: dts: dra7: Add syscon regmap for CORE CONTROL area Roger Quadros
2014-11-13 12:22 ` [PATCH v4 02/10] ARM: dts: DRA7: Add DCAN nodes Roger Quadros
@ 2014-11-13 12:22 ` Roger Quadros
2014-11-13 12:22 ` [PATCH v4 04/10] ARM: dts: dra72-evm: " Roger Quadros
` (7 subsequent siblings)
10 siblings, 0 replies; 28+ messages in thread
From: Roger Quadros @ 2014-11-13 12:22 UTC (permalink / raw)
To: tony; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
The board has 2 CAN ports but only the first one can be used.
Enable the first CAN port.
WAKEUP0 pin doesn't have INPUT enable bit so we just disable
weak PULLs.
The second CAN port cannot be used without hardware modification
so we don't enable the second port.
Signed-off-by: Roger Quadros <rogerq@ti.com>
---
arch/arm/boot/dts/dra7-evm.dts | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts
index c6ce625..8c2c37b 100644
--- a/arch/arm/boot/dts/dra7-evm.dts
+++ b/arch/arm/boot/dts/dra7-evm.dts
@@ -171,6 +171,22 @@
0xd0 (PIN_OUTPUT | MUX_MODE0) /* gpmc_be0n_cle */
>;
};
+
+ dcan1_pins_default: dcan1_pins_default {
+ pinctrl-single,pins = <
+ 0x3d0 (PIN_OUTPUT | MUX_MODE0) /* dcan1_tx */
+ 0x3d4 (MUX_MODE15) /* dcan1_rx.off */
+ 0x418 (PULL_DIS | MUX_MODE1) /* wakeup0.dcan1_rx */
+ >;
+ };
+
+ dcan1_pins_sleep: dcan1_pins_sleep {
+ pinctrl-single,pins = <
+ 0x3d0 (MUX_MODE15) /* dcan1_tx.off */
+ 0x3d4 (MUX_MODE15) /* dcan1_rx.off */
+ 0x418 (MUX_MODE15) /* wakeup0.off */
+ >;
+ };
};
&i2c1 {
@@ -528,3 +544,10 @@
ti,no-reset-on-init;
ti,no-idle-on-init;
};
+
+&dcan1 {
+ status = "ok";
+ pinctrl-names = "default", "sleep";
+ pinctrl-0 = <&dcan1_pins_default>;
+ pinctrl-1 = <&dcan1_pins_sleep>;
+};
--
1.8.3.2
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v4 04/10] ARM: dts: dra72-evm: Add CAN support
2014-11-13 12:22 [PATCH v4 00/10] ARM: dts: TI: Add CAN support Roger Quadros
` (2 preceding siblings ...)
2014-11-13 12:22 ` [PATCH v4 03/10] ARM: dts: dra7-evm: Add CAN support Roger Quadros
@ 2014-11-13 12:22 ` Roger Quadros
2014-11-13 12:22 ` [PATCH v4 05/10] ARM: dts: am4372: Add control module syscon node Roger Quadros
` (6 subsequent siblings)
10 siblings, 0 replies; 28+ messages in thread
From: Roger Quadros @ 2014-11-13 12:22 UTC (permalink / raw)
To: tony; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
The board has 2 CAN ports but only the first one can be used.
Enable the first CAN port.
WAKEUP0 pin doesn't have INPUT enable bit so we just disable
weak PULLs.
The second CAN port cannot be used without hardware modification
so we don't enable the second port.
Signed-off-by: Roger Quadros <rogerq@ti.com>
---
arch/arm/boot/dts/dra72-evm.dts | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/arch/arm/boot/dts/dra72-evm.dts b/arch/arm/boot/dts/dra72-evm.dts
index 4107428..a4b01ce 100644
--- a/arch/arm/boot/dts/dra72-evm.dts
+++ b/arch/arm/boot/dts/dra72-evm.dts
@@ -26,6 +26,22 @@
0x404 (PIN_INPUT | MUX_MODE0) /* i2c1_scl.i2c1_scl */
>;
};
+
+ dcan1_pins_default: dcan1_pins_default {
+ pinctrl-single,pins = <
+ 0x3d0 (PIN_OUTPUT | MUX_MODE0) /* dcan1_tx */
+ 0x3d4 (MUX_MODE15) /* dcan1_rx.off */
+ 0x418 (PULL_DIS | MUX_MODE1) /* wakeup0.dcan1_rx */
+ >;
+ };
+
+ dcan1_pins_sleep: dcan1_pins_sleep {
+ pinctrl-single,pins = <
+ 0x3d0 (MUX_MODE15) /* dcan1_tx.off */
+ 0x3d4 (MUX_MODE15) /* dcan1_rx.off */
+ 0x418 (MUX_MODE15) /* wakeup0.off */
+ >;
+ };
};
&i2c1 {
@@ -142,3 +158,10 @@
&uart1 {
status = "okay";
};
+
+&dcan1 {
+ status = "ok";
+ pinctrl-names = "default", "sleep";
+ pinctrl-0 = <&dcan1_pins_default>;
+ pinctrl-1 = <&dcan1_pins_sleep>;
+};
--
1.8.3.2
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v4 05/10] ARM: dts: am4372: Add control module syscon node
2014-11-13 12:22 [PATCH v4 00/10] ARM: dts: TI: Add CAN support Roger Quadros
` (3 preceding siblings ...)
2014-11-13 12:22 ` [PATCH v4 04/10] ARM: dts: dra72-evm: " Roger Quadros
@ 2014-11-13 12:22 ` Roger Quadros
2014-11-13 12:22 ` [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes Roger Quadros
` (5 subsequent siblings)
10 siblings, 0 replies; 28+ messages in thread
From: Roger Quadros @ 2014-11-13 12:22 UTC (permalink / raw)
To: tony; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
Use syscon regmap to expose the Control module register space.
This register space is shared between many users e.g. DCAN, USB, display, etc.
Signed-off-by: Roger Quadros <rogerq@ti.com>
---
arch/arm/boot/dts/am4372.dtsi | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
index 46660ff..899c57c 100644
--- a/arch/arm/boot/dts/am4372.dtsi
+++ b/arch/arm/boot/dts/am4372.dtsi
@@ -57,6 +57,11 @@
cache-level = <2>;
};
+ am43xx_control_module: control_module@4a002000 {
+ compatible = "syscon";
+ reg = <0x44e10000 0x7f4>;
+ };
+
am43xx_pinmux: pinmux@44e10800 {
compatible = "ti,am437-padconf", "pinctrl-single";
reg = <0x44e10800 0x31c>;
--
1.8.3.2
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-13 12:22 [PATCH v4 00/10] ARM: dts: TI: Add CAN support Roger Quadros
` (4 preceding siblings ...)
2014-11-13 12:22 ` [PATCH v4 05/10] ARM: dts: am4372: Add control module syscon node Roger Quadros
@ 2014-11-13 12:22 ` Roger Quadros
2014-11-13 14:07 ` Marc Kleine-Budde
2014-11-17 13:08 ` [PATCH v5 " Roger Quadros
2014-11-13 12:22 ` [PATCH v4 07/10] arm: dts: am437x-gp: Add dcan support Roger Quadros
` (4 subsequent siblings)
10 siblings, 2 replies; 28+ messages in thread
From: Roger Quadros @ 2014-11-13 12:22 UTC (permalink / raw)
To: tony; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
The SoC contains 2 DCAN modules. Add them.
Signed-off-by: Roger Quadros <rogerq@ti.com>
---
arch/arm/boot/dts/am4372.dtsi | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
index 899c57c..12fb1db 100644
--- a/arch/arm/boot/dts/am4372.dtsi
+++ b/arch/arm/boot/dts/am4372.dtsi
@@ -901,6 +901,28 @@
compatible = "mmio-sram";
reg = <0x40300000 0x40000>; /* 256k */
};
+
+ dcan0: can@481cc000 {
+ compatible = "ti,am3352-d_can";
+ ti,hwmods = "d_can0";
+ clocks = <&dcan0_fck>;
+ clock-names = "fck";
+ reg = <0x481cc000 0x2000>;
+ syscon-raminit = <&am43xx_control_module 0x644 0>;
+ interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
+ status = "disabled";
+ };
+
+ dcan1: can@481d0000 {
+ compatible = "ti,am3352-d_can";
+ ti,hwmods = "d_can1";
+ clocks = <&dcan1_fck>;
+ clock-names = "fck";
+ reg = <0x481d0000 0x2000>;
+ syscon-raminit = <&am43xx_control_module 0x644 1>;
+ interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
+ status = "disabled";
+ };
};
};
--
1.8.3.2
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v4 07/10] arm: dts: am437x-gp: Add dcan support
2014-11-13 12:22 [PATCH v4 00/10] ARM: dts: TI: Add CAN support Roger Quadros
` (5 preceding siblings ...)
2014-11-13 12:22 ` [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes Roger Quadros
@ 2014-11-13 12:22 ` Roger Quadros
2014-11-13 12:22 ` [PATCH v4 08/10] ARM: dts: am33xx: Add control module syscon node Roger Quadros
` (3 subsequent siblings)
10 siblings, 0 replies; 28+ messages in thread
From: Roger Quadros @ 2014-11-13 12:22 UTC (permalink / raw)
To: tony; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
From: Mugunthan V N <mugunthanvnm@ti.com>
Add DCAN support for AM437x GP EVM with both DCAN instances.
[Roger Q] Updated output pin to not use pull up.
Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
Signed-off-by: George Cherian <george.cherian@ti.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Roger Quadros <rogerq@ti.com>
---
arch/arm/boot/dts/am437x-gp-evm.dts | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/arch/arm/boot/dts/am437x-gp-evm.dts b/arch/arm/boot/dts/am437x-gp-evm.dts
index e7ac47f..58594fd 100644
--- a/arch/arm/boot/dts/am437x-gp-evm.dts
+++ b/arch/arm/boot/dts/am437x-gp-evm.dts
@@ -254,6 +254,20 @@
0x238 (PIN_OUTPUT_PULLUP | MUX_MODE7)
>;
};
+
+ dcan0_default: dcan0_default_pins {
+ pinctrl-single,pins = <
+ 0x178 (PIN_OUTPUT | MUX_MODE2) /* uart1_ctsn.d_can0_tx */
+ 0x17c (PIN_INPUT_PULLUP | MUX_MODE2) /* uart1_rtsn.d_can0_rx */
+ >;
+ };
+
+ dcan1_default: dcan1_default_pins {
+ pinctrl-single,pins = <
+ 0x180 (PIN_OUTPUT | MUX_MODE2) /* uart1_rxd.d_can1_tx */
+ 0x184 (PIN_INPUT_PULLUP | MUX_MODE2) /* uart1_txd.d_can1_rx */
+ >;
+ };
};
&i2c0 {
@@ -511,3 +525,15 @@
};
};
};
+
+&dcan0 {
+ pinctrl-names = "default";
+ pinctrl-0 = <&dcan0_default>;
+ status = "okay";
+};
+
+&dcan1 {
+ pinctrl-names = "default";
+ pinctrl-0 = <&dcan1_default>;
+ status = "okay";
+};
--
1.8.3.2
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v4 08/10] ARM: dts: am33xx: Add control module syscon node
2014-11-13 12:22 [PATCH v4 00/10] ARM: dts: TI: Add CAN support Roger Quadros
` (6 preceding siblings ...)
2014-11-13 12:22 ` [PATCH v4 07/10] arm: dts: am437x-gp: Add dcan support Roger Quadros
@ 2014-11-13 12:22 ` Roger Quadros
2014-11-13 12:22 ` [PATCH v4 09/10] ARM: dts: am33xx: Update DCAN nodes Roger Quadros
` (2 subsequent siblings)
10 siblings, 0 replies; 28+ messages in thread
From: Roger Quadros @ 2014-11-13 12:22 UTC (permalink / raw)
To: tony; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
Use syscon regmap to expose the Control module register space.
This register space is shared between many users e.g. DCAN, USB, display, etc.
Signed-off-by: Roger Quadros <rogerq@ti.com>
---
arch/arm/boot/dts/am33xx.dtsi | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi
index 8318105..9f3058c 100644
--- a/arch/arm/boot/dts/am33xx.dtsi
+++ b/arch/arm/boot/dts/am33xx.dtsi
@@ -83,6 +83,11 @@
};
};
+ am33xx_control_module: control_module@4a002000 {
+ compatible = "syscon";
+ reg = <0x44e10000 0x7fc>;
+ };
+
am33xx_pinmux: pinmux@44e10800 {
compatible = "pinctrl-single";
reg = <0x44e10800 0x0238>;
--
1.8.3.2
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v4 09/10] ARM: dts: am33xx: Update DCAN nodes
2014-11-13 12:22 [PATCH v4 00/10] ARM: dts: TI: Add CAN support Roger Quadros
` (7 preceding siblings ...)
2014-11-13 12:22 ` [PATCH v4 08/10] ARM: dts: am33xx: Add control module syscon node Roger Quadros
@ 2014-11-13 12:22 ` Roger Quadros
2014-11-13 16:03 ` Wolfram Sang
2014-11-13 12:22 ` [PATCH v4 10/10] ARM: dts: am335x-evm: Add DCAN1 details Roger Quadros
2014-11-18 20:42 ` [PATCH v4 00/10] ARM: dts: TI: Add CAN support Marc Kleine-Budde
10 siblings, 1 reply; 28+ messages in thread
From: Roger Quadros @ 2014-11-13 12:22 UTC (permalink / raw)
To: tony; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
Add "raminit-syscon" property to specify the RAMINIT register.
Add clock information.
Rename can nodes from "d_can" to "can" to be compliant
with the ePAPR specs.
Signed-off-by: Roger Quadros <rogerq@ti.com>
---
arch/arm/boot/dts/am33xx.dtsi | 20 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)
diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi
index 9f3058c..74fefa1 100644
--- a/arch/arm/boot/dts/am33xx.dtsi
+++ b/arch/arm/boot/dts/am33xx.dtsi
@@ -338,20 +338,24 @@
interrupts = <91>;
};
- dcan0: d_can@481cc000 {
- compatible = "bosch,d_can";
+ dcan0: can@481cc000 {
+ compatible = "ti,am3352-d_can";
ti,hwmods = "d_can0";
- reg = <0x481cc000 0x2000
- 0x44e10644 0x4>;
+ reg = <0x481cc000 0x2000>;
+ clocks = <&dcan0_fck>;
+ clock-names = "fck";
+ syscon-raminit = <&am33xx_control_module 0x644 0>;
interrupts = <52>;
status = "disabled";
};
- dcan1: d_can@481d0000 {
- compatible = "bosch,d_can";
+ dcan1: can@481d0000 {
+ compatible = "ti,am3352-d_can";
ti,hwmods = "d_can1";
- reg = <0x481d0000 0x2000
- 0x44e10644 0x4>;
+ reg = <0x481d0000 0x2000>;
+ clocks = <&dcan1_fck>;
+ clock-names = "fck";
+ syscon-raminit = <&am33xx_control_module 0x644 1>;
interrupts = <55>;
status = "disabled";
};
--
1.8.3.2
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v4 10/10] ARM: dts: am335x-evm: Add DCAN1 details
2014-11-13 12:22 [PATCH v4 00/10] ARM: dts: TI: Add CAN support Roger Quadros
` (8 preceding siblings ...)
2014-11-13 12:22 ` [PATCH v4 09/10] ARM: dts: am33xx: Update DCAN nodes Roger Quadros
@ 2014-11-13 12:22 ` Roger Quadros
2014-11-18 20:42 ` [PATCH v4 00/10] ARM: dts: TI: Add CAN support Marc Kleine-Budde
10 siblings, 0 replies; 28+ messages in thread
From: Roger Quadros @ 2014-11-13 12:22 UTC (permalink / raw)
To: tony; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
DCAN1 is routed to CAN port (J11) when Profile 1 is selected on the
profile selection switch.
Provide information for DCAN1 pins and node but keep it disabled
by default. User has to manually enable it if Profile 1 is chosen.
Signed-off-by: Roger Quadros <rogerq@ti.com>
---
arch/arm/boot/dts/am335x-evm.dts | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/arch/arm/boot/dts/am335x-evm.dts b/arch/arm/boot/dts/am335x-evm.dts
index e2156a5..e3d0b39 100644
--- a/arch/arm/boot/dts/am335x-evm.dts
+++ b/arch/arm/boot/dts/am335x-evm.dts
@@ -307,6 +307,13 @@
0x144 (PIN_INPUT_PULLDOWN | MUX_MODE4) /* rmii1_ref_clk.mcasp1_axr3 */
>;
};
+
+ dcan1_pins_default: dcan1_pins_default {
+ pinctrl-single,pins = <
+ 0x168 (PIN_OUTPUT | MUX_MODE2) /* uart0_ctsn.d_can1_tx */
+ 0x16c (PIN_INPUT_PULLDOWN | MUX_MODE2) /* uart0_rtsn.d_can1_rx */
+ >;
+ };
};
&uart0 {
@@ -664,3 +671,9 @@
&aes {
status = "okay";
};
+
+&dcan1 {
+ status = "disabled"; /* Enable only if Profile 1 is selected */
+ pinctrl-names = "default";
+ pinctrl-0 = <&dcan1_pins_default>;
+};
--
1.8.3.2
^ permalink raw reply related [flat|nested] 28+ messages in thread
* Re: [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-13 12:22 ` [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes Roger Quadros
@ 2014-11-13 14:07 ` Marc Kleine-Budde
2014-11-13 14:40 ` Roger Quadros
2014-11-17 13:08 ` [PATCH v5 " Roger Quadros
1 sibling, 1 reply; 28+ messages in thread
From: Marc Kleine-Budde @ 2014-11-13 14:07 UTC (permalink / raw)
To: Roger Quadros, tony; +Cc: wg, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
[-- Attachment #1: Type: text/plain, Size: 1628 bytes --]
On 11/13/2014 01:22 PM, Roger Quadros wrote:
> The SoC contains 2 DCAN modules. Add them.
>
> Signed-off-by: Roger Quadros <rogerq@ti.com>
> ---
> arch/arm/boot/dts/am4372.dtsi | 22 ++++++++++++++++++++++
> 1 file changed, 22 insertions(+)
>
> diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
> index 899c57c..12fb1db 100644
> --- a/arch/arm/boot/dts/am4372.dtsi
> +++ b/arch/arm/boot/dts/am4372.dtsi
> @@ -901,6 +901,28 @@
> compatible = "mmio-sram";
> reg = <0x40300000 0x40000>; /* 256k */
> };
> +
> + dcan0: can@481cc000 {
> + compatible = "ti,am3352-d_can";
You should add "ti,am4372-d_can" as first compatible here.
> + ti,hwmods = "d_can0";
> + clocks = <&dcan0_fck>;
> + clock-names = "fck";
> + reg = <0x481cc000 0x2000>;
> + syscon-raminit = <&am43xx_control_module 0x644 0>;
> + interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
> + status = "disabled";
> + };
> +
> + dcan1: can@481d0000 {
> + compatible = "ti,am3352-d_can";
Same here.
> + ti,hwmods = "d_can1";
> + clocks = <&dcan1_fck>;
> + clock-names = "fck";
> + reg = <0x481d0000 0x2000>;
> + syscon-raminit = <&am43xx_control_module 0x644 1>;
> + interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
> + status = "disabled";
> + };
> };
> };
>
>
Marc
--
Pengutronix e.K. | Marc Kleine-Budde |
Industrial Linux Solutions | Phone: +49-231-2826-924 |
Vertretung West/Dortmund | Fax: +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de |
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-13 14:07 ` Marc Kleine-Budde
@ 2014-11-13 14:40 ` Roger Quadros
2014-11-13 14:44 ` Marc Kleine-Budde
0 siblings, 1 reply; 28+ messages in thread
From: Roger Quadros @ 2014-11-13 14:40 UTC (permalink / raw)
To: Marc Kleine-Budde, tony
Cc: wg, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
On 11/13/2014 04:07 PM, Marc Kleine-Budde wrote:
> On 11/13/2014 01:22 PM, Roger Quadros wrote:
>> The SoC contains 2 DCAN modules. Add them.
>>
>> Signed-off-by: Roger Quadros <rogerq@ti.com>
>> ---
>> arch/arm/boot/dts/am4372.dtsi | 22 ++++++++++++++++++++++
>> 1 file changed, 22 insertions(+)
>>
>> diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
>> index 899c57c..12fb1db 100644
>> --- a/arch/arm/boot/dts/am4372.dtsi
>> +++ b/arch/arm/boot/dts/am4372.dtsi
>> @@ -901,6 +901,28 @@
>> compatible = "mmio-sram";
>> reg = <0x40300000 0x40000>; /* 256k */
>> };
>> +
>> + dcan0: can@481cc000 {
>> + compatible = "ti,am3352-d_can";
>
> You should add "ti,am4372-d_can" as first compatible here.
>
We don't have a separate compatible id for am4372-d_can
as it the IP exactly same as am3352-d_can.
cheers,
-roger
>> + ti,hwmods = "d_can0";
>> + clocks = <&dcan0_fck>;
>> + clock-names = "fck";
>> + reg = <0x481cc000 0x2000>;
>> + syscon-raminit = <&am43xx_control_module 0x644 0>;
>> + interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
>> + status = "disabled";
>> + };
>> +
>> + dcan1: can@481d0000 {
>> + compatible = "ti,am3352-d_can";
>
> Same here.
>
>> + ti,hwmods = "d_can1";
>> + clocks = <&dcan1_fck>;
>> + clock-names = "fck";
>> + reg = <0x481d0000 0x2000>;
>> + syscon-raminit = <&am43xx_control_module 0x644 1>;
>> + interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
>> + status = "disabled";
>> + };
>> };
>> };
>>
>>
>
> Marc
>
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-13 14:40 ` Roger Quadros
@ 2014-11-13 14:44 ` Marc Kleine-Budde
2014-11-13 14:49 ` Roger Quadros
0 siblings, 1 reply; 28+ messages in thread
From: Marc Kleine-Budde @ 2014-11-13 14:44 UTC (permalink / raw)
To: Roger Quadros, tony; +Cc: wg, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
[-- Attachment #1: Type: text/plain, Size: 1426 bytes --]
On 11/13/2014 03:40 PM, Roger Quadros wrote:
> On 11/13/2014 04:07 PM, Marc Kleine-Budde wrote:
>> On 11/13/2014 01:22 PM, Roger Quadros wrote:
>>> The SoC contains 2 DCAN modules. Add them.
>>>
>>> Signed-off-by: Roger Quadros <rogerq@ti.com>
>>> ---
>>> arch/arm/boot/dts/am4372.dtsi | 22 ++++++++++++++++++++++
>>> 1 file changed, 22 insertions(+)
>>>
>>> diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
>>> index 899c57c..12fb1db 100644
>>> --- a/arch/arm/boot/dts/am4372.dtsi
>>> +++ b/arch/arm/boot/dts/am4372.dtsi
>>> @@ -901,6 +901,28 @@
>>> compatible = "mmio-sram";
>>> reg = <0x40300000 0x40000>; /* 256k */
>>> };
>>> +
>>> + dcan0: can@481cc000 {
>>> + compatible = "ti,am3352-d_can";
>>
>> You should add "ti,am4372-d_can" as first compatible here.
>>
> We don't have a separate compatible id for am4372-d_can
> as it the IP exactly same as am3352-d_can.
Having the "ti,am4372-d_can" compatible gives you the freedom to add
some spacial handling for the IP if there turns that you need to without
needing to modify the device tree. (We do this on imx.)
Marc
--
Pengutronix e.K. | Marc Kleine-Budde |
Industrial Linux Solutions | Phone: +49-231-2826-924 |
Vertretung West/Dortmund | Fax: +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de |
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-13 14:44 ` Marc Kleine-Budde
@ 2014-11-13 14:49 ` Roger Quadros
2014-11-13 14:54 ` Marc Kleine-Budde
0 siblings, 1 reply; 28+ messages in thread
From: Roger Quadros @ 2014-11-13 14:49 UTC (permalink / raw)
To: Marc Kleine-Budde, tony
Cc: wg, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
On 11/13/2014 04:44 PM, Marc Kleine-Budde wrote:
> On 11/13/2014 03:40 PM, Roger Quadros wrote:
>> On 11/13/2014 04:07 PM, Marc Kleine-Budde wrote:
>>> On 11/13/2014 01:22 PM, Roger Quadros wrote:
>>>> The SoC contains 2 DCAN modules. Add them.
>>>>
>>>> Signed-off-by: Roger Quadros <rogerq@ti.com>
>>>> ---
>>>> arch/arm/boot/dts/am4372.dtsi | 22 ++++++++++++++++++++++
>>>> 1 file changed, 22 insertions(+)
>>>>
>>>> diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
>>>> index 899c57c..12fb1db 100644
>>>> --- a/arch/arm/boot/dts/am4372.dtsi
>>>> +++ b/arch/arm/boot/dts/am4372.dtsi
>>>> @@ -901,6 +901,28 @@
>>>> compatible = "mmio-sram";
>>>> reg = <0x40300000 0x40000>; /* 256k */
>>>> };
>>>> +
>>>> + dcan0: can@481cc000 {
>>>> + compatible = "ti,am3352-d_can";
>>>
>>> You should add "ti,am4372-d_can" as first compatible here.
>>>
>> We don't have a separate compatible id for am4372-d_can
>> as it the IP exactly same as am3352-d_can.
>
> Having the "ti,am4372-d_can" compatible gives you the freedom to add
> some spacial handling for the IP if there turns that you need to without
> needing to modify the device tree. (We do this on imx.)
Agreed. On OMAP platforms we don't add new compatible IDs unless we really need to.
Can we add "ti,am4372-d_can" even if it is not mentioned in Documentation/devicetree/bindings?
Tony what is your preference?
cheers,
-roger
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-13 14:49 ` Roger Quadros
@ 2014-11-13 14:54 ` Marc Kleine-Budde
2014-11-13 17:40 ` Tony Lindgren
0 siblings, 1 reply; 28+ messages in thread
From: Marc Kleine-Budde @ 2014-11-13 14:54 UTC (permalink / raw)
To: Roger Quadros, tony; +Cc: wg, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
[-- Attachment #1: Type: text/plain, Size: 1855 bytes --]
On 11/13/2014 03:49 PM, Roger Quadros wrote:
> On 11/13/2014 04:44 PM, Marc Kleine-Budde wrote:
>> On 11/13/2014 03:40 PM, Roger Quadros wrote:
>>> On 11/13/2014 04:07 PM, Marc Kleine-Budde wrote:
>>>> On 11/13/2014 01:22 PM, Roger Quadros wrote:
>>>>> The SoC contains 2 DCAN modules. Add them.
>>>>>
>>>>> Signed-off-by: Roger Quadros <rogerq@ti.com>
>>>>> ---
>>>>> arch/arm/boot/dts/am4372.dtsi | 22 ++++++++++++++++++++++
>>>>> 1 file changed, 22 insertions(+)
>>>>>
>>>>> diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
>>>>> index 899c57c..12fb1db 100644
>>>>> --- a/arch/arm/boot/dts/am4372.dtsi
>>>>> +++ b/arch/arm/boot/dts/am4372.dtsi
>>>>> @@ -901,6 +901,28 @@
>>>>> compatible = "mmio-sram";
>>>>> reg = <0x40300000 0x40000>; /* 256k */
>>>>> };
>>>>> +
>>>>> + dcan0: can@481cc000 {
>>>>> + compatible = "ti,am3352-d_can";
>>>>
>>>> You should add "ti,am4372-d_can" as first compatible here.
>>>>
>>> We don't have a separate compatible id for am4372-d_can
>>> as it the IP exactly same as am3352-d_can.
>>
>> Having the "ti,am4372-d_can" compatible gives you the freedom to add
>> some spacial handling for the IP if there turns that you need to without
>> needing to modify the device tree. (We do this on imx.)
>
> Agreed. On OMAP platforms we don't add new compatible IDs unless we really need to.
> Can we add "ti,am4372-d_can" even if it is not mentioned in Documentation/devicetree/bindings?
>
> Tony what is your preference?
I don't insist, do it the Omap way :)
Marc
--
Pengutronix e.K. | Marc Kleine-Budde |
Industrial Linux Solutions | Phone: +49-231-2826-924 |
Vertretung West/Dortmund | Fax: +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de |
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v4 09/10] ARM: dts: am33xx: Update DCAN nodes
2014-11-13 12:22 ` [PATCH v4 09/10] ARM: dts: am33xx: Update DCAN nodes Roger Quadros
@ 2014-11-13 16:03 ` Wolfram Sang
0 siblings, 0 replies; 28+ messages in thread
From: Wolfram Sang @ 2014-11-13 16:03 UTC (permalink / raw)
To: Roger Quadros; +Cc: tony, wg, mkl, mugunthanvnm, george.cherian, balbi, nsekhar
[-- Attachment #1: Type: text/plain, Size: 1241 bytes --]
On Thu, Nov 13, 2014 at 02:22:50PM +0200, Roger Quadros wrote:
> Add "raminit-syscon" property to specify the RAMINIT register.
> Add clock information.
> Rename can nodes from "d_can" to "can" to be compliant
> with the ePAPR specs.
>
> Signed-off-by: Roger Quadros <rogerq@ti.com>
> ---
> arch/arm/boot/dts/am33xx.dtsi | 20 ++++++++++++--------
> 1 file changed, 12 insertions(+), 8 deletions(-)
>
> diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi
> index 9f3058c..74fefa1 100644
> --- a/arch/arm/boot/dts/am33xx.dtsi
> +++ b/arch/arm/boot/dts/am33xx.dtsi
> @@ -338,20 +338,24 @@
> interrupts = <91>;
> };
>
> - dcan0: d_can@481cc000 {
> - compatible = "bosch,d_can";
> + dcan0: can@481cc000 {
> + compatible = "ti,am3352-d_can";
> ti,hwmods = "d_can0";
> - reg = <0x481cc000 0x2000
> - 0x44e10644 0x4>;
> + reg = <0x481cc000 0x2000>;
> + clocks = <&dcan0_fck>;
> + clock-names = "fck";
> + syscon-raminit = <&am33xx_control_module 0x644 0>;
Yeah, I missed to write the mail that I disagreed with the "dcan_0/1"
compatible-properties of V3. The second parameter to syscon here is much
better!
Acked-by: Wolfram Sang <wsa@the-dreams.de>
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-13 14:54 ` Marc Kleine-Budde
@ 2014-11-13 17:40 ` Tony Lindgren
2014-11-14 16:22 ` Roger Quadros
0 siblings, 1 reply; 28+ messages in thread
From: Tony Lindgren @ 2014-11-13 17:40 UTC (permalink / raw)
To: Marc Kleine-Budde
Cc: Roger Quadros, wg, wsa, mugunthanvnm, george.cherian, balbi,
nsekhar
* Marc Kleine-Budde <mkl@pengutronix.de> [141113 06:55]:
> On 11/13/2014 03:49 PM, Roger Quadros wrote:
> > On 11/13/2014 04:44 PM, Marc Kleine-Budde wrote:
> >> On 11/13/2014 03:40 PM, Roger Quadros wrote:
> >>> On 11/13/2014 04:07 PM, Marc Kleine-Budde wrote:
> >>>> On 11/13/2014 01:22 PM, Roger Quadros wrote:
> >>>>> The SoC contains 2 DCAN modules. Add them.
> >>>>>
> >>>>> Signed-off-by: Roger Quadros <rogerq@ti.com>
> >>>>> ---
> >>>>> arch/arm/boot/dts/am4372.dtsi | 22 ++++++++++++++++++++++
> >>>>> 1 file changed, 22 insertions(+)
> >>>>>
> >>>>> diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
> >>>>> index 899c57c..12fb1db 100644
> >>>>> --- a/arch/arm/boot/dts/am4372.dtsi
> >>>>> +++ b/arch/arm/boot/dts/am4372.dtsi
> >>>>> @@ -901,6 +901,28 @@
> >>>>> compatible = "mmio-sram";
> >>>>> reg = <0x40300000 0x40000>; /* 256k */
> >>>>> };
> >>>>> +
> >>>>> + dcan0: can@481cc000 {
> >>>>> + compatible = "ti,am3352-d_can";
> >>>>
> >>>> You should add "ti,am4372-d_can" as first compatible here.
> >>>>
> >>> We don't have a separate compatible id for am4372-d_can
> >>> as it the IP exactly same as am3352-d_can.
> >>
> >> Having the "ti,am4372-d_can" compatible gives you the freedom to add
> >> some spacial handling for the IP if there turns that you need to without
> >> needing to modify the device tree. (We do this on imx.)
> >
> > Agreed. On OMAP platforms we don't add new compatible IDs unless we really need to.
> > Can we add "ti,am4372-d_can" even if it is not mentioned in Documentation/devicetree/bindings?
> >
> > Tony what is your preference?
>
> I don't insist, do it the Omap way :)
I agree it's good to add if we need to add custom handling later on.
Regards,
Tony
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-13 17:40 ` Tony Lindgren
@ 2014-11-14 16:22 ` Roger Quadros
2014-11-14 18:07 ` Tony Lindgren
0 siblings, 1 reply; 28+ messages in thread
From: Roger Quadros @ 2014-11-14 16:22 UTC (permalink / raw)
To: Tony Lindgren, Marc Kleine-Budde
Cc: wg, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
On 11/13/2014 07:40 PM, Tony Lindgren wrote:
> * Marc Kleine-Budde <mkl@pengutronix.de> [141113 06:55]:
>> On 11/13/2014 03:49 PM, Roger Quadros wrote:
>>> On 11/13/2014 04:44 PM, Marc Kleine-Budde wrote:
>>>> On 11/13/2014 03:40 PM, Roger Quadros wrote:
>>>>> On 11/13/2014 04:07 PM, Marc Kleine-Budde wrote:
>>>>>> On 11/13/2014 01:22 PM, Roger Quadros wrote:
>>>>>>> The SoC contains 2 DCAN modules. Add them.
>>>>>>>
>>>>>>> Signed-off-by: Roger Quadros <rogerq@ti.com>
>>>>>>> ---
>>>>>>> arch/arm/boot/dts/am4372.dtsi | 22 ++++++++++++++++++++++
>>>>>>> 1 file changed, 22 insertions(+)
>>>>>>>
>>>>>>> diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
>>>>>>> index 899c57c..12fb1db 100644
>>>>>>> --- a/arch/arm/boot/dts/am4372.dtsi
>>>>>>> +++ b/arch/arm/boot/dts/am4372.dtsi
>>>>>>> @@ -901,6 +901,28 @@
>>>>>>> compatible = "mmio-sram";
>>>>>>> reg = <0x40300000 0x40000>; /* 256k */
>>>>>>> };
>>>>>>> +
>>>>>>> + dcan0: can@481cc000 {
>>>>>>> + compatible = "ti,am3352-d_can";
>>>>>>
>>>>>> You should add "ti,am4372-d_can" as first compatible here.
>>>>>>
>>>>> We don't have a separate compatible id for am4372-d_can
>>>>> as it the IP exactly same as am3352-d_can.
>>>>
>>>> Having the "ti,am4372-d_can" compatible gives you the freedom to add
>>>> some spacial handling for the IP if there turns that you need to without
>>>> needing to modify the device tree. (We do this on imx.)
>>>
>>> Agreed. On OMAP platforms we don't add new compatible IDs unless we really need to.
>>> Can we add "ti,am4372-d_can" even if it is not mentioned in Documentation/devicetree/bindings?
>>>
>>> Tony what is your preference?
>>
>> I don't insist, do it the Omap way :)
>
> I agree it's good to add if we need to add custom handling later on.
As of now I don't foresee any custom handling for am4372-d_can vs am3352-d_can, but I can
add am4372-d_can anyways. In that case, do I need to mention it in
Documentation/devicetree/bindings/net/can/c_can.txt?
I guess not, cause we don't do anything specific to am4372-d_can there.
cheers,
-roger
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-14 16:22 ` Roger Quadros
@ 2014-11-14 18:07 ` Tony Lindgren
0 siblings, 0 replies; 28+ messages in thread
From: Tony Lindgren @ 2014-11-14 18:07 UTC (permalink / raw)
To: Roger Quadros
Cc: Marc Kleine-Budde, wg, wsa, mugunthanvnm, george.cherian, balbi,
nsekhar
* Roger Quadros <rogerq@ti.com> [141114 08:24]:
> On 11/13/2014 07:40 PM, Tony Lindgren wrote:
> > * Marc Kleine-Budde <mkl@pengutronix.de> [141113 06:55]:
> >> On 11/13/2014 03:49 PM, Roger Quadros wrote:
> >>> On 11/13/2014 04:44 PM, Marc Kleine-Budde wrote:
> >>>> On 11/13/2014 03:40 PM, Roger Quadros wrote:
> >>>>> On 11/13/2014 04:07 PM, Marc Kleine-Budde wrote:
> >>>>>> On 11/13/2014 01:22 PM, Roger Quadros wrote:
> >>>>>>> The SoC contains 2 DCAN modules. Add them.
> >>>>>>>
> >>>>>>> Signed-off-by: Roger Quadros <rogerq@ti.com>
> >>>>>>> ---
> >>>>>>> arch/arm/boot/dts/am4372.dtsi | 22 ++++++++++++++++++++++
> >>>>>>> 1 file changed, 22 insertions(+)
> >>>>>>>
> >>>>>>> diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
> >>>>>>> index 899c57c..12fb1db 100644
> >>>>>>> --- a/arch/arm/boot/dts/am4372.dtsi
> >>>>>>> +++ b/arch/arm/boot/dts/am4372.dtsi
> >>>>>>> @@ -901,6 +901,28 @@
> >>>>>>> compatible = "mmio-sram";
> >>>>>>> reg = <0x40300000 0x40000>; /* 256k */
> >>>>>>> };
> >>>>>>> +
> >>>>>>> + dcan0: can@481cc000 {
> >>>>>>> + compatible = "ti,am3352-d_can";
> >>>>>>
> >>>>>> You should add "ti,am4372-d_can" as first compatible here.
> >>>>>>
> >>>>> We don't have a separate compatible id for am4372-d_can
> >>>>> as it the IP exactly same as am3352-d_can.
> >>>>
> >>>> Having the "ti,am4372-d_can" compatible gives you the freedom to add
> >>>> some spacial handling for the IP if there turns that you need to without
> >>>> needing to modify the device tree. (We do this on imx.)
> >>>
> >>> Agreed. On OMAP platforms we don't add new compatible IDs unless we really need to.
> >>> Can we add "ti,am4372-d_can" even if it is not mentioned in Documentation/devicetree/bindings?
> >>>
> >>> Tony what is your preference?
> >>
> >> I don't insist, do it the Omap way :)
> >
> > I agree it's good to add if we need to add custom handling later on.
>
> As of now I don't foresee any custom handling for am4372-d_can vs am3352-d_can, but I can
> add am4372-d_can anyways. In that case, do I need to mention it in
> Documentation/devicetree/bindings/net/can/c_can.txt?
>
> I guess not, cause we don't do anything specific to am4372-d_can there.
I think you should to avoid checkpatch.pl warnings.
Regards,
Tony
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH v5 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-13 12:22 ` [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes Roger Quadros
2014-11-13 14:07 ` Marc Kleine-Budde
@ 2014-11-17 13:08 ` Roger Quadros
2014-11-21 23:50 ` Tony Lindgren
1 sibling, 1 reply; 28+ messages in thread
From: Roger Quadros @ 2014-11-17 13:08 UTC (permalink / raw)
To: tony; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
The SoC contains 2 DCAN modules. Add them.
Signed-off-by: Roger Quadros <rogerq@ti.com>
---
arch/arm/boot/dts/am4372.dtsi | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
index 899c57c..f0ff256 100644
--- a/arch/arm/boot/dts/am4372.dtsi
+++ b/arch/arm/boot/dts/am4372.dtsi
@@ -901,6 +901,28 @@
compatible = "mmio-sram";
reg = <0x40300000 0x40000>; /* 256k */
};
+
+ dcan0: can@481cc000 {
+ compatible = "ti,am4372-d_can", "ti,am3352-d_can";
+ ti,hwmods = "d_can0";
+ clocks = <&dcan0_fck>;
+ clock-names = "fck";
+ reg = <0x481cc000 0x2000>;
+ syscon-raminit = <&am43xx_control_module 0x644 0>;
+ interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
+ status = "disabled";
+ };
+
+ dcan1: can@481d0000 {
+ compatible = "ti,am4372-d_can", "ti,am3352-d_can";
+ ti,hwmods = "d_can1";
+ clocks = <&dcan1_fck>;
+ clock-names = "fck";
+ reg = <0x481d0000 0x2000>;
+ syscon-raminit = <&am43xx_control_module 0x644 1>;
+ interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
+ status = "disabled";
+ };
};
};
--
1.8.3.2
^ permalink raw reply related [flat|nested] 28+ messages in thread
* Re: [PATCH v4 00/10] ARM: dts: TI: Add CAN support
2014-11-13 12:22 [PATCH v4 00/10] ARM: dts: TI: Add CAN support Roger Quadros
` (9 preceding siblings ...)
2014-11-13 12:22 ` [PATCH v4 10/10] ARM: dts: am335x-evm: Add DCAN1 details Roger Quadros
@ 2014-11-18 20:42 ` Marc Kleine-Budde
10 siblings, 0 replies; 28+ messages in thread
From: Marc Kleine-Budde @ 2014-11-18 20:42 UTC (permalink / raw)
To: Roger Quadros, tony; +Cc: wg, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
[-- Attachment #1: Type: text/plain, Size: 1405 bytes --]
On 11/13/2014 01:22 PM, Roger Quadros wrote:
> Hi Tony,
>
> These patches add CAN support for am33xx, am43xx and dra7 platforms.
> They can go in independent of [1] but depend on [1] for functionality.
>
> Tested on am335x-evm, am437x-gp-evm and dra7-evm.
>
> NOTE:
> - for DCAN to work on DRA7 we need this patch to keep the CAN PHY powered.
> https://lkml.org/lkml/2014/10/21/484
>
> - on DRA7 there is another issue which causes undesired behaviour if WKUPAON and
> L4CFG clock domains are allowed to HW_AUTO. Undesired behaviour is in the form
> of DCAN1 module being stuck-in-transition when disabled and RAMINIT-done bit
> not getting set as part of RAMINIT mechanism. To address these issues there is a patch
> to prevent these clockdomains from HW_AUTO.
> https://github.com/rogerq/linux/commit/31d6da939dbbaf8ea2ab96ca5680b81cd5607e51
> Even without this second patch DCAN seems to work.
FWIW:
Acked-by: Marc Kleine-Budde <mkl@pengutronix.de>
I've send a pull request with the CAN driver changes to David Miller
yesterday, the code is supposed to hit mainline in v3.19.
regards,
Marc
--
Pengutronix e.K. | Marc Kleine-Budde |
Industrial Linux Solutions | Phone: +49-231-2826-924 |
Vertretung West/Dortmund | Fax: +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de |
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v5 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-17 13:08 ` [PATCH v5 " Roger Quadros
@ 2014-11-21 23:50 ` Tony Lindgren
2014-11-22 0:08 ` Tony Lindgren
0 siblings, 1 reply; 28+ messages in thread
From: Tony Lindgren @ 2014-11-21 23:50 UTC (permalink / raw)
To: Roger Quadros; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
* Roger Quadros <rogerq@ti.com> [141117 05:10]:
> The SoC contains 2 DCAN modules. Add them.
Thanks applying all into omap-for-v3.19/dt-v2.
Tony
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v5 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-21 23:50 ` Tony Lindgren
@ 2014-11-22 0:08 ` Tony Lindgren
2014-11-24 9:58 ` Roger Quadros
0 siblings, 1 reply; 28+ messages in thread
From: Tony Lindgren @ 2014-11-22 0:08 UTC (permalink / raw)
To: Roger Quadros; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
* Tony Lindgren <tony@atomide.com> [141121 15:52]:
> * Roger Quadros <rogerq@ti.com> [141117 05:10]:
> > The SoC contains 2 DCAN modules. Add them.
>
> Thanks applying all into omap-for-v3.19/dt-v2.
Oops, have to drop these as they cause this on make dtbs:
DTC arch/arm/boot/dts/dra7-evm.dtb
Warning (reg_format): "reg" property in /soc/can@481cc000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
Warning (reg_format): "reg" property in /soc/can@481d0000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481cc000
Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481cc000
Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481d0000
Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481d0000
DTC arch/arm/boot/dts/am57xx-beagle-x15.dtb
Warning (reg_format): "reg" property in /soc/can@481cc000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
Warning (reg_format): "reg" property in /soc/can@481d0000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481cc000
Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481cc000
Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481d0000
Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481d0000
DTC arch/arm/boot/dts/dra72-evm.dtb
Warning (reg_format): "reg" property in /soc/can@481cc000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
Warning (reg_format): "reg" property in /soc/can@481d0000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481cc000
Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481cc000
Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481d0000
Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481d0000
Care to update the patches for that and then do a pull request for me?
Regards,
Tony
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v5 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-22 0:08 ` Tony Lindgren
@ 2014-11-24 9:58 ` Roger Quadros
2014-11-24 11:11 ` Roger Quadros
0 siblings, 1 reply; 28+ messages in thread
From: Roger Quadros @ 2014-11-24 9:58 UTC (permalink / raw)
To: Tony Lindgren; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
On 11/22/2014 02:08 AM, Tony Lindgren wrote:
> * Tony Lindgren <tony@atomide.com> [141121 15:52]:
>> * Roger Quadros <rogerq@ti.com> [141117 05:10]:
>>> The SoC contains 2 DCAN modules. Add them.
>>
>> Thanks applying all into omap-for-v3.19/dt-v2.
>
> Oops, have to drop these as they cause this on make dtbs:
>
> DTC arch/arm/boot/dts/dra7-evm.dtb
> Warning (reg_format): "reg" property in /soc/can@481cc000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
> Warning (reg_format): "reg" property in /soc/can@481d0000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
> Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481cc000
> Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481cc000
> Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481d0000
> Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481d0000
> DTC arch/arm/boot/dts/am57xx-beagle-x15.dtb
> Warning (reg_format): "reg" property in /soc/can@481cc000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
> Warning (reg_format): "reg" property in /soc/can@481d0000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
> Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481cc000
> Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481cc000
> Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481d0000
> Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481d0000
> DTC arch/arm/boot/dts/dra72-evm.dtb
> Warning (reg_format): "reg" property in /soc/can@481cc000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
> Warning (reg_format): "reg" property in /soc/can@481d0000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
> Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481cc000
> Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481cc000
> Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481d0000
> Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481d0000
>
> Care to update the patches for that and then do a pull request for me?
I didn't see these warnings on 3.18-rc1 though. Looks like some new checks were added in -next.
I'll fix these and send you an updated pull request.
cheers,
-roger
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v5 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-24 9:58 ` Roger Quadros
@ 2014-11-24 11:11 ` Roger Quadros
2014-11-24 15:49 ` Tony Lindgren
0 siblings, 1 reply; 28+ messages in thread
From: Roger Quadros @ 2014-11-24 11:11 UTC (permalink / raw)
To: Tony Lindgren; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
On 11/24/2014 11:58 AM, Roger Quadros wrote:
> On 11/22/2014 02:08 AM, Tony Lindgren wrote:
>> * Tony Lindgren <tony@atomide.com> [141121 15:52]:
>>> * Roger Quadros <rogerq@ti.com> [141117 05:10]:
>>>> The SoC contains 2 DCAN modules. Add them.
>>>
>>> Thanks applying all into omap-for-v3.19/dt-v2.
>>
>> Oops, have to drop these as they cause this on make dtbs:
>>
>> DTC arch/arm/boot/dts/dra7-evm.dtb
>> Warning (reg_format): "reg" property in /soc/can@481cc000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
>> Warning (reg_format): "reg" property in /soc/can@481d0000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
>> Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481cc000
>> Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481cc000
>> Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481d0000
>> Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481d0000
>> DTC arch/arm/boot/dts/am57xx-beagle-x15.dtb
>> Warning (reg_format): "reg" property in /soc/can@481cc000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
>> Warning (reg_format): "reg" property in /soc/can@481d0000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
>> Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481cc000
>> Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481cc000
>> Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481d0000
>> Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481d0000
>> DTC arch/arm/boot/dts/dra72-evm.dtb
>> Warning (reg_format): "reg" property in /soc/can@481cc000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
>> Warning (reg_format): "reg" property in /soc/can@481d0000 has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
>> Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481cc000
>> Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481cc000
>> Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/can@481d0000
>> Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/can@481d0000
>>
>> Care to update the patches for that and then do a pull request for me?
>
> I didn't see these warnings on 3.18-rc1 though. Looks like some new checks were added in -next.
> I'll fix these and send you an updated pull request.
I couldn't reproduce the errors on linux-next nor on your branch. Maybe you had a conflict resolution issue?
I've rebased the patches on omap-for-v3.19/dt-v2 and are available for you to pull from:
The following changes since commit 0f39f7b906dbeabe2ffd8739d5201e890d102ea6:
ARM: dts: AM43xx: add tscadc DT entries for am437x-evm and am43x-epos-evm (2014-11-21 16:25:06 -0800)
are available in the git repository at:
git@github.com:rogerq/linux.git for-v3.19/omap-dts-dcan
for you to fetch changes up to bae6665b8002282a833bf482b242e7df5d63b3d3:
ARM: dts: am335x-evm: Add DCAN1 details (2014-11-24 12:41:17 +0200)
----------------------------------------------------------------
Mugunthan V N (1):
arm: dts: am437x-gp: Add dcan support
Roger Quadros (9):
ARM: dts: dra7: Add syscon regmap for CORE CONTROL area
ARM: dts: DRA7: Add DCAN nodes
ARM: dts: dra7-evm: Add CAN support
ARM: dts: dra72-evm: Add CAN support
ARM: dts: am4372: Add control module syscon node
ARM: dts: am4372: Add DCAN nodes
ARM: dts: am33xx: Add control module syscon node
ARM: dts: am33xx: Update DCAN nodes
ARM: dts: am335x-evm: Add DCAN1 details
arch/arm/boot/dts/am335x-evm.dts | 13 +++++++++++++
arch/arm/boot/dts/am33xx.dtsi | 25 +++++++++++++++++--------
arch/arm/boot/dts/am4372.dtsi | 27 +++++++++++++++++++++++++++
arch/arm/boot/dts/am437x-gp-evm.dts | 26 ++++++++++++++++++++++++++
arch/arm/boot/dts/dra7-evm.dts | 22 ++++++++++++++++++++++
arch/arm/boot/dts/dra7.dtsi | 26 ++++++++++++++++++++++++++
arch/arm/boot/dts/dra72-evm.dts | 23 +++++++++++++++++++++++
7 files changed, 154 insertions(+), 8 deletions(-)
--
cheers,
-roger
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v5 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-24 11:11 ` Roger Quadros
@ 2014-11-24 15:49 ` Tony Lindgren
2014-11-24 16:05 ` Tony Lindgren
0 siblings, 1 reply; 28+ messages in thread
From: Tony Lindgren @ 2014-11-24 15:49 UTC (permalink / raw)
To: Roger Quadros; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
* Roger Quadros <rogerq@ti.com> [141124 03:13]:
>
> I couldn't reproduce the errors on linux-next nor on your branch. Maybe you had a conflict resolution issue?
I guess it must have been a conflict resolution issue at my end then.
> I've rebased the patches on omap-for-v3.19/dt-v2 and are available for you to pull from:
>
> The following changes since commit 0f39f7b906dbeabe2ffd8739d5201e890d102ea6:
>
> ARM: dts: AM43xx: add tscadc DT entries for am437x-evm and am43x-epos-evm (2014-11-21 16:25:06 -0800)
>
> are available in the git repository at:
>
> git@github.com:rogerq/linux.git for-v3.19/omap-dts-dcan
Pulling into omap-for-v3.19/dts thanks. Let's also switch into fixes
only mode for v3.19 now with -rc6 out.
Regards,
Tony
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v5 06/10] ARM: dts: am4372: Add DCAN nodes
2014-11-24 15:49 ` Tony Lindgren
@ 2014-11-24 16:05 ` Tony Lindgren
0 siblings, 0 replies; 28+ messages in thread
From: Tony Lindgren @ 2014-11-24 16:05 UTC (permalink / raw)
To: Roger Quadros; +Cc: wg, mkl, wsa, mugunthanvnm, george.cherian, balbi, nsekhar
* Tony Lindgren <tony@atomide.com> [141124 07:49]:
> * Roger Quadros <rogerq@ti.com> [141124 03:13]:
> >
> > I couldn't reproduce the errors on linux-next nor on your branch. Maybe you had a conflict resolution issue?
>
> I guess it must have been a conflict resolution issue at my end then.
>
> > I've rebased the patches on omap-for-v3.19/dt-v2 and are available for you to pull from:
> >
> > The following changes since commit 0f39f7b906dbeabe2ffd8739d5201e890d102ea6:
> >
> > ARM: dts: AM43xx: add tscadc DT entries for am437x-evm and am43x-epos-evm (2014-11-21 16:25:06 -0800)
> >
> > are available in the git repository at:
> >
> > git@github.com:rogerq/linux.git for-v3.19/omap-dts-dcan
>
> Pulling into omap-for-v3.19/dts thanks. Let's also switch into fixes
> only mode for v3.19 now with -rc6 out.
Knowing you most likely don't have anything else based on this branch,
I ended up just picking the patches from your branch to unify the
subject line for one of the patches.
Regards,
Tony
^ permalink raw reply [flat|nested] 28+ messages in thread
end of thread, other threads:[~2014-11-24 16:05 UTC | newest]
Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-13 12:22 [PATCH v4 00/10] ARM: dts: TI: Add CAN support Roger Quadros
2014-11-13 12:22 ` [PATCH v4 01/10] ARM: dts: dra7: Add syscon regmap for CORE CONTROL area Roger Quadros
2014-11-13 12:22 ` [PATCH v4 02/10] ARM: dts: DRA7: Add DCAN nodes Roger Quadros
2014-11-13 12:22 ` [PATCH v4 03/10] ARM: dts: dra7-evm: Add CAN support Roger Quadros
2014-11-13 12:22 ` [PATCH v4 04/10] ARM: dts: dra72-evm: " Roger Quadros
2014-11-13 12:22 ` [PATCH v4 05/10] ARM: dts: am4372: Add control module syscon node Roger Quadros
2014-11-13 12:22 ` [PATCH v4 06/10] ARM: dts: am4372: Add DCAN nodes Roger Quadros
2014-11-13 14:07 ` Marc Kleine-Budde
2014-11-13 14:40 ` Roger Quadros
2014-11-13 14:44 ` Marc Kleine-Budde
2014-11-13 14:49 ` Roger Quadros
2014-11-13 14:54 ` Marc Kleine-Budde
2014-11-13 17:40 ` Tony Lindgren
2014-11-14 16:22 ` Roger Quadros
2014-11-14 18:07 ` Tony Lindgren
2014-11-17 13:08 ` [PATCH v5 " Roger Quadros
2014-11-21 23:50 ` Tony Lindgren
2014-11-22 0:08 ` Tony Lindgren
2014-11-24 9:58 ` Roger Quadros
2014-11-24 11:11 ` Roger Quadros
2014-11-24 15:49 ` Tony Lindgren
2014-11-24 16:05 ` Tony Lindgren
2014-11-13 12:22 ` [PATCH v4 07/10] arm: dts: am437x-gp: Add dcan support Roger Quadros
2014-11-13 12:22 ` [PATCH v4 08/10] ARM: dts: am33xx: Add control module syscon node Roger Quadros
2014-11-13 12:22 ` [PATCH v4 09/10] ARM: dts: am33xx: Update DCAN nodes Roger Quadros
2014-11-13 16:03 ` Wolfram Sang
2014-11-13 12:22 ` [PATCH v4 10/10] ARM: dts: am335x-evm: Add DCAN1 details Roger Quadros
2014-11-18 20:42 ` [PATCH v4 00/10] ARM: dts: TI: Add CAN support Marc Kleine-Budde
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).