diff options
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/Makefile | 1 | ||||
| -rw-r--r-- | arch/arm/mach-omap2/Kconfig | 6 | ||||
| -rw-r--r-- | arch/arm/mach-omap2/Makefile | 3 | ||||
| -rw-r--r-- | arch/arm/mach-omap2/board-4430sdp.c | 94 | ||||
| -rw-r--r-- | arch/arm/plat-omap/Kconfig | 11 |
5 files changed, 111 insertions, 4 deletions
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index e84729bf13d4..676d10d028b5 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile | |||
| @@ -127,6 +127,7 @@ endif | |||
| 127 | machine-$(CONFIG_ARCH_OMAP1) := omap1 | 127 | machine-$(CONFIG_ARCH_OMAP1) := omap1 |
| 128 | machine-$(CONFIG_ARCH_OMAP2) := omap2 | 128 | machine-$(CONFIG_ARCH_OMAP2) := omap2 |
| 129 | machine-$(CONFIG_ARCH_OMAP3) := omap2 | 129 | machine-$(CONFIG_ARCH_OMAP3) := omap2 |
| 130 | machine-$(CONFIG_ARCH_OMAP4) := omap2 | ||
| 130 | plat-$(CONFIG_ARCH_OMAP) := omap | 131 | plat-$(CONFIG_ARCH_OMAP) := omap |
| 131 | machine-$(CONFIG_ARCH_S3C2410) := s3c2410 s3c2400 s3c2412 s3c2440 s3c2442 s3c2443 | 132 | machine-$(CONFIG_ARCH_S3C2410) := s3c2410 s3c2400 s3c2412 s3c2440 s3c2442 s3c2443 |
| 132 | machine-$(CONFIG_ARCH_S3C24A0) := s3c24a0 | 133 | machine-$(CONFIG_ARCH_S3C24A0) := s3c24a0 |
diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig index b5c9088a6a4e..a755eb5e2361 100644 --- a/arch/arm/mach-omap2/Kconfig +++ b/arch/arm/mach-omap2/Kconfig | |||
| @@ -25,7 +25,7 @@ config ARCH_OMAP3430 | |||
| 25 | select ARCH_OMAP_OTG | 25 | select ARCH_OMAP_OTG |
| 26 | 26 | ||
| 27 | comment "OMAP Board Type" | 27 | comment "OMAP Board Type" |
| 28 | depends on ARCH_OMAP2 || ARCH_OMAP3 | 28 | depends on ARCH_OMAP2 || ARCH_OMAP3 || ARCH_OMAP4 |
| 29 | 29 | ||
| 30 | config MACH_OMAP_GENERIC | 30 | config MACH_OMAP_GENERIC |
| 31 | bool "Generic OMAP board" | 31 | bool "Generic OMAP board" |
| @@ -75,3 +75,7 @@ config MACH_NOKIA_RX51 | |||
| 75 | config MACH_OMAP_ZOOM2 | 75 | config MACH_OMAP_ZOOM2 |
| 76 | bool "OMAP3 Zoom2 board" | 76 | bool "OMAP3 Zoom2 board" |
| 77 | depends on ARCH_OMAP3 && ARCH_OMAP34XX | 77 | depends on ARCH_OMAP3 && ARCH_OMAP34XX |
| 78 | |||
| 79 | config MACH_OMAP_4430SDP | ||
| 80 | bool "OMAP 4430 SDP board" | ||
| 81 | depends on ARCH_OMAP4 | ||
diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index 10e7c29ac1db..09fb3ad52497 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile | |||
| @@ -58,6 +58,9 @@ obj-$(CONFIG_MACH_NOKIA_RX51) += board-rx51.o \ | |||
| 58 | obj-$(CONFIG_MACH_OMAP_ZOOM2) += board-zoom2.o \ | 58 | obj-$(CONFIG_MACH_OMAP_ZOOM2) += board-zoom2.o \ |
| 59 | mmc-twl4030.o \ | 59 | mmc-twl4030.o \ |
| 60 | board-zoom-debugboard.o | 60 | board-zoom-debugboard.o |
| 61 | |||
| 62 | obj-$(CONFIG_MACH_OMAP_4430SDP) += board-4430sdp.o | ||
| 63 | |||
| 61 | # Platform specific device init code | 64 | # Platform specific device init code |
| 62 | ifeq ($(CONFIG_USB_MUSB_SOC),y) | 65 | ifeq ($(CONFIG_USB_MUSB_SOC),y) |
| 63 | obj-y += usb-musb.o | 66 | obj-y += usb-musb.o |
diff --git a/arch/arm/mach-omap2/board-4430sdp.c b/arch/arm/mach-omap2/board-4430sdp.c new file mode 100644 index 000000000000..57e477bd89c6 --- /dev/null +++ b/arch/arm/mach-omap2/board-4430sdp.c | |||
| @@ -0,0 +1,94 @@ | |||
| 1 | /* | ||
| 2 | * Board support file for OMAP4430 SDP. | ||
| 3 | * | ||
| 4 | * Copyright (C) 2009 Texas Instruments | ||
| 5 | * | ||
| 6 | * Author: Santosh Shilimkar <santosh.shilimkar@ti.com> | ||
| 7 | * | ||
| 8 | * Based on mach-omap2/board-3430sdp.c | ||
| 9 | * | ||
| 10 | * This program is free software; you can redistribute it and/or modify | ||
| 11 | * it under the terms of the GNU General Public License version 2 as | ||
| 12 | * published by the Free Software Foundation. | ||
| 13 | */ | ||
| 14 | |||
| 15 | #include <linux/kernel.h> | ||
| 16 | #include <linux/init.h> | ||
| 17 | #include <linux/platform_device.h> | ||
| 18 | #include <linux/io.h> | ||
| 19 | #include <linux/gpio.h> | ||
| 20 | |||
| 21 | #include <mach/hardware.h> | ||
| 22 | #include <asm/mach-types.h> | ||
| 23 | #include <asm/mach/arch.h> | ||
| 24 | #include <asm/mach/map.h> | ||
| 25 | |||
| 26 | #include <mach/board.h> | ||
| 27 | #include <mach/common.h> | ||
| 28 | #include <mach/control.h> | ||
| 29 | #include <mach/timer-gp.h> | ||
| 30 | #include <asm/hardware/gic.h> | ||
| 31 | |||
| 32 | static struct platform_device sdp4430_lcd_device = { | ||
| 33 | .name = "sdp4430_lcd", | ||
| 34 | .id = -1, | ||
| 35 | }; | ||
| 36 | |||
| 37 | static struct platform_device *sdp4430_devices[] __initdata = { | ||
| 38 | &sdp4430_lcd_device, | ||
| 39 | }; | ||
| 40 | |||
| 41 | static struct omap_uart_config sdp4430_uart_config __initdata = { | ||
| 42 | .enabled_uarts = (1 << 0) | (1 << 1) | (1 << 2), | ||
| 43 | }; | ||
| 44 | |||
| 45 | static struct omap_lcd_config sdp4430_lcd_config __initdata = { | ||
| 46 | .ctrl_name = "internal", | ||
| 47 | }; | ||
| 48 | |||
| 49 | static struct omap_board_config_kernel sdp4430_config[] __initdata = { | ||
| 50 | { OMAP_TAG_UART, &sdp4430_uart_config }, | ||
| 51 | { OMAP_TAG_LCD, &sdp4430_lcd_config }, | ||
| 52 | }; | ||
| 53 | |||
| 54 | static void __init gic_init_irq(void) | ||
| 55 | { | ||
| 56 | gic_dist_init(0, IO_ADDRESS(OMAP44XX_GIC_DIST_BASE), 29); | ||
| 57 | gic_cpu_init(0, IO_ADDRESS(OMAP44XX_GIC_CPU_BASE)); | ||
| 58 | } | ||
| 59 | |||
| 60 | static void __init omap_4430sdp_init_irq(void) | ||
| 61 | { | ||
| 62 | omap2_init_common_hw(NULL); | ||
| 63 | #ifdef CONFIG_OMAP_32K_TIMER | ||
| 64 | omap2_gp_clockevent_set_gptimer(1); | ||
| 65 | #endif | ||
| 66 | gic_init_irq(); | ||
| 67 | omap_gpio_init(); | ||
| 68 | } | ||
| 69 | |||
| 70 | |||
| 71 | static void __init omap_4430sdp_init(void) | ||
| 72 | { | ||
| 73 | platform_add_devices(sdp4430_devices, ARRAY_SIZE(sdp4430_devices)); | ||
| 74 | omap_board_config = sdp4430_config; | ||
| 75 | omap_board_config_size = ARRAY_SIZE(sdp4430_config); | ||
| 76 | omap_serial_init(); | ||
| 77 | } | ||
| 78 | |||
| 79 | static void __init omap_4430sdp_map_io(void) | ||
| 80 | { | ||
| 81 | omap2_set_globals_443x(); | ||
| 82 | omap2_map_common_io(); | ||
| 83 | } | ||
| 84 | |||
| 85 | MACHINE_START(OMAP_4430SDP, "OMAP4430 4430SDP board") | ||
| 86 | /* Maintainer: Santosh Shilimkar - Texas Instruments Inc */ | ||
| 87 | .phys_io = 0x48000000, | ||
| 88 | .io_pg_offst = ((0xd8000000) >> 18) & 0xfffc, | ||
| 89 | .boot_params = 0x80000100, | ||
| 90 | .map_io = omap_4430sdp_map_io, | ||
| 91 | .init_irq = omap_4430sdp_init_irq, | ||
| 92 | .init_machine = omap_4430sdp_init, | ||
| 93 | .timer = &omap_timer, | ||
| 94 | MACHINE_END | ||
diff --git a/arch/arm/plat-omap/Kconfig b/arch/arm/plat-omap/Kconfig index 9dd68fafb374..89499e67b67c 100644 --- a/arch/arm/plat-omap/Kconfig +++ b/arch/arm/plat-omap/Kconfig | |||
| @@ -23,6 +23,11 @@ config ARCH_OMAP3 | |||
| 23 | select CPU_V7 | 23 | select CPU_V7 |
| 24 | select COMMON_CLKDEV | 24 | select COMMON_CLKDEV |
| 25 | 25 | ||
| 26 | config ARCH_OMAP4 | ||
| 27 | bool "TI OMAP4" | ||
| 28 | select CPU_V7 | ||
| 29 | select ARM_GIC | ||
| 30 | |||
| 26 | endchoice | 31 | endchoice |
| 27 | 32 | ||
| 28 | comment "OMAP Feature Selections" | 33 | comment "OMAP Feature Selections" |
| @@ -128,13 +133,13 @@ config OMAP_MPU_TIMER | |||
| 128 | 133 | ||
| 129 | config OMAP_32K_TIMER | 134 | config OMAP_32K_TIMER |
| 130 | bool "Use 32KHz timer" | 135 | bool "Use 32KHz timer" |
| 131 | depends on ARCH_OMAP16XX || ARCH_OMAP24XX || ARCH_OMAP34XX | 136 | depends on ARCH_OMAP16XX || ARCH_OMAP24XX || ARCH_OMAP34XX || ARCH_OMAP4 |
| 132 | help | 137 | help |
| 133 | Select this option if you want to enable the OMAP 32KHz timer. | 138 | Select this option if you want to enable the OMAP 32KHz timer. |
| 134 | This timer saves power compared to the OMAP_MPU_TIMER, and has | 139 | This timer saves power compared to the OMAP_MPU_TIMER, and has |
| 135 | support for no tick during idle. The 32KHz timer provides less | 140 | support for no tick during idle. The 32KHz timer provides less |
| 136 | intra-tick resolution than OMAP_MPU_TIMER. The 32KHz timer is | 141 | intra-tick resolution than OMAP_MPU_TIMER. The 32KHz timer is |
| 137 | currently only available for OMAP16XX, 24XX and 34XX. | 142 | currently only available for OMAP16XX, 24XX, 34XX and OMAP4. |
| 138 | 143 | ||
| 139 | endchoice | 144 | endchoice |
| 140 | 145 | ||
| @@ -149,7 +154,7 @@ config OMAP_32K_TIMER_HZ | |||
| 149 | 154 | ||
| 150 | config OMAP_DM_TIMER | 155 | config OMAP_DM_TIMER |
| 151 | bool "Use dual-mode timer" | 156 | bool "Use dual-mode timer" |
| 152 | depends on ARCH_OMAP16XX || ARCH_OMAP24XX || ARCH_OMAP34XX | 157 | depends on ARCH_OMAP16XX || ARCH_OMAP24XX || ARCH_OMAP34XX || ARCH_OMAP4 |
| 153 | help | 158 | help |
| 154 | Select this option if you want to use OMAP Dual-Mode timers. | 159 | Select this option if you want to use OMAP Dual-Mode timers. |
| 155 | 160 | ||
