diff options
author | Olof Johansson <olof@lixom.net> | 2012-02-07 18:20:38 -0500 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-02-07 18:20:38 -0500 |
commit | d052e161c4067cf21daacb1de960a1e449babfe4 (patch) | |
tree | 7a2c24d269b5b631439d4d02345feeec98977ece /arch/arm/mach-mxs | |
parent | a5f17d1f4c2831b9b9bf8b1a537cdbac995d6e13 (diff) | |
parent | 79ce72aa2cf205cc1c1f7d9e898141c4d67da4af (diff) |
Merge branch 'mxs/boards' of git://git.linaro.org/people/shawnguo/linux-2.6 into next/boards
* 'mxs/boards' of git://git.linaro.org/people/shawnguo/linux-2.6:
ARM: mxs: Add initial support for Bluegiga APX4 Development Kit
ARM: mxs: read correct values when setting up MAC
ARM: mx28evk: Simplify GPIO requests
ARM: mx28: Remove duplicate OCOTP error message
ARM: mxs: detect SoC by checking CHIPID register
Diffstat (limited to 'arch/arm/mach-mxs')
-rw-r--r-- | arch/arm/mach-mxs/Kconfig | 16 | ||||
-rw-r--r-- | arch/arm/mach-mxs/Makefile | 1 | ||||
-rw-r--r-- | arch/arm/mach-mxs/include/mach/digctl.h | 1 | ||||
-rw-r--r-- | arch/arm/mach-mxs/include/mach/mxs.h | 29 | ||||
-rw-r--r-- | arch/arm/mach-mxs/include/mach/uncompress.h | 13 | ||||
-rw-r--r-- | arch/arm/mach-mxs/mach-apx4devkit.c | 260 | ||||
-rw-r--r-- | arch/arm/mach-mxs/mach-m28evk.c | 7 | ||||
-rw-r--r-- | arch/arm/mach-mxs/mach-mx28evk.c | 80 |
8 files changed, 320 insertions, 87 deletions
diff --git a/arch/arm/mach-mxs/Kconfig b/arch/arm/mach-mxs/Kconfig index cf00b3e3be85..c57f9964a713 100644 --- a/arch/arm/mach-mxs/Kconfig +++ b/arch/arm/mach-mxs/Kconfig | |||
@@ -83,6 +83,18 @@ config MODULE_M28 | |||
83 | select MXS_HAVE_PLATFORM_MXSFB | 83 | select MXS_HAVE_PLATFORM_MXSFB |
84 | select MXS_OCOTP | 84 | select MXS_OCOTP |
85 | 85 | ||
86 | config MODULE_APX4 | ||
87 | bool | ||
88 | select SOC_IMX28 | ||
89 | select LEDS_GPIO_REGISTER | ||
90 | select MXS_HAVE_AMBA_DUART | ||
91 | select MXS_HAVE_PLATFORM_AUART | ||
92 | select MXS_HAVE_PLATFORM_FEC | ||
93 | select MXS_HAVE_PLATFORM_MXS_I2C | ||
94 | select MXS_HAVE_PLATFORM_MXS_MMC | ||
95 | select MXS_HAVE_PLATFORM_MXS_SAIF | ||
96 | select MXS_OCOTP | ||
97 | |||
86 | config MACH_TX28 | 98 | config MACH_TX28 |
87 | bool "Ka-Ro TX28 module" | 99 | bool "Ka-Ro TX28 module" |
88 | select MODULE_TX28 | 100 | select MODULE_TX28 |
@@ -91,4 +103,8 @@ config MACH_M28EVK | |||
91 | bool "Support DENX M28EVK Platform" | 103 | bool "Support DENX M28EVK Platform" |
92 | select MODULE_M28 | 104 | select MODULE_M28 |
93 | 105 | ||
106 | config MACH_APX4DEVKIT | ||
107 | bool "Support Bluegiga APX4 Development Kit" | ||
108 | select MODULE_APX4 | ||
109 | |||
94 | endif | 110 | endif |
diff --git a/arch/arm/mach-mxs/Makefile b/arch/arm/mach-mxs/Makefile index 8c93b24896bf..908bf9a567f1 100644 --- a/arch/arm/mach-mxs/Makefile +++ b/arch/arm/mach-mxs/Makefile | |||
@@ -11,6 +11,7 @@ obj-$(CONFIG_MACH_STMP378X_DEVB) += mach-stmp378x_devb.o | |||
11 | obj-$(CONFIG_MACH_MX23EVK) += mach-mx23evk.o | 11 | obj-$(CONFIG_MACH_MX23EVK) += mach-mx23evk.o |
12 | obj-$(CONFIG_MACH_MX28EVK) += mach-mx28evk.o | 12 | obj-$(CONFIG_MACH_MX28EVK) += mach-mx28evk.o |
13 | obj-$(CONFIG_MACH_M28EVK) += mach-m28evk.o | 13 | obj-$(CONFIG_MACH_M28EVK) += mach-m28evk.o |
14 | obj-$(CONFIG_MACH_APX4DEVKIT) += mach-apx4devkit.o | ||
14 | obj-$(CONFIG_MODULE_TX28) += module-tx28.o | 15 | obj-$(CONFIG_MODULE_TX28) += module-tx28.o |
15 | obj-$(CONFIG_MACH_TX28) += mach-tx28.o | 16 | obj-$(CONFIG_MACH_TX28) += mach-tx28.o |
16 | 17 | ||
diff --git a/arch/arm/mach-mxs/include/mach/digctl.h b/arch/arm/mach-mxs/include/mach/digctl.h index 49a888c65d6d..17964066303f 100644 --- a/arch/arm/mach-mxs/include/mach/digctl.h +++ b/arch/arm/mach-mxs/include/mach/digctl.h | |||
@@ -18,4 +18,5 @@ | |||
18 | #define HW_DIGCTL_CTRL 0x0 | 18 | #define HW_DIGCTL_CTRL 0x0 |
19 | #define BP_DIGCTL_CTRL_SAIF_CLKMUX 10 | 19 | #define BP_DIGCTL_CTRL_SAIF_CLKMUX 10 |
20 | #define BM_DIGCTL_CTRL_SAIF_CLKMUX (0x3 << 10) | 20 | #define BM_DIGCTL_CTRL_SAIF_CLKMUX (0x3 << 10) |
21 | #define HW_DIGCTL_CHIPID 0x310 | ||
21 | #endif | 22 | #endif |
diff --git a/arch/arm/mach-mxs/include/mach/mxs.h b/arch/arm/mach-mxs/include/mach/mxs.h index bde5f6634747..7d4fb6d0afda 100644 --- a/arch/arm/mach-mxs/include/mach/mxs.h +++ b/arch/arm/mach-mxs/include/mach/mxs.h | |||
@@ -23,22 +23,10 @@ | |||
23 | #include <linux/io.h> | 23 | #include <linux/io.h> |
24 | #endif | 24 | #endif |
25 | #include <asm/mach-types.h> | 25 | #include <asm/mach-types.h> |
26 | #include <mach/digctl.h> | ||
26 | #include <mach/hardware.h> | 27 | #include <mach/hardware.h> |
27 | 28 | ||
28 | /* | 29 | /* |
29 | * MXS CPU types | ||
30 | */ | ||
31 | #define cpu_is_mx23() ( \ | ||
32 | machine_is_mx23evk() || \ | ||
33 | machine_is_stmp378x() || \ | ||
34 | 0) | ||
35 | #define cpu_is_mx28() ( \ | ||
36 | machine_is_mx28evk() || \ | ||
37 | machine_is_m28evk() || \ | ||
38 | machine_is_tx28() || \ | ||
39 | 0) | ||
40 | |||
41 | /* | ||
42 | * IO addresses common to MXS-based | 30 | * IO addresses common to MXS-based |
43 | */ | 31 | */ |
44 | #define MXS_IO_BASE_ADDR 0x80000000 | 32 | #define MXS_IO_BASE_ADDR 0x80000000 |
@@ -109,6 +97,21 @@ static inline void __mxs_togl(u32 mask, void __iomem *reg) | |||
109 | { | 97 | { |
110 | __raw_writel(mask, reg + MXS_TOG_ADDR); | 98 | __raw_writel(mask, reg + MXS_TOG_ADDR); |
111 | } | 99 | } |
100 | |||
101 | /* | ||
102 | * MXS CPU types | ||
103 | */ | ||
104 | #define MXS_CHIPID (MXS_IO_ADDRESS(MXS_DIGCTL_BASE_ADDR) + HW_DIGCTL_CHIPID) | ||
105 | |||
106 | static inline int cpu_is_mx23(void) | ||
107 | { | ||
108 | return ((__raw_readl(MXS_CHIPID) >> 16) == 0x3780); | ||
109 | } | ||
110 | |||
111 | static inline int cpu_is_mx28(void) | ||
112 | { | ||
113 | return ((__raw_readl(MXS_CHIPID) >> 16) == 0x2800); | ||
114 | } | ||
112 | #endif | 115 | #endif |
113 | 116 | ||
114 | #endif /* __MACH_MXS_H__ */ | 117 | #endif /* __MACH_MXS_H__ */ |
diff --git a/arch/arm/mach-mxs/include/mach/uncompress.h b/arch/arm/mach-mxs/include/mach/uncompress.h index 67776746f143..ef2811495446 100644 --- a/arch/arm/mach-mxs/include/mach/uncompress.h +++ b/arch/arm/mach-mxs/include/mach/uncompress.h | |||
@@ -18,8 +18,6 @@ | |||
18 | #ifndef __MACH_MXS_UNCOMPRESS_H__ | 18 | #ifndef __MACH_MXS_UNCOMPRESS_H__ |
19 | #define __MACH_MXS_UNCOMPRESS_H__ | 19 | #define __MACH_MXS_UNCOMPRESS_H__ |
20 | 20 | ||
21 | #include <asm/mach-types.h> | ||
22 | |||
23 | unsigned long mxs_duart_base; | 21 | unsigned long mxs_duart_base; |
24 | 22 | ||
25 | #define MXS_DUART(x) (*(volatile unsigned long *)(mxs_duart_base + (x))) | 23 | #define MXS_DUART(x) (*(volatile unsigned long *)(mxs_duart_base + (x))) |
@@ -55,16 +53,17 @@ static inline void flush(void) | |||
55 | 53 | ||
56 | #define MX23_DUART_BASE_ADDR 0x80070000 | 54 | #define MX23_DUART_BASE_ADDR 0x80070000 |
57 | #define MX28_DUART_BASE_ADDR 0x80074000 | 55 | #define MX28_DUART_BASE_ADDR 0x80074000 |
56 | #define MXS_DIGCTL_CHIPID 0x8001c310 | ||
58 | 57 | ||
59 | static inline void __arch_decomp_setup(unsigned long arch_id) | 58 | static inline void __arch_decomp_setup(unsigned long arch_id) |
60 | { | 59 | { |
61 | switch (arch_id) { | 60 | u16 chipid = (*(volatile unsigned long *) MXS_DIGCTL_CHIPID) >> 16; |
62 | case MACH_TYPE_MX23EVK: | 61 | |
62 | switch (chipid) { | ||
63 | case 0x3780: | ||
63 | mxs_duart_base = MX23_DUART_BASE_ADDR; | 64 | mxs_duart_base = MX23_DUART_BASE_ADDR; |
64 | break; | 65 | break; |
65 | case MACH_TYPE_MX28EVK: | 66 | case 0x2800: |
66 | case MACH_TYPE_M28EVK: | ||
67 | case MACH_TYPE_TX28: | ||
68 | mxs_duart_base = MX28_DUART_BASE_ADDR; | 67 | mxs_duart_base = MX28_DUART_BASE_ADDR; |
69 | break; | 68 | break; |
70 | default: | 69 | default: |
diff --git a/arch/arm/mach-mxs/mach-apx4devkit.c b/arch/arm/mach-mxs/mach-apx4devkit.c new file mode 100644 index 000000000000..48a7fab571a6 --- /dev/null +++ b/arch/arm/mach-mxs/mach-apx4devkit.c | |||
@@ -0,0 +1,260 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2011-2012 | ||
3 | * Lauri Hintsala, Bluegiga, <lauri.hintsala@bluegiga.com> | ||
4 | * Veli-Pekka Peltola, Bluegiga, <veli-pekka.peltola@bluegiga.com> | ||
5 | * | ||
6 | * based on: mach-mx28evk.c | ||
7 | * Copyright 2010 Freescale Semiconductor, Inc. All Rights Reserved. | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License as published by | ||
11 | * the Free Software Foundation; either version 2 of the License, or | ||
12 | * (at your option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | */ | ||
19 | |||
20 | #include <linux/delay.h> | ||
21 | #include <linux/platform_device.h> | ||
22 | #include <linux/gpio.h> | ||
23 | #include <linux/leds.h> | ||
24 | #include <linux/clk.h> | ||
25 | #include <linux/i2c.h> | ||
26 | #include <linux/regulator/machine.h> | ||
27 | #include <linux/regulator/fixed.h> | ||
28 | #include <linux/micrel_phy.h> | ||
29 | |||
30 | #include <asm/mach-types.h> | ||
31 | #include <asm/mach/arch.h> | ||
32 | #include <asm/mach/time.h> | ||
33 | |||
34 | #include <mach/common.h> | ||
35 | #include <mach/digctl.h> | ||
36 | #include <mach/iomux-mx28.h> | ||
37 | |||
38 | #include "devices-mx28.h" | ||
39 | |||
40 | #define APX4DEVKIT_GPIO_USERLED MXS_GPIO_NR(3, 28) | ||
41 | |||
42 | static const iomux_cfg_t apx4devkit_pads[] __initconst = { | ||
43 | /* duart */ | ||
44 | MX28_PAD_PWM0__DUART_RX | MXS_PAD_CTRL, | ||
45 | MX28_PAD_PWM1__DUART_TX | MXS_PAD_CTRL, | ||
46 | |||
47 | /* auart0 */ | ||
48 | MX28_PAD_AUART0_RX__AUART0_RX | MXS_PAD_CTRL, | ||
49 | MX28_PAD_AUART0_TX__AUART0_TX | MXS_PAD_CTRL, | ||
50 | MX28_PAD_AUART0_CTS__AUART0_CTS | MXS_PAD_CTRL, | ||
51 | MX28_PAD_AUART0_RTS__AUART0_RTS | MXS_PAD_CTRL, | ||
52 | |||
53 | /* auart1 */ | ||
54 | MX28_PAD_AUART1_RX__AUART1_RX | MXS_PAD_CTRL, | ||
55 | MX28_PAD_AUART1_TX__AUART1_TX | MXS_PAD_CTRL, | ||
56 | |||
57 | /* auart2 */ | ||
58 | MX28_PAD_SSP2_SCK__AUART2_RX | MXS_PAD_CTRL, | ||
59 | MX28_PAD_SSP2_MOSI__AUART2_TX | MXS_PAD_CTRL, | ||
60 | |||
61 | /* auart3 */ | ||
62 | MX28_PAD_SSP2_MISO__AUART3_RX | MXS_PAD_CTRL, | ||
63 | MX28_PAD_SSP2_SS0__AUART3_TX | MXS_PAD_CTRL, | ||
64 | |||
65 | #define MXS_PAD_FEC (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP) | ||
66 | /* fec0 */ | ||
67 | MX28_PAD_ENET0_MDC__ENET0_MDC | MXS_PAD_FEC, | ||
68 | MX28_PAD_ENET0_MDIO__ENET0_MDIO | MXS_PAD_FEC, | ||
69 | MX28_PAD_ENET0_RX_EN__ENET0_RX_EN | MXS_PAD_FEC, | ||
70 | MX28_PAD_ENET0_RXD0__ENET0_RXD0 | MXS_PAD_FEC, | ||
71 | MX28_PAD_ENET0_RXD1__ENET0_RXD1 | MXS_PAD_FEC, | ||
72 | MX28_PAD_ENET0_TX_EN__ENET0_TX_EN | MXS_PAD_FEC, | ||
73 | MX28_PAD_ENET0_TXD0__ENET0_TXD0 | MXS_PAD_FEC, | ||
74 | MX28_PAD_ENET0_TXD1__ENET0_TXD1 | MXS_PAD_FEC, | ||
75 | MX28_PAD_ENET_CLK__CLKCTRL_ENET | MXS_PAD_FEC, | ||
76 | |||
77 | /* i2c */ | ||
78 | MX28_PAD_I2C0_SCL__I2C0_SCL, | ||
79 | MX28_PAD_I2C0_SDA__I2C0_SDA, | ||
80 | |||
81 | /* mmc0 */ | ||
82 | MX28_PAD_SSP0_DATA0__SSP0_D0 | | ||
83 | (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
84 | MX28_PAD_SSP0_DATA1__SSP0_D1 | | ||
85 | (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
86 | MX28_PAD_SSP0_DATA2__SSP0_D2 | | ||
87 | (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
88 | MX28_PAD_SSP0_DATA3__SSP0_D3 | | ||
89 | (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
90 | MX28_PAD_SSP0_DATA4__SSP0_D4 | | ||
91 | (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
92 | MX28_PAD_SSP0_DATA5__SSP0_D5 | | ||
93 | (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
94 | MX28_PAD_SSP0_DATA6__SSP0_D6 | | ||
95 | (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
96 | MX28_PAD_SSP0_DATA7__SSP0_D7 | | ||
97 | (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
98 | MX28_PAD_SSP0_CMD__SSP0_CMD | | ||
99 | (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
100 | MX28_PAD_SSP0_DETECT__SSP0_CARD_DETECT | | ||
101 | (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_NOPULL), | ||
102 | MX28_PAD_SSP0_SCK__SSP0_SCK | | ||
103 | (MXS_PAD_12MA | MXS_PAD_3V3 | MXS_PAD_NOPULL), | ||
104 | |||
105 | /* led */ | ||
106 | MX28_PAD_PWM3__GPIO_3_28 | MXS_PAD_CTRL, | ||
107 | |||
108 | /* saif0 & saif1 */ | ||
109 | MX28_PAD_SAIF0_MCLK__SAIF0_MCLK | | ||
110 | (MXS_PAD_12MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
111 | MX28_PAD_SAIF0_LRCLK__SAIF0_LRCLK | | ||
112 | (MXS_PAD_12MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
113 | MX28_PAD_SAIF0_BITCLK__SAIF0_BITCLK | | ||
114 | (MXS_PAD_12MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
115 | MX28_PAD_SAIF0_SDATA0__SAIF0_SDATA0 | | ||
116 | (MXS_PAD_12MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
117 | MX28_PAD_SAIF1_SDATA0__SAIF1_SDATA0 | | ||
118 | (MXS_PAD_12MA | MXS_PAD_3V3 | MXS_PAD_PULLUP), | ||
119 | }; | ||
120 | |||
121 | /* led */ | ||
122 | static const struct gpio_led apx4devkit_leds[] __initconst = { | ||
123 | { | ||
124 | .name = "user-led", | ||
125 | .default_trigger = "heartbeat", | ||
126 | .gpio = APX4DEVKIT_GPIO_USERLED, | ||
127 | }, | ||
128 | }; | ||
129 | |||
130 | static const struct gpio_led_platform_data apx4devkit_led_data __initconst = { | ||
131 | .leds = apx4devkit_leds, | ||
132 | .num_leds = ARRAY_SIZE(apx4devkit_leds), | ||
133 | }; | ||
134 | |||
135 | static const struct fec_platform_data mx28_fec_pdata __initconst = { | ||
136 | .phy = PHY_INTERFACE_MODE_RMII, | ||
137 | }; | ||
138 | |||
139 | static const struct mxs_mmc_platform_data apx4devkit_mmc_pdata __initconst = { | ||
140 | .wp_gpio = -EINVAL, | ||
141 | .flags = SLOTF_4_BIT_CAPABLE, | ||
142 | }; | ||
143 | |||
144 | static const struct i2c_board_info apx4devkit_i2c_boardinfo[] __initconst = { | ||
145 | { I2C_BOARD_INFO("sgtl5000", 0x0a) }, /* ASoC */ | ||
146 | { I2C_BOARD_INFO("pcf8563", 0x51) }, /* RTC */ | ||
147 | }; | ||
148 | |||
149 | #if defined(CONFIG_REGULATOR_FIXED_VOLTAGE) || \ | ||
150 | defined(CONFIG_REGULATOR_FIXED_VOLTAGE_MODULE) | ||
151 | static struct regulator_consumer_supply apx4devkit_audio_consumer_supplies[] = { | ||
152 | REGULATOR_SUPPLY("VDDA", "0-000a"), | ||
153 | REGULATOR_SUPPLY("VDDIO", "0-000a"), | ||
154 | }; | ||
155 | |||
156 | static struct regulator_init_data apx4devkit_vdd_reg_init_data = { | ||
157 | .constraints = { | ||
158 | .name = "3V3", | ||
159 | .always_on = 1, | ||
160 | }, | ||
161 | .consumer_supplies = apx4devkit_audio_consumer_supplies, | ||
162 | .num_consumer_supplies = ARRAY_SIZE(apx4devkit_audio_consumer_supplies), | ||
163 | }; | ||
164 | |||
165 | static struct fixed_voltage_config apx4devkit_vdd_pdata = { | ||
166 | .supply_name = "board-3V3", | ||
167 | .microvolts = 3300000, | ||
168 | .gpio = -EINVAL, | ||
169 | .enabled_at_boot = 1, | ||
170 | .init_data = &apx4devkit_vdd_reg_init_data, | ||
171 | }; | ||
172 | |||
173 | static struct platform_device apx4devkit_voltage_regulator = { | ||
174 | .name = "reg-fixed-voltage", | ||
175 | .id = -1, | ||
176 | .num_resources = 0, | ||
177 | .dev = { | ||
178 | .platform_data = &apx4devkit_vdd_pdata, | ||
179 | }, | ||
180 | }; | ||
181 | |||
182 | static void __init apx4devkit_add_regulators(void) | ||
183 | { | ||
184 | platform_device_register(&apx4devkit_voltage_regulator); | ||
185 | } | ||
186 | #else | ||
187 | static void __init apx4devkit_add_regulators(void) {} | ||
188 | #endif | ||
189 | |||
190 | static const struct mxs_saif_platform_data | ||
191 | apx4devkit_mxs_saif_pdata[] __initconst = { | ||
192 | /* working on EXTMSTR0 mode (saif0 master, saif1 slave) */ | ||
193 | { | ||
194 | .master_mode = 1, | ||
195 | .master_id = 0, | ||
196 | }, { | ||
197 | .master_mode = 0, | ||
198 | .master_id = 0, | ||
199 | }, | ||
200 | }; | ||
201 | |||
202 | static int apx4devkit_phy_fixup(struct phy_device *phy) | ||
203 | { | ||
204 | phy->dev_flags |= MICREL_PHY_50MHZ_CLK; | ||
205 | return 0; | ||
206 | } | ||
207 | |||
208 | static void __init apx4devkit_init(void) | ||
209 | { | ||
210 | mxs_iomux_setup_multiple_pads(apx4devkit_pads, | ||
211 | ARRAY_SIZE(apx4devkit_pads)); | ||
212 | |||
213 | mx28_add_duart(); | ||
214 | mx28_add_auart0(); | ||
215 | mx28_add_auart1(); | ||
216 | mx28_add_auart2(); | ||
217 | mx28_add_auart3(); | ||
218 | |||
219 | /* | ||
220 | * Register fixup for the Micrel KS8031 PHY clock | ||
221 | * (shares same ID with KS8051) | ||
222 | */ | ||
223 | phy_register_fixup_for_uid(PHY_ID_KS8051, MICREL_PHY_ID_MASK, | ||
224 | apx4devkit_phy_fixup); | ||
225 | |||
226 | mx28_add_fec(0, &mx28_fec_pdata); | ||
227 | |||
228 | mx28_add_mxs_mmc(0, &apx4devkit_mmc_pdata); | ||
229 | |||
230 | gpio_led_register_device(0, &apx4devkit_led_data); | ||
231 | |||
232 | mxs_saif_clkmux_select(MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0); | ||
233 | mx28_add_saif(0, &apx4devkit_mxs_saif_pdata[0]); | ||
234 | mx28_add_saif(1, &apx4devkit_mxs_saif_pdata[1]); | ||
235 | |||
236 | apx4devkit_add_regulators(); | ||
237 | |||
238 | mx28_add_mxs_i2c(0); | ||
239 | i2c_register_board_info(0, apx4devkit_i2c_boardinfo, | ||
240 | ARRAY_SIZE(apx4devkit_i2c_boardinfo)); | ||
241 | |||
242 | mxs_add_platform_device("mxs-sgtl5000", 0, NULL, 0, NULL, 0); | ||
243 | } | ||
244 | |||
245 | static void __init apx4devkit_timer_init(void) | ||
246 | { | ||
247 | mx28_clocks_init(); | ||
248 | } | ||
249 | |||
250 | static struct sys_timer apx4devkit_timer = { | ||
251 | .init = apx4devkit_timer_init, | ||
252 | }; | ||
253 | |||
254 | MACHINE_START(APX4DEVKIT, "Bluegiga APX4 Development Kit") | ||
255 | .map_io = mx28_map_io, | ||
256 | .init_irq = mx28_init_irq, | ||
257 | .timer = &apx4devkit_timer, | ||
258 | .init_machine = apx4devkit_init, | ||
259 | .restart = mxs_restart, | ||
260 | MACHINE_END | ||
diff --git a/arch/arm/mach-mxs/mach-m28evk.c b/arch/arm/mach-mxs/mach-m28evk.c index 2f2758230edf..06d79963611c 100644 --- a/arch/arm/mach-mxs/mach-m28evk.c +++ b/arch/arm/mach-mxs/mach-m28evk.c | |||
@@ -247,18 +247,15 @@ static int __init m28evk_fec_get_mac(void) | |||
247 | u32 val; | 247 | u32 val; |
248 | const u32 *ocotp = mxs_get_ocotp(); | 248 | const u32 *ocotp = mxs_get_ocotp(); |
249 | 249 | ||
250 | if (!ocotp) { | 250 | if (!ocotp) |
251 | pr_err("%s: timeout when reading fec mac from OCOTP\n", | ||
252 | __func__); | ||
253 | return -ETIMEDOUT; | 251 | return -ETIMEDOUT; |
254 | } | ||
255 | 252 | ||
256 | /* | 253 | /* |
257 | * OCOTP only stores the last 4 octets for each mac address, | 254 | * OCOTP only stores the last 4 octets for each mac address, |
258 | * so hard-code DENX OUI (C0:E5:4E) here. | 255 | * so hard-code DENX OUI (C0:E5:4E) here. |
259 | */ | 256 | */ |
260 | for (i = 0; i < 2; i++) { | 257 | for (i = 0; i < 2; i++) { |
261 | val = ocotp[i * 4]; | 258 | val = ocotp[i]; |
262 | mx28_fec_pdata[i].mac[0] = 0xC0; | 259 | mx28_fec_pdata[i].mac[0] = 0xC0; |
263 | mx28_fec_pdata[i].mac[1] = 0xE5; | 260 | mx28_fec_pdata[i].mac[1] = 0xE5; |
264 | mx28_fec_pdata[i].mac[2] = 0x4E; | 261 | mx28_fec_pdata[i].mac[2] = 0x4E; |
diff --git a/arch/arm/mach-mxs/mach-mx28evk.c b/arch/arm/mach-mxs/mach-mx28evk.c index fdb0a5664dd6..e386c142f93c 100644 --- a/arch/arm/mach-mxs/mach-mx28evk.c +++ b/arch/arm/mach-mxs/mach-mx28evk.c | |||
@@ -223,7 +223,6 @@ static const struct gpio_led_platform_data mx28evk_led_data __initconst = { | |||
223 | /* fec */ | 223 | /* fec */ |
224 | static void __init mx28evk_fec_reset(void) | 224 | static void __init mx28evk_fec_reset(void) |
225 | { | 225 | { |
226 | int ret; | ||
227 | struct clk *clk; | 226 | struct clk *clk; |
228 | 227 | ||
229 | /* Enable fec phy clock */ | 228 | /* Enable fec phy clock */ |
@@ -231,32 +230,7 @@ static void __init mx28evk_fec_reset(void) | |||
231 | if (!IS_ERR(clk)) | 230 | if (!IS_ERR(clk)) |
232 | clk_prepare_enable(clk); | 231 | clk_prepare_enable(clk); |
233 | 232 | ||
234 | /* Power up fec phy */ | 233 | gpio_set_value(MX28EVK_FEC_PHY_RESET, 0); |
235 | ret = gpio_request(MX28EVK_FEC_PHY_POWER, "fec-phy-power"); | ||
236 | if (ret) { | ||
237 | pr_err("Failed to request gpio fec-phy-%s: %d\n", "power", ret); | ||
238 | return; | ||
239 | } | ||
240 | |||
241 | ret = gpio_direction_output(MX28EVK_FEC_PHY_POWER, 0); | ||
242 | if (ret) { | ||
243 | pr_err("Failed to drive gpio fec-phy-%s: %d\n", "power", ret); | ||
244 | return; | ||
245 | } | ||
246 | |||
247 | /* Reset fec phy */ | ||
248 | ret = gpio_request(MX28EVK_FEC_PHY_RESET, "fec-phy-reset"); | ||
249 | if (ret) { | ||
250 | pr_err("Failed to request gpio fec-phy-%s: %d\n", "reset", ret); | ||
251 | return; | ||
252 | } | ||
253 | |||
254 | gpio_direction_output(MX28EVK_FEC_PHY_RESET, 0); | ||
255 | if (ret) { | ||
256 | pr_err("Failed to drive gpio fec-phy-%s: %d\n", "reset", ret); | ||
257 | return; | ||
258 | } | ||
259 | |||
260 | mdelay(1); | 234 | mdelay(1); |
261 | gpio_set_value(MX28EVK_FEC_PHY_RESET, 1); | 235 | gpio_set_value(MX28EVK_FEC_PHY_RESET, 1); |
262 | } | 236 | } |
@@ -278,14 +252,14 @@ static int __init mx28evk_fec_get_mac(void) | |||
278 | const u32 *ocotp = mxs_get_ocotp(); | 252 | const u32 *ocotp = mxs_get_ocotp(); |
279 | 253 | ||
280 | if (!ocotp) | 254 | if (!ocotp) |
281 | goto error; | 255 | return -ETIMEDOUT; |
282 | 256 | ||
283 | /* | 257 | /* |
284 | * OCOTP only stores the last 4 octets for each mac address, | 258 | * OCOTP only stores the last 4 octets for each mac address, |
285 | * so hard-code Freescale OUI (00:04:9f) here. | 259 | * so hard-code Freescale OUI (00:04:9f) here. |
286 | */ | 260 | */ |
287 | for (i = 0; i < 2; i++) { | 261 | for (i = 0; i < 2; i++) { |
288 | val = ocotp[i * 4]; | 262 | val = ocotp[i]; |
289 | mx28_fec_pdata[i].mac[0] = 0x00; | 263 | mx28_fec_pdata[i].mac[0] = 0x00; |
290 | mx28_fec_pdata[i].mac[1] = 0x04; | 264 | mx28_fec_pdata[i].mac[1] = 0x04; |
291 | mx28_fec_pdata[i].mac[2] = 0x9f; | 265 | mx28_fec_pdata[i].mac[2] = 0x9f; |
@@ -295,10 +269,6 @@ static int __init mx28evk_fec_get_mac(void) | |||
295 | } | 269 | } |
296 | 270 | ||
297 | return 0; | 271 | return 0; |
298 | |||
299 | error: | ||
300 | pr_err("%s: timeout when reading fec mac from OCOTP\n", __func__); | ||
301 | return -ETIMEDOUT; | ||
302 | } | 272 | } |
303 | 273 | ||
304 | /* | 274 | /* |
@@ -417,9 +387,14 @@ static void __init mx28evk_add_regulators(void) | |||
417 | static void __init mx28evk_add_regulators(void) {} | 387 | static void __init mx28evk_add_regulators(void) {} |
418 | #endif | 388 | #endif |
419 | 389 | ||
420 | static struct gpio mx28evk_lcd_gpios[] = { | 390 | static const struct gpio mx28evk_gpios[] __initconst = { |
421 | { MX28EVK_LCD_ENABLE, GPIOF_OUT_INIT_HIGH, "lcd-enable" }, | 391 | { MX28EVK_LCD_ENABLE, GPIOF_OUT_INIT_HIGH, "lcd-enable" }, |
422 | { MX28EVK_BL_ENABLE, GPIOF_OUT_INIT_HIGH, "bl-enable" }, | 392 | { MX28EVK_BL_ENABLE, GPIOF_OUT_INIT_HIGH, "bl-enable" }, |
393 | { MX28EVK_FLEXCAN_SWITCH, GPIOF_DIR_OUT, "flexcan-switch" }, | ||
394 | { MX28EVK_MMC0_SLOT_POWER, GPIOF_OUT_INIT_LOW, "mmc0-slot-power" }, | ||
395 | { MX28EVK_MMC1_SLOT_POWER, GPIOF_OUT_INIT_LOW, "mmc1-slot-power" }, | ||
396 | { MX28EVK_FEC_PHY_POWER, GPIOF_OUT_INIT_LOW, "fec-phy-power" }, | ||
397 | { MX28EVK_FEC_PHY_RESET, GPIOF_DIR_OUT, "fec-phy-reset" }, | ||
423 | }; | 398 | }; |
424 | 399 | ||
425 | static const struct mxs_saif_platform_data | 400 | static const struct mxs_saif_platform_data |
@@ -447,25 +422,18 @@ static void __init mx28evk_init(void) | |||
447 | if (mx28evk_fec_get_mac()) | 422 | if (mx28evk_fec_get_mac()) |
448 | pr_warn("%s: failed on fec mac setup\n", __func__); | 423 | pr_warn("%s: failed on fec mac setup\n", __func__); |
449 | 424 | ||
425 | ret = gpio_request_array(mx28evk_gpios, ARRAY_SIZE(mx28evk_gpios)); | ||
426 | if (ret) | ||
427 | pr_err("One or more GPIOs failed to be requested: %d\n", ret); | ||
428 | |||
450 | mx28evk_fec_reset(); | 429 | mx28evk_fec_reset(); |
451 | mx28_add_fec(0, &mx28_fec_pdata[0]); | 430 | mx28_add_fec(0, &mx28_fec_pdata[0]); |
452 | mx28_add_fec(1, &mx28_fec_pdata[1]); | 431 | mx28_add_fec(1, &mx28_fec_pdata[1]); |
453 | 432 | ||
454 | ret = gpio_request_one(MX28EVK_FLEXCAN_SWITCH, GPIOF_DIR_OUT, | 433 | mx28_add_flexcan(0, &mx28evk_flexcan_pdata[0]); |
455 | "flexcan-switch"); | 434 | mx28_add_flexcan(1, &mx28evk_flexcan_pdata[1]); |
456 | if (ret) { | ||
457 | pr_err("failed to request gpio flexcan-switch: %d\n", ret); | ||
458 | } else { | ||
459 | mx28_add_flexcan(0, &mx28evk_flexcan_pdata[0]); | ||
460 | mx28_add_flexcan(1, &mx28evk_flexcan_pdata[1]); | ||
461 | } | ||
462 | 435 | ||
463 | ret = gpio_request_array(mx28evk_lcd_gpios, | 436 | mx28_add_mxsfb(&mx28evk_mxsfb_pdata); |
464 | ARRAY_SIZE(mx28evk_lcd_gpios)); | ||
465 | if (ret) | ||
466 | pr_warn("failed to request gpio pins for lcd: %d\n", ret); | ||
467 | else | ||
468 | mx28_add_mxsfb(&mx28evk_mxsfb_pdata); | ||
469 | 437 | ||
470 | mxs_saif_clkmux_select(MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0); | 438 | mxs_saif_clkmux_select(MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0); |
471 | mx28_add_saif(0, &mx28evk_mxs_saif_pdata[0]); | 439 | mx28_add_saif(0, &mx28evk_mxs_saif_pdata[0]); |
@@ -480,20 +448,8 @@ static void __init mx28evk_init(void) | |||
480 | mxs_add_platform_device("mxs-sgtl5000", 0, NULL, 0, | 448 | mxs_add_platform_device("mxs-sgtl5000", 0, NULL, 0, |
481 | NULL, 0); | 449 | NULL, 0); |
482 | 450 | ||
483 | /* power on mmc slot by writing 0 to the gpio */ | 451 | mx28_add_mxs_mmc(0, &mx28evk_mmc_pdata[0]); |
484 | ret = gpio_request_one(MX28EVK_MMC0_SLOT_POWER, GPIOF_OUT_INIT_LOW, | 452 | mx28_add_mxs_mmc(1, &mx28evk_mmc_pdata[1]); |
485 | "mmc0-slot-power"); | ||
486 | if (ret) | ||
487 | pr_warn("failed to request gpio mmc0-slot-power: %d\n", ret); | ||
488 | else | ||
489 | mx28_add_mxs_mmc(0, &mx28evk_mmc_pdata[0]); | ||
490 | |||
491 | ret = gpio_request_one(MX28EVK_MMC1_SLOT_POWER, GPIOF_OUT_INIT_LOW, | ||
492 | "mmc1-slot-power"); | ||
493 | if (ret) | ||
494 | pr_warn("failed to request gpio mmc1-slot-power: %d\n", ret); | ||
495 | else | ||
496 | mx28_add_mxs_mmc(1, &mx28evk_mmc_pdata[1]); | ||
497 | 453 | ||
498 | mx28_add_rtc_stmp3xxx(); | 454 | mx28_add_rtc_stmp3xxx(); |
499 | 455 | ||