diff options
| author | Heiko Schocher <[email protected]> | 2019-04-29 16:36:10 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-05-03 07:30:31 -0400 |
| commit | 0cac0fb0221de34534e3344d058fe77c375980bb (patch) | |
| tree | 0eee41061b635fc8c35d9bdf52d79248d2ab6eac /arch | |
| parent | efbfd448e51a75acbace51849e8bed63e0ea5ce0 (diff) | |
at91: cleanup taurus port
- at91sam9g20-taurus.dts: use labels
- cleanup taurus port to compile clean with
current mainline again. SPL has no serial
output anymore, so it fits into SRAM.
Signed-off-by: Heiko Schocher <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/dts/at91sam9g20-taurus.dts | 140 |
1 files changed, 69 insertions, 71 deletions
diff --git a/arch/arm/dts/at91sam9g20-taurus.dts b/arch/arm/dts/at91sam9g20-taurus.dts index cee228bb8cf..c00c5a8b8dd 100644 --- a/arch/arm/dts/at91sam9g20-taurus.dts +++ b/arch/arm/dts/at91sam9g20-taurus.dts @@ -15,7 +15,7 @@ / { model = "Siemens taurus"; - compatible = "atmel,at91sam9g20ek", "atmel,at91sam9g20", "atmel,at91sam9"; + compatible = "atmel,at91sam9g20", "atmel,at91sam9"; chosen { u-boot,dm-pre-reloc; @@ -35,88 +35,86 @@ clock-frequency = <18432000>; }; }; +}; - ahb { - apb { - pinctrl@fffff400 { - board { - pinctrl_pck0_as_mck: pck0_as_mck { - atmel,pins = - <AT91_PIOC 1 AT91_PERIPH_B AT91_PINCTRL_NONE>; /* PC1 periph B */ - }; +&dbgu { + status = "okay"; +}; - }; - }; +&gpbr { + status = "okay"; +}; - dbgu: serial@fffff200 { - u-boot,dm-pre-reloc; - status = "okay"; - }; +&macb0 { + phy-mode = "rmii"; + status = "okay"; +}; - usart0: serial@fffb0000 { - pinctrl-0 = - <&pinctrl_usart0 - &pinctrl_usart0_rts - &pinctrl_usart0_cts - &pinctrl_usart0_dtr_dsr - &pinctrl_usart0_dcd - &pinctrl_usart0_ri>; - status = "okay"; - }; +&nand0 { + nand-bus-width = <8>; + nand-ecc-mode = "soft"; + nand-on-flash-bbt; + status = "okay"; +}; - usart1: serial@fffb4000 { - status = "okay"; - }; +&pinctrl { + u-boot,dm-pre-reloc; + board { + pinctrl_pck0_as_mck: pck0_as_mck { + atmel,pins = + /* PC1 periph B */ + <AT91_PIOC 1 AT91_PERIPH_B AT91_PINCTRL_NONE>; + }; - macb0: ethernet@fffc4000 { - phy-mode = "rmii"; - status = "okay"; - }; + }; +}; - usb1: gadget@fffa4000 { - atmel,vbus-gpio = <&pioC 5 GPIO_ACTIVE_HIGH>; - status = "okay"; - }; +&rtc { + atmel,rtt-rtc-time-reg = <&gpbr 0x0>; + status = "okay"; +}; - ssc0: ssc@fffbc000 { - status = "okay"; - pinctrl-0 = <&pinctrl_ssc0_tx>; - }; +&spi0 { + cs-gpios = <0>, <&pioC 11 0>, <0>, <0>; + mtd_dataflash@0 { + compatible = "atmel,at45", "atmel,dataflash"; + spi-max-frequency = <50000000>; + reg = <1>; + }; +}; - spi0: spi@fffc8000 { - cs-gpios = <0>, <&pioC 11 0>, <0>, <0>; - mtd_dataflash@0 { - compatible = "atmel,at45", "atmel,dataflash"; - spi-max-frequency = <50000000>; - reg = <1>; - }; - }; +&ssc0 { + status = "okay"; + pinctrl-0 = <&pinctrl_ssc0_tx>; +}; - rtc@fffffd20 { - atmel,rtt-rtc-time-reg = <&gpbr 0x0>; - status = "okay"; - }; +&usart0 { + pinctrl-0 = + <&pinctrl_usart0 + &pinctrl_usart0_rts + &pinctrl_usart0_cts + &pinctrl_usart0_dtr_dsr + &pinctrl_usart0_dcd + &pinctrl_usart0_ri>; + status = "okay"; +}; - watchdog@fffffd40 { - timeout-sec = <15>; - status = "okay"; - }; +&usart1 { + status = "okay"; +}; - gpbr: syscon@fffffd50 { - status = "okay"; - }; - }; +&usb0 { + num-ports = <2>; + status = "okay"; +}; - nand0: nand@40000000 { - nand-bus-width = <8>; - nand-ecc-mode = "soft"; - nand-on-flash-bbt; - status = "okay"; - }; +&usb1 { + atmel,vbus-gpio = <&pioC 5 GPIO_ACTIVE_HIGH>; + status = "okay"; +}; - usb0: ohci@00500000 { - num-ports = <2>; - status = "okay"; - }; - }; +&watchdog { + u-boot,dm-pre-reloc; + timeout-sec = <15>; + status = "okay"; }; |
