diff options
author | Tony Lindgren <tony@atomide.com> | 2012-10-02 15:39:09 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2012-10-17 14:36:37 -0400 |
commit | 4c98dc6b8ef2f73bdbfa78186db9a76507ba9ea3 (patch) | |
tree | 2f9f897dc9f4b8c0923e955008460d9516f7dd00 /arch/arm/mach-omap1 | |
parent | 6832c95599e1a04f4b56b533718d1cda4689aec2 (diff) |
ARM: OMAP: Make plat/fpga.h local to arch/arm/plat-omap
There's no need to have this file in plat/fpga.h. We can
make it local to plat-omap replacing fpga_read/write
functions directly with readb/writeb as that's how
they are already defined in fpga.h.
Note that 2420 based H4 is also using the fpga, so let's
keep the led support around in plat-omap until we flip
over mach-omap2 to device tree.
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Cc: linux-fbdev@vger.kernel.org
Cc: Felipe Balbi <balbi@ti.com>
Cc: linux-usb@vger.kernel.org
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap1')
-rw-r--r-- | arch/arm/mach-omap1/board-fsample.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-omap1/board-innovator.c | 26 | ||||
-rw-r--r-- | arch/arm/mach-omap1/board-perseus2.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-omap1/common.h | 1 | ||||
-rw-r--r-- | arch/arm/mach-omap1/fpga.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-omap1/include/mach/omap1510.h | 113 | ||||
-rw-r--r-- | arch/arm/mach-omap1/serial.c | 1 |
7 files changed, 135 insertions, 20 deletions
diff --git a/arch/arm/mach-omap1/board-fsample.c b/arch/arm/mach-omap1/board-fsample.c index 4b6de70c47a6..6f496df3d189 100644 --- a/arch/arm/mach-omap1/board-fsample.c +++ b/arch/arm/mach-omap1/board-fsample.c | |||
@@ -30,7 +30,7 @@ | |||
30 | #include <plat/tc.h> | 30 | #include <plat/tc.h> |
31 | #include <mach/mux.h> | 31 | #include <mach/mux.h> |
32 | #include <mach/flash.h> | 32 | #include <mach/flash.h> |
33 | #include <plat/fpga.h> | 33 | #include <../plat-omap/fpga.h> |
34 | #include <linux/platform_data/keypad-omap.h> | 34 | #include <linux/platform_data/keypad-omap.h> |
35 | 35 | ||
36 | #include <mach/hardware.h> | 36 | #include <mach/hardware.h> |
@@ -123,9 +123,9 @@ static struct resource smc91x_resources[] = { | |||
123 | 123 | ||
124 | static void __init fsample_init_smc91x(void) | 124 | static void __init fsample_init_smc91x(void) |
125 | { | 125 | { |
126 | fpga_write(1, H2P2_DBG_FPGA_LAN_RESET); | 126 | __raw_writeb(1, H2P2_DBG_FPGA_LAN_RESET); |
127 | mdelay(50); | 127 | mdelay(50); |
128 | fpga_write(fpga_read(H2P2_DBG_FPGA_LAN_RESET) & ~1, | 128 | __raw_writeb(__raw_readb(H2P2_DBG_FPGA_LAN_RESET) & ~1, |
129 | H2P2_DBG_FPGA_LAN_RESET); | 129 | H2P2_DBG_FPGA_LAN_RESET); |
130 | mdelay(50); | 130 | mdelay(50); |
131 | } | 131 | } |
diff --git a/arch/arm/mach-omap1/board-innovator.c b/arch/arm/mach-omap1/board-innovator.c index 411cc5b14ce3..c2317c9f615a 100644 --- a/arch/arm/mach-omap1/board-innovator.c +++ b/arch/arm/mach-omap1/board-innovator.c | |||
@@ -33,7 +33,7 @@ | |||
33 | 33 | ||
34 | #include <mach/mux.h> | 34 | #include <mach/mux.h> |
35 | #include <mach/flash.h> | 35 | #include <mach/flash.h> |
36 | #include <plat/fpga.h> | 36 | #include <../plat-omap/fpga.h> |
37 | #include <plat/tc.h> | 37 | #include <plat/tc.h> |
38 | #include <linux/platform_data/keypad-omap.h> | 38 | #include <linux/platform_data/keypad-omap.h> |
39 | 39 | ||
@@ -215,7 +215,7 @@ static struct platform_device *innovator1510_devices[] __initdata = { | |||
215 | 215 | ||
216 | static int innovator_get_pendown_state(void) | 216 | static int innovator_get_pendown_state(void) |
217 | { | 217 | { |
218 | return !(fpga_read(OMAP1510_FPGA_TOUCHSCREEN) & (1 << 5)); | 218 | return !(__raw_readb(OMAP1510_FPGA_TOUCHSCREEN) & (1 << 5)); |
219 | } | 219 | } |
220 | 220 | ||
221 | static const struct ads7846_platform_data innovator1510_ts_info = { | 221 | static const struct ads7846_platform_data innovator1510_ts_info = { |
@@ -279,7 +279,7 @@ static struct platform_device *innovator1610_devices[] __initdata = { | |||
279 | static void __init innovator_init_smc91x(void) | 279 | static void __init innovator_init_smc91x(void) |
280 | { | 280 | { |
281 | if (cpu_is_omap1510()) { | 281 | if (cpu_is_omap1510()) { |
282 | fpga_write(fpga_read(OMAP1510_FPGA_RST) & ~1, | 282 | __raw_writeb(__raw_readb(OMAP1510_FPGA_RST) & ~1, |
283 | OMAP1510_FPGA_RST); | 283 | OMAP1510_FPGA_RST); |
284 | udelay(750); | 284 | udelay(750); |
285 | } else { | 285 | } else { |
@@ -335,10 +335,10 @@ static int mmc_set_power(struct device *dev, int slot, int power_on, | |||
335 | int vdd) | 335 | int vdd) |
336 | { | 336 | { |
337 | if (power_on) | 337 | if (power_on) |
338 | fpga_write(fpga_read(OMAP1510_FPGA_POWER) | (1 << 3), | 338 | __raw_writeb(__raw_readb(OMAP1510_FPGA_POWER) | (1 << 3), |
339 | OMAP1510_FPGA_POWER); | 339 | OMAP1510_FPGA_POWER); |
340 | else | 340 | else |
341 | fpga_write(fpga_read(OMAP1510_FPGA_POWER) & ~(1 << 3), | 341 | __raw_writeb(__raw_readb(OMAP1510_FPGA_POWER) & ~(1 << 3), |
342 | OMAP1510_FPGA_POWER); | 342 | OMAP1510_FPGA_POWER); |
343 | 343 | ||
344 | return 0; | 344 | return 0; |
@@ -390,14 +390,14 @@ static void __init innovator_init(void) | |||
390 | omap_cfg_reg(UART3_TX); | 390 | omap_cfg_reg(UART3_TX); |
391 | omap_cfg_reg(UART3_RX); | 391 | omap_cfg_reg(UART3_RX); |
392 | 392 | ||
393 | reg = fpga_read(OMAP1510_FPGA_POWER); | 393 | reg = __raw_readb(OMAP1510_FPGA_POWER); |
394 | reg |= OMAP1510_FPGA_PCR_COM1_EN; | 394 | reg |= OMAP1510_FPGA_PCR_COM1_EN; |
395 | fpga_write(reg, OMAP1510_FPGA_POWER); | 395 | __raw_writeb(reg, OMAP1510_FPGA_POWER); |
396 | udelay(10); | 396 | udelay(10); |
397 | 397 | ||
398 | reg = fpga_read(OMAP1510_FPGA_POWER); | 398 | reg = __raw_readb(OMAP1510_FPGA_POWER); |
399 | reg |= OMAP1510_FPGA_PCR_COM2_EN; | 399 | reg |= OMAP1510_FPGA_PCR_COM2_EN; |
400 | fpga_write(reg, OMAP1510_FPGA_POWER); | 400 | __raw_writeb(reg, OMAP1510_FPGA_POWER); |
401 | udelay(10); | 401 | udelay(10); |
402 | 402 | ||
403 | platform_add_devices(innovator1510_devices, ARRAY_SIZE(innovator1510_devices)); | 403 | platform_add_devices(innovator1510_devices, ARRAY_SIZE(innovator1510_devices)); |
@@ -437,6 +437,7 @@ static void __init innovator_init(void) | |||
437 | */ | 437 | */ |
438 | static void __init innovator_map_io(void) | 438 | static void __init innovator_map_io(void) |
439 | { | 439 | { |
440 | #ifdef CONFIG_ARCH_OMAP15XX | ||
440 | omap15xx_map_io(); | 441 | omap15xx_map_io(); |
441 | 442 | ||
442 | iotable_init(innovator1510_io_desc, ARRAY_SIZE(innovator1510_io_desc)); | 443 | iotable_init(innovator1510_io_desc, ARRAY_SIZE(innovator1510_io_desc)); |
@@ -444,9 +445,10 @@ static void __init innovator_map_io(void) | |||
444 | 445 | ||
445 | /* Dump the Innovator FPGA rev early - useful info for support. */ | 446 | /* Dump the Innovator FPGA rev early - useful info for support. */ |
446 | pr_debug("Innovator FPGA Rev %d.%d Board Rev %d\n", | 447 | pr_debug("Innovator FPGA Rev %d.%d Board Rev %d\n", |
447 | fpga_read(OMAP1510_FPGA_REV_HIGH), | 448 | __raw_readb(OMAP1510_FPGA_REV_HIGH), |
448 | fpga_read(OMAP1510_FPGA_REV_LOW), | 449 | __raw_readb(OMAP1510_FPGA_REV_LOW), |
449 | fpga_read(OMAP1510_FPGA_BOARD_REV)); | 450 | __raw_readb(OMAP1510_FPGA_BOARD_REV)); |
451 | #endif | ||
450 | } | 452 | } |
451 | 453 | ||
452 | MACHINE_START(OMAP_INNOVATOR, "TI-Innovator") | 454 | MACHINE_START(OMAP_INNOVATOR, "TI-Innovator") |
diff --git a/arch/arm/mach-omap1/board-perseus2.c b/arch/arm/mach-omap1/board-perseus2.c index 198b05417bfc..a1cdeeb43f46 100644 --- a/arch/arm/mach-omap1/board-perseus2.c +++ b/arch/arm/mach-omap1/board-perseus2.c | |||
@@ -30,7 +30,7 @@ | |||
30 | 30 | ||
31 | #include <plat/tc.h> | 31 | #include <plat/tc.h> |
32 | #include <mach/mux.h> | 32 | #include <mach/mux.h> |
33 | #include <plat/fpga.h> | 33 | #include <../plat-omap/fpga.h> |
34 | #include <mach/flash.h> | 34 | #include <mach/flash.h> |
35 | 35 | ||
36 | #include <mach/hardware.h> | 36 | #include <mach/hardware.h> |
@@ -231,9 +231,9 @@ static struct omap_lcd_config perseus2_lcd_config __initdata = { | |||
231 | 231 | ||
232 | static void __init perseus2_init_smc91x(void) | 232 | static void __init perseus2_init_smc91x(void) |
233 | { | 233 | { |
234 | fpga_write(1, H2P2_DBG_FPGA_LAN_RESET); | 234 | __raw_writeb(1, H2P2_DBG_FPGA_LAN_RESET); |
235 | mdelay(50); | 235 | mdelay(50); |
236 | fpga_write(fpga_read(H2P2_DBG_FPGA_LAN_RESET) & ~1, | 236 | __raw_writeb(__raw_readb(H2P2_DBG_FPGA_LAN_RESET) & ~1, |
237 | H2P2_DBG_FPGA_LAN_RESET); | 237 | H2P2_DBG_FPGA_LAN_RESET); |
238 | mdelay(50); | 238 | mdelay(50); |
239 | } | 239 | } |
diff --git a/arch/arm/mach-omap1/common.h b/arch/arm/mach-omap1/common.h index c2552b24f9f2..a65f50aeda6b 100644 --- a/arch/arm/mach-omap1/common.h +++ b/arch/arm/mach-omap1/common.h | |||
@@ -38,6 +38,7 @@ static inline void omap7xx_map_io(void) | |||
38 | #endif | 38 | #endif |
39 | 39 | ||
40 | #ifdef CONFIG_ARCH_OMAP15XX | 40 | #ifdef CONFIG_ARCH_OMAP15XX |
41 | void omap1510_fpga_init_irq(void); | ||
41 | void omap15xx_map_io(void); | 42 | void omap15xx_map_io(void); |
42 | #else | 43 | #else |
43 | static inline void omap15xx_map_io(void) | 44 | static inline void omap15xx_map_io(void) |
diff --git a/arch/arm/mach-omap1/fpga.c b/arch/arm/mach-omap1/fpga.c index 29ec50fc688d..4ec220d8da5c 100644 --- a/arch/arm/mach-omap1/fpga.c +++ b/arch/arm/mach-omap1/fpga.c | |||
@@ -27,7 +27,7 @@ | |||
27 | #include <asm/irq.h> | 27 | #include <asm/irq.h> |
28 | #include <asm/mach/irq.h> | 28 | #include <asm/mach/irq.h> |
29 | 29 | ||
30 | #include <plat/fpga.h> | 30 | #include <../plat-omap/fpga.h> |
31 | 31 | ||
32 | #include <mach/hardware.h> | 32 | #include <mach/hardware.h> |
33 | 33 | ||
diff --git a/arch/arm/mach-omap1/include/mach/omap1510.h b/arch/arm/mach-omap1/include/mach/omap1510.h index 8fe05d6137c0..3d235244bf5c 100644 --- a/arch/arm/mach-omap1/include/mach/omap1510.h +++ b/arch/arm/mach-omap1/include/mach/omap1510.h | |||
@@ -45,5 +45,118 @@ | |||
45 | 45 | ||
46 | #define OMAP1510_DSP_MMU_BASE (0xfffed200) | 46 | #define OMAP1510_DSP_MMU_BASE (0xfffed200) |
47 | 47 | ||
48 | /* | ||
49 | * --------------------------------------------------------------------------- | ||
50 | * OMAP-1510 FPGA | ||
51 | * --------------------------------------------------------------------------- | ||
52 | */ | ||
53 | #define OMAP1510_FPGA_BASE 0xE8000000 /* VA */ | ||
54 | #define OMAP1510_FPGA_SIZE SZ_4K | ||
55 | #define OMAP1510_FPGA_START 0x08000000 /* PA */ | ||
56 | |||
57 | /* Revision */ | ||
58 | #define OMAP1510_FPGA_REV_LOW IOMEM(OMAP1510_FPGA_BASE + 0x0) | ||
59 | #define OMAP1510_FPGA_REV_HIGH IOMEM(OMAP1510_FPGA_BASE + 0x1) | ||
60 | #define OMAP1510_FPGA_LCD_PANEL_CONTROL IOMEM(OMAP1510_FPGA_BASE + 0x2) | ||
61 | #define OMAP1510_FPGA_LED_DIGIT IOMEM(OMAP1510_FPGA_BASE + 0x3) | ||
62 | #define INNOVATOR_FPGA_HID_SPI IOMEM(OMAP1510_FPGA_BASE + 0x4) | ||
63 | #define OMAP1510_FPGA_POWER IOMEM(OMAP1510_FPGA_BASE + 0x5) | ||
64 | |||
65 | /* Interrupt status */ | ||
66 | #define OMAP1510_FPGA_ISR_LO IOMEM(OMAP1510_FPGA_BASE + 0x6) | ||
67 | #define OMAP1510_FPGA_ISR_HI IOMEM(OMAP1510_FPGA_BASE + 0x7) | ||
68 | |||
69 | /* Interrupt mask */ | ||
70 | #define OMAP1510_FPGA_IMR_LO IOMEM(OMAP1510_FPGA_BASE + 0x8) | ||
71 | #define OMAP1510_FPGA_IMR_HI IOMEM(OMAP1510_FPGA_BASE + 0x9) | ||
72 | |||
73 | /* Reset registers */ | ||
74 | #define OMAP1510_FPGA_HOST_RESET IOMEM(OMAP1510_FPGA_BASE + 0xa) | ||
75 | #define OMAP1510_FPGA_RST IOMEM(OMAP1510_FPGA_BASE + 0xb) | ||
76 | |||
77 | #define OMAP1510_FPGA_AUDIO IOMEM(OMAP1510_FPGA_BASE + 0xc) | ||
78 | #define OMAP1510_FPGA_DIP IOMEM(OMAP1510_FPGA_BASE + 0xe) | ||
79 | #define OMAP1510_FPGA_FPGA_IO IOMEM(OMAP1510_FPGA_BASE + 0xf) | ||
80 | #define OMAP1510_FPGA_UART1 IOMEM(OMAP1510_FPGA_BASE + 0x14) | ||
81 | #define OMAP1510_FPGA_UART2 IOMEM(OMAP1510_FPGA_BASE + 0x15) | ||
82 | #define OMAP1510_FPGA_OMAP1510_STATUS IOMEM(OMAP1510_FPGA_BASE + 0x16) | ||
83 | #define OMAP1510_FPGA_BOARD_REV IOMEM(OMAP1510_FPGA_BASE + 0x18) | ||
84 | #define INNOVATOR_FPGA_CAM_USB_CONTROL IOMEM(OMAP1510_FPGA_BASE + 0x20c) | ||
85 | #define OMAP1510P1_PPT_DATA IOMEM(OMAP1510_FPGA_BASE + 0x100) | ||
86 | #define OMAP1510P1_PPT_STATUS IOMEM(OMAP1510_FPGA_BASE + 0x101) | ||
87 | #define OMAP1510P1_PPT_CONTROL IOMEM(OMAP1510_FPGA_BASE + 0x102) | ||
88 | |||
89 | #define OMAP1510_FPGA_TOUCHSCREEN IOMEM(OMAP1510_FPGA_BASE + 0x204) | ||
90 | |||
91 | #define INNOVATOR_FPGA_INFO IOMEM(OMAP1510_FPGA_BASE + 0x205) | ||
92 | #define INNOVATOR_FPGA_LCD_BRIGHT_LO IOMEM(OMAP1510_FPGA_BASE + 0x206) | ||
93 | #define INNOVATOR_FPGA_LCD_BRIGHT_HI IOMEM(OMAP1510_FPGA_BASE + 0x207) | ||
94 | #define INNOVATOR_FPGA_LED_GRN_LO IOMEM(OMAP1510_FPGA_BASE + 0x208) | ||
95 | #define INNOVATOR_FPGA_LED_GRN_HI IOMEM(OMAP1510_FPGA_BASE + 0x209) | ||
96 | #define INNOVATOR_FPGA_LED_RED_LO IOMEM(OMAP1510_FPGA_BASE + 0x20a) | ||
97 | #define INNOVATOR_FPGA_LED_RED_HI IOMEM(OMAP1510_FPGA_BASE + 0x20b) | ||
98 | #define INNOVATOR_FPGA_EXP_CONTROL IOMEM(OMAP1510_FPGA_BASE + 0x20d) | ||
99 | #define INNOVATOR_FPGA_ISR2 IOMEM(OMAP1510_FPGA_BASE + 0x20e) | ||
100 | #define INNOVATOR_FPGA_IMR2 IOMEM(OMAP1510_FPGA_BASE + 0x210) | ||
101 | |||
102 | #define OMAP1510_FPGA_ETHR_START (OMAP1510_FPGA_START + 0x300) | ||
103 | |||
104 | /* | ||
105 | * Power up Giga UART driver, turn on HID clock. | ||
106 | * Turn off BT power, since we're not using it and it | ||
107 | * draws power. | ||
108 | */ | ||
109 | #define OMAP1510_FPGA_RESET_VALUE 0x42 | ||
110 | |||
111 | #define OMAP1510_FPGA_PCR_IF_PD0 (1 << 7) | ||
112 | #define OMAP1510_FPGA_PCR_COM2_EN (1 << 6) | ||
113 | #define OMAP1510_FPGA_PCR_COM1_EN (1 << 5) | ||
114 | #define OMAP1510_FPGA_PCR_EXP_PD0 (1 << 4) | ||
115 | #define OMAP1510_FPGA_PCR_EXP_PD1 (1 << 3) | ||
116 | #define OMAP1510_FPGA_PCR_48MHZ_CLK (1 << 2) | ||
117 | #define OMAP1510_FPGA_PCR_4MHZ_CLK (1 << 1) | ||
118 | #define OMAP1510_FPGA_PCR_RSRVD_BIT0 (1 << 0) | ||
119 | |||
120 | /* | ||
121 | * Innovator/OMAP1510 FPGA HID register bit definitions | ||
122 | */ | ||
123 | #define OMAP1510_FPGA_HID_SCLK (1<<0) /* output */ | ||
124 | #define OMAP1510_FPGA_HID_MOSI (1<<1) /* output */ | ||
125 | #define OMAP1510_FPGA_HID_nSS (1<<2) /* output 0/1 chip idle/select */ | ||
126 | #define OMAP1510_FPGA_HID_nHSUS (1<<3) /* output 0/1 host active/suspended */ | ||
127 | #define OMAP1510_FPGA_HID_MISO (1<<4) /* input */ | ||
128 | #define OMAP1510_FPGA_HID_ATN (1<<5) /* input 0/1 chip idle/ATN */ | ||
129 | #define OMAP1510_FPGA_HID_rsrvd (1<<6) | ||
130 | #define OMAP1510_FPGA_HID_RESETn (1<<7) /* output - 0/1 USAR reset/run */ | ||
131 | |||
132 | /* The FPGA IRQ is cascaded through GPIO_13 */ | ||
133 | #define OMAP1510_INT_FPGA (IH_GPIO_BASE + 13) | ||
134 | |||
135 | /* IRQ Numbers for interrupts muxed through the FPGA */ | ||
136 | #define OMAP1510_INT_FPGA_ATN (OMAP_FPGA_IRQ_BASE + 0) | ||
137 | #define OMAP1510_INT_FPGA_ACK (OMAP_FPGA_IRQ_BASE + 1) | ||
138 | #define OMAP1510_INT_FPGA2 (OMAP_FPGA_IRQ_BASE + 2) | ||
139 | #define OMAP1510_INT_FPGA3 (OMAP_FPGA_IRQ_BASE + 3) | ||
140 | #define OMAP1510_INT_FPGA4 (OMAP_FPGA_IRQ_BASE + 4) | ||
141 | #define OMAP1510_INT_FPGA5 (OMAP_FPGA_IRQ_BASE + 5) | ||
142 | #define OMAP1510_INT_FPGA6 (OMAP_FPGA_IRQ_BASE + 6) | ||
143 | #define OMAP1510_INT_FPGA7 (OMAP_FPGA_IRQ_BASE + 7) | ||
144 | #define OMAP1510_INT_FPGA8 (OMAP_FPGA_IRQ_BASE + 8) | ||
145 | #define OMAP1510_INT_FPGA9 (OMAP_FPGA_IRQ_BASE + 9) | ||
146 | #define OMAP1510_INT_FPGA10 (OMAP_FPGA_IRQ_BASE + 10) | ||
147 | #define OMAP1510_INT_FPGA11 (OMAP_FPGA_IRQ_BASE + 11) | ||
148 | #define OMAP1510_INT_FPGA12 (OMAP_FPGA_IRQ_BASE + 12) | ||
149 | #define OMAP1510_INT_ETHER (OMAP_FPGA_IRQ_BASE + 13) | ||
150 | #define OMAP1510_INT_FPGAUART1 (OMAP_FPGA_IRQ_BASE + 14) | ||
151 | #define OMAP1510_INT_FPGAUART2 (OMAP_FPGA_IRQ_BASE + 15) | ||
152 | #define OMAP1510_INT_FPGA_TS (OMAP_FPGA_IRQ_BASE + 16) | ||
153 | #define OMAP1510_INT_FPGA17 (OMAP_FPGA_IRQ_BASE + 17) | ||
154 | #define OMAP1510_INT_FPGA_CAM (OMAP_FPGA_IRQ_BASE + 18) | ||
155 | #define OMAP1510_INT_FPGA_RTC_A (OMAP_FPGA_IRQ_BASE + 19) | ||
156 | #define OMAP1510_INT_FPGA_RTC_B (OMAP_FPGA_IRQ_BASE + 20) | ||
157 | #define OMAP1510_INT_FPGA_CD (OMAP_FPGA_IRQ_BASE + 21) | ||
158 | #define OMAP1510_INT_FPGA22 (OMAP_FPGA_IRQ_BASE + 22) | ||
159 | #define OMAP1510_INT_FPGA23 (OMAP_FPGA_IRQ_BASE + 23) | ||
160 | |||
48 | #endif /* __ASM_ARCH_OMAP15XX_H */ | 161 | #endif /* __ASM_ARCH_OMAP15XX_H */ |
49 | 162 | ||
diff --git a/arch/arm/mach-omap1/serial.c b/arch/arm/mach-omap1/serial.c index b9d6834af835..d1ac08016f0b 100644 --- a/arch/arm/mach-omap1/serial.c +++ b/arch/arm/mach-omap1/serial.c | |||
@@ -23,7 +23,6 @@ | |||
23 | #include <asm/mach-types.h> | 23 | #include <asm/mach-types.h> |
24 | 24 | ||
25 | #include <mach/mux.h> | 25 | #include <mach/mux.h> |
26 | #include <plat/fpga.h> | ||
27 | 26 | ||
28 | #include "pm.h" | 27 | #include "pm.h" |
29 | 28 | ||