diff options
author | Robert Jarzmik <robert.jarzmik@free.fr> | 2016-02-06 16:48:35 -0500 |
---|---|---|
committer | Robert Jarzmik <robert.jarzmik@free.fr> | 2016-02-20 16:02:55 -0500 |
commit | 6b9d526b779cc386d16890faef00ad4213791df9 (patch) | |
tree | 3023cceaeabe835db34adcf4ce9f14e06e9575e9 | |
parent | f29327d9086ea9126a8f320943fb8b7cc20f9dca (diff) |
ARM: pxa: pxa3xx device-tree support cleanup
Clocks, timer and several other drivers have well defined and working
device-tree bindings. Clean-up the code to leave only the strict
minimum. The final goal will be to remove the lookup array.
Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
-rw-r--r-- | arch/arm/mach-pxa/pxa-dt.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/arch/arm/mach-pxa/pxa-dt.c b/arch/arm/mach-pxa/pxa-dt.c index 8e0e62ccdced..f128133a8f30 100644 --- a/arch/arm/mach-pxa/pxa-dt.c +++ b/arch/arm/mach-pxa/pxa-dt.c | |||
@@ -19,42 +19,18 @@ | |||
19 | #include "generic.h" | 19 | #include "generic.h" |
20 | 20 | ||
21 | #ifdef CONFIG_PXA3xx | 21 | #ifdef CONFIG_PXA3xx |
22 | static const struct of_dev_auxdata const pxa3xx_auxdata_lookup[] __initconst = { | ||
23 | OF_DEV_AUXDATA("mrvl,pxa-uart", 0x40100000, "pxa2xx-uart.0", NULL), | ||
24 | OF_DEV_AUXDATA("mrvl,pxa-uart", 0x40200000, "pxa2xx-uart.1", NULL), | ||
25 | OF_DEV_AUXDATA("mrvl,pxa-uart", 0x40700000, "pxa2xx-uart.2", NULL), | ||
26 | OF_DEV_AUXDATA("mrvl,pxa-uart", 0x41600000, "pxa2xx-uart.3", NULL), | ||
27 | OF_DEV_AUXDATA("marvell,pxa-mmc", 0x41100000, "pxa2xx-mci.0", NULL), | ||
28 | OF_DEV_AUXDATA("intel,pxa3xx-gpio", 0x40e00000, "pxa3xx-gpio", NULL), | ||
29 | OF_DEV_AUXDATA("marvell,pxa-ohci", 0x4c000000, "pxa27x-ohci", NULL), | ||
30 | OF_DEV_AUXDATA("mrvl,pxa-i2c", 0x40301680, "pxa2xx-i2c.0", NULL), | ||
31 | OF_DEV_AUXDATA("mrvl,pwri2c", 0x40f500c0, "pxa3xx-i2c.1", NULL), | ||
32 | OF_DEV_AUXDATA("marvell,pxa3xx-nand", 0x43100000, "pxa3xx-nand", NULL), | ||
33 | {} | ||
34 | }; | ||
35 | |||
36 | static void __init pxa3xx_dt_init(void) | ||
37 | { | ||
38 | of_platform_populate(NULL, of_default_bus_match_table, | ||
39 | pxa3xx_auxdata_lookup, NULL); | ||
40 | } | ||
41 | |||
42 | static const char *const pxa3xx_dt_board_compat[] __initconst = { | 22 | static const char *const pxa3xx_dt_board_compat[] __initconst = { |
43 | "marvell,pxa300", | 23 | "marvell,pxa300", |
44 | "marvell,pxa310", | 24 | "marvell,pxa310", |
45 | "marvell,pxa320", | 25 | "marvell,pxa320", |
46 | NULL, | 26 | NULL, |
47 | }; | 27 | }; |
48 | #endif | ||
49 | 28 | ||
50 | #ifdef CONFIG_PXA3xx | ||
51 | DT_MACHINE_START(PXA_DT, "Marvell PXA3xx (Device Tree Support)") | 29 | DT_MACHINE_START(PXA_DT, "Marvell PXA3xx (Device Tree Support)") |
52 | .map_io = pxa3xx_map_io, | 30 | .map_io = pxa3xx_map_io, |
53 | .init_irq = pxa3xx_dt_init_irq, | 31 | .init_irq = pxa3xx_dt_init_irq, |
54 | .handle_irq = pxa3xx_handle_irq, | 32 | .handle_irq = pxa3xx_handle_irq, |
55 | .init_time = pxa_timer_init, | ||
56 | .restart = pxa_restart, | 33 | .restart = pxa_restart, |
57 | .init_machine = pxa3xx_dt_init, | ||
58 | .dt_compat = pxa3xx_dt_board_compat, | 34 | .dt_compat = pxa3xx_dt_board_compat, |
59 | MACHINE_END | 35 | MACHINE_END |
60 | #endif | 36 | #endif |