diff options
Diffstat (limited to 'arch/arm')
284 files changed, 7578 insertions, 7032 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index ade7e924bef5..041cf0774776 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
| @@ -937,7 +937,6 @@ config ARCH_OMAP | |||
| 937 | select CLKSRC_MMIO | 937 | select CLKSRC_MMIO |
| 938 | select GENERIC_CLOCKEVENTS | 938 | select GENERIC_CLOCKEVENTS |
| 939 | select HAVE_CLK | 939 | select HAVE_CLK |
| 940 | select NEED_MACH_GPIO_H | ||
| 941 | help | 940 | help |
| 942 | Support for TI's OMAP platform (OMAP1/2/3/4). | 941 | Support for TI's OMAP platform (OMAP1/2/3/4). |
| 943 | 942 | ||
diff --git a/arch/arm/mach-omap1/Makefile b/arch/arm/mach-omap1/Makefile index cd169c386161..f0e69cbc5baa 100644 --- a/arch/arm/mach-omap1/Makefile +++ b/arch/arm/mach-omap1/Makefile | |||
| @@ -3,7 +3,8 @@ | |||
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | # Common support | 5 | # Common support |
| 6 | obj-y := io.o id.o sram.o time.o irq.o mux.o flash.o serial.o devices.o dma.o | 6 | obj-y := io.o id.o sram-init.o sram.o time.o irq.o mux.o flash.o \ |
| 7 | serial.o devices.o dma.o | ||
| 7 | obj-y += clock.o clock_data.o opp_data.o reset.o pm_bus.o timer.o | 8 | obj-y += clock.o clock_data.o opp_data.o reset.o pm_bus.o timer.o |
| 8 | 9 | ||
| 9 | ifneq ($(CONFIG_SND_OMAP_SOC_MCBSP),) | 10 | ifneq ($(CONFIG_SND_OMAP_SOC_MCBSP),) |
diff --git a/arch/arm/mach-omap1/board-ams-delta.c b/arch/arm/mach-omap1/board-ams-delta.c index e255164ff087..a8fce3ccc707 100644 --- a/arch/arm/mach-omap1/board-ams-delta.c +++ b/arch/arm/mach-omap1/board-ams-delta.c | |||
| @@ -625,7 +625,6 @@ MACHINE_START(AMS_DELTA, "Amstrad E3 (Delta)") | |||
| 625 | .atag_offset = 0x100, | 625 | .atag_offset = 0x100, |
| 626 | .map_io = ams_delta_map_io, | 626 | .map_io = ams_delta_map_io, |
| 627 | .init_early = omap1_init_early, | 627 | .init_early = omap1_init_early, |
| 628 | .reserve = omap_reserve, | ||
| 629 | .init_irq = omap1_init_irq, | 628 | .init_irq = omap1_init_irq, |
| 630 | .init_machine = ams_delta_init, | 629 | .init_machine = ams_delta_init, |
| 631 | .init_late = ams_delta_init_late, | 630 | .init_late = ams_delta_init_late, |
diff --git a/arch/arm/mach-omap1/board-fsample.c b/arch/arm/mach-omap1/board-fsample.c index 4b6de70c47a6..e067f221f0f9 100644 --- a/arch/arm/mach-omap1/board-fsample.c +++ b/arch/arm/mach-omap1/board-fsample.c | |||
| @@ -27,16 +27,16 @@ | |||
| 27 | #include <asm/mach/arch.h> | 27 | #include <asm/mach/arch.h> |
| 28 | #include <asm/mach/map.h> | 28 | #include <asm/mach/map.h> |
| 29 | 29 | ||
| 30 | #include <plat/tc.h> | 30 | #include <mach/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> | ||
| 34 | #include <linux/platform_data/keypad-omap.h> | 33 | #include <linux/platform_data/keypad-omap.h> |
| 35 | 34 | ||
| 36 | #include <mach/hardware.h> | 35 | #include <mach/hardware.h> |
| 37 | 36 | ||
| 38 | #include "iomap.h" | 37 | #include "iomap.h" |
| 39 | #include "common.h" | 38 | #include "common.h" |
| 39 | #include "fpga.h" | ||
| 40 | 40 | ||
| 41 | /* fsample is pretty close to p2-sample */ | 41 | /* fsample is pretty close to p2-sample */ |
| 42 | 42 | ||
| @@ -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 | } |
| @@ -362,7 +362,6 @@ MACHINE_START(OMAP_FSAMPLE, "OMAP730 F-Sample") | |||
| 362 | .atag_offset = 0x100, | 362 | .atag_offset = 0x100, |
| 363 | .map_io = omap_fsample_map_io, | 363 | .map_io = omap_fsample_map_io, |
| 364 | .init_early = omap1_init_early, | 364 | .init_early = omap1_init_early, |
| 365 | .reserve = omap_reserve, | ||
| 366 | .init_irq = omap1_init_irq, | 365 | .init_irq = omap1_init_irq, |
| 367 | .init_machine = omap_fsample_init, | 366 | .init_machine = omap_fsample_init, |
| 368 | .init_late = omap1_init_late, | 367 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/board-generic.c b/arch/arm/mach-omap1/board-generic.c index 4ec579fdd366..608e7d2a2778 100644 --- a/arch/arm/mach-omap1/board-generic.c +++ b/arch/arm/mach-omap1/board-generic.c | |||
| @@ -81,7 +81,6 @@ MACHINE_START(OMAP_GENERIC, "Generic OMAP1510/1610/1710") | |||
| 81 | .atag_offset = 0x100, | 81 | .atag_offset = 0x100, |
| 82 | .map_io = omap16xx_map_io, | 82 | .map_io = omap16xx_map_io, |
| 83 | .init_early = omap1_init_early, | 83 | .init_early = omap1_init_early, |
| 84 | .reserve = omap_reserve, | ||
| 85 | .init_irq = omap1_init_irq, | 84 | .init_irq = omap1_init_irq, |
| 86 | .init_machine = omap_generic_init, | 85 | .init_machine = omap_generic_init, |
| 87 | .init_late = omap1_init_late, | 86 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/board-h2-mmc.c b/arch/arm/mach-omap1/board-h2-mmc.c index e1362ce48497..7119ef28e0ad 100644 --- a/arch/arm/mach-omap1/board-h2-mmc.c +++ b/arch/arm/mach-omap1/board-h2-mmc.c | |||
| @@ -13,12 +13,11 @@ | |||
| 13 | */ | 13 | */ |
| 14 | #include <linux/gpio.h> | 14 | #include <linux/gpio.h> |
| 15 | #include <linux/platform_device.h> | 15 | #include <linux/platform_device.h> |
| 16 | 16 | #include <linux/platform_data/gpio-omap.h> | |
| 17 | #include <linux/i2c/tps65010.h> | 17 | #include <linux/i2c/tps65010.h> |
| 18 | 18 | ||
| 19 | #include <plat/mmc.h> | ||
| 20 | |||
| 21 | #include "board-h2.h" | 19 | #include "board-h2.h" |
| 20 | #include "mmc.h" | ||
| 22 | 21 | ||
| 23 | #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) | 22 | #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) |
| 24 | 23 | ||
diff --git a/arch/arm/mach-omap1/board-h2.c b/arch/arm/mach-omap1/board-h2.c index 376f7f29ef77..9134b646f01b 100644 --- a/arch/arm/mach-omap1/board-h2.c +++ b/arch/arm/mach-omap1/board-h2.c | |||
| @@ -39,8 +39,8 @@ | |||
| 39 | #include <asm/mach/map.h> | 39 | #include <asm/mach/map.h> |
| 40 | 40 | ||
| 41 | #include <mach/mux.h> | 41 | #include <mach/mux.h> |
| 42 | #include <plat/dma.h> | 42 | #include <plat-omap/dma-omap.h> |
| 43 | #include <plat/tc.h> | 43 | #include <mach/tc.h> |
| 44 | #include <mach/irda.h> | 44 | #include <mach/irda.h> |
| 45 | #include <linux/platform_data/keypad-omap.h> | 45 | #include <linux/platform_data/keypad-omap.h> |
| 46 | #include <mach/flash.h> | 46 | #include <mach/flash.h> |
| @@ -50,6 +50,7 @@ | |||
| 50 | 50 | ||
| 51 | #include "common.h" | 51 | #include "common.h" |
| 52 | #include "board-h2.h" | 52 | #include "board-h2.h" |
| 53 | #include "dma.h" | ||
| 53 | 54 | ||
| 54 | /* At OMAP1610 Innovator the Ethernet is directly connected to CS1 */ | 55 | /* At OMAP1610 Innovator the Ethernet is directly connected to CS1 */ |
| 55 | #define OMAP1610_ETHR_START 0x04000300 | 56 | #define OMAP1610_ETHR_START 0x04000300 |
| @@ -458,7 +459,6 @@ MACHINE_START(OMAP_H2, "TI-H2") | |||
| 458 | .atag_offset = 0x100, | 459 | .atag_offset = 0x100, |
| 459 | .map_io = omap16xx_map_io, | 460 | .map_io = omap16xx_map_io, |
| 460 | .init_early = omap1_init_early, | 461 | .init_early = omap1_init_early, |
| 461 | .reserve = omap_reserve, | ||
| 462 | .init_irq = omap1_init_irq, | 462 | .init_irq = omap1_init_irq, |
| 463 | .init_machine = h2_init, | 463 | .init_machine = h2_init, |
| 464 | .init_late = omap1_init_late, | 464 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/board-h3-mmc.c b/arch/arm/mach-omap1/board-h3-mmc.c index c74daace8cd6..17d77914d769 100644 --- a/arch/arm/mach-omap1/board-h3-mmc.c +++ b/arch/arm/mach-omap1/board-h3-mmc.c | |||
| @@ -16,9 +16,8 @@ | |||
| 16 | 16 | ||
| 17 | #include <linux/i2c/tps65010.h> | 17 | #include <linux/i2c/tps65010.h> |
| 18 | 18 | ||
| 19 | #include <plat/mmc.h> | ||
| 20 | |||
| 21 | #include "board-h3.h" | 19 | #include "board-h3.h" |
| 20 | #include "mmc.h" | ||
| 22 | 21 | ||
| 23 | #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) | 22 | #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) |
| 24 | 23 | ||
diff --git a/arch/arm/mach-omap1/board-h3.c b/arch/arm/mach-omap1/board-h3.c index ededdb7ef28c..bf213d1d8075 100644 --- a/arch/arm/mach-omap1/board-h3.c +++ b/arch/arm/mach-omap1/board-h3.c | |||
| @@ -41,9 +41,9 @@ | |||
| 41 | #include <asm/mach/map.h> | 41 | #include <asm/mach/map.h> |
| 42 | 42 | ||
| 43 | #include <mach/mux.h> | 43 | #include <mach/mux.h> |
| 44 | #include <plat/tc.h> | 44 | #include <mach/tc.h> |
| 45 | #include <linux/platform_data/keypad-omap.h> | 45 | #include <linux/platform_data/keypad-omap.h> |
| 46 | #include <plat/dma.h> | 46 | #include <plat-omap/dma-omap.h> |
| 47 | #include <mach/flash.h> | 47 | #include <mach/flash.h> |
| 48 | 48 | ||
| 49 | #include <mach/hardware.h> | 49 | #include <mach/hardware.h> |
| @@ -452,7 +452,6 @@ MACHINE_START(OMAP_H3, "TI OMAP1710 H3 board") | |||
| 452 | .atag_offset = 0x100, | 452 | .atag_offset = 0x100, |
| 453 | .map_io = omap16xx_map_io, | 453 | .map_io = omap16xx_map_io, |
| 454 | .init_early = omap1_init_early, | 454 | .init_early = omap1_init_early, |
| 455 | .reserve = omap_reserve, | ||
| 456 | .init_irq = omap1_init_irq, | 455 | .init_irq = omap1_init_irq, |
| 457 | .init_machine = h3_init, | 456 | .init_machine = h3_init, |
| 458 | .init_late = omap1_init_late, | 457 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/board-htcherald.c b/arch/arm/mach-omap1/board-htcherald.c index 87ab2086ef96..356f816c84a6 100644 --- a/arch/arm/mach-omap1/board-htcherald.c +++ b/arch/arm/mach-omap1/board-htcherald.c | |||
| @@ -43,7 +43,7 @@ | |||
| 43 | #include <asm/mach/arch.h> | 43 | #include <asm/mach/arch.h> |
| 44 | 44 | ||
| 45 | #include <mach/omap7xx.h> | 45 | #include <mach/omap7xx.h> |
| 46 | #include <plat/mmc.h> | 46 | #include "mmc.h" |
| 47 | 47 | ||
| 48 | #include <mach/irqs.h> | 48 | #include <mach/irqs.h> |
| 49 | #include <mach/usb.h> | 49 | #include <mach/usb.h> |
| @@ -600,7 +600,6 @@ MACHINE_START(HERALD, "HTC Herald") | |||
| 600 | .atag_offset = 0x100, | 600 | .atag_offset = 0x100, |
| 601 | .map_io = htcherald_map_io, | 601 | .map_io = htcherald_map_io, |
| 602 | .init_early = omap1_init_early, | 602 | .init_early = omap1_init_early, |
| 603 | .reserve = omap_reserve, | ||
| 604 | .init_irq = omap1_init_irq, | 603 | .init_irq = omap1_init_irq, |
| 605 | .init_machine = htcherald_init, | 604 | .init_machine = htcherald_init, |
| 606 | .init_late = omap1_init_late, | 605 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/board-innovator.c b/arch/arm/mach-omap1/board-innovator.c index db5f7d2976e7..f8033fab0f82 100644 --- a/arch/arm/mach-omap1/board-innovator.c +++ b/arch/arm/mach-omap1/board-innovator.c | |||
| @@ -33,16 +33,15 @@ | |||
| 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 <mach/tc.h> |
| 37 | #include <plat/tc.h> | ||
| 38 | #include <linux/platform_data/keypad-omap.h> | 37 | #include <linux/platform_data/keypad-omap.h> |
| 39 | #include <plat/mmc.h> | ||
| 40 | 38 | ||
| 41 | #include <mach/hardware.h> | 39 | #include <mach/hardware.h> |
| 42 | #include <mach/usb.h> | 40 | #include <mach/usb.h> |
| 43 | 41 | ||
| 44 | #include "iomap.h" | 42 | #include "iomap.h" |
| 45 | #include "common.h" | 43 | #include "common.h" |
| 44 | #include "mmc.h" | ||
| 46 | 45 | ||
| 47 | /* At OMAP1610 Innovator the Ethernet is directly connected to CS1 */ | 46 | /* At OMAP1610 Innovator the Ethernet is directly connected to CS1 */ |
| 48 | #define INNOVATOR1610_ETHR_START 0x04000300 | 47 | #define INNOVATOR1610_ETHR_START 0x04000300 |
| @@ -215,7 +214,7 @@ static struct platform_device *innovator1510_devices[] __initdata = { | |||
| 215 | 214 | ||
| 216 | static int innovator_get_pendown_state(void) | 215 | static int innovator_get_pendown_state(void) |
| 217 | { | 216 | { |
| 218 | return !(fpga_read(OMAP1510_FPGA_TOUCHSCREEN) & (1 << 5)); | 217 | return !(__raw_readb(OMAP1510_FPGA_TOUCHSCREEN) & (1 << 5)); |
| 219 | } | 218 | } |
| 220 | 219 | ||
| 221 | static const struct ads7846_platform_data innovator1510_ts_info = { | 220 | static const struct ads7846_platform_data innovator1510_ts_info = { |
| @@ -279,7 +278,7 @@ static struct platform_device *innovator1610_devices[] __initdata = { | |||
| 279 | static void __init innovator_init_smc91x(void) | 278 | static void __init innovator_init_smc91x(void) |
| 280 | { | 279 | { |
| 281 | if (cpu_is_omap1510()) { | 280 | if (cpu_is_omap1510()) { |
| 282 | fpga_write(fpga_read(OMAP1510_FPGA_RST) & ~1, | 281 | __raw_writeb(__raw_readb(OMAP1510_FPGA_RST) & ~1, |
| 283 | OMAP1510_FPGA_RST); | 282 | OMAP1510_FPGA_RST); |
| 284 | udelay(750); | 283 | udelay(750); |
| 285 | } else { | 284 | } else { |
| @@ -335,10 +334,10 @@ static int mmc_set_power(struct device *dev, int slot, int power_on, | |||
| 335 | int vdd) | 334 | int vdd) |
| 336 | { | 335 | { |
| 337 | if (power_on) | 336 | if (power_on) |
| 338 | fpga_write(fpga_read(OMAP1510_FPGA_POWER) | (1 << 3), | 337 | __raw_writeb(__raw_readb(OMAP1510_FPGA_POWER) | (1 << 3), |
| 339 | OMAP1510_FPGA_POWER); | 338 | OMAP1510_FPGA_POWER); |
| 340 | else | 339 | else |
| 341 | fpga_write(fpga_read(OMAP1510_FPGA_POWER) & ~(1 << 3), | 340 | __raw_writeb(__raw_readb(OMAP1510_FPGA_POWER) & ~(1 << 3), |
| 342 | OMAP1510_FPGA_POWER); | 341 | OMAP1510_FPGA_POWER); |
| 343 | 342 | ||
| 344 | return 0; | 343 | return 0; |
| @@ -390,14 +389,14 @@ static void __init innovator_init(void) | |||
| 390 | omap_cfg_reg(UART3_TX); | 389 | omap_cfg_reg(UART3_TX); |
| 391 | omap_cfg_reg(UART3_RX); | 390 | omap_cfg_reg(UART3_RX); |
| 392 | 391 | ||
| 393 | reg = fpga_read(OMAP1510_FPGA_POWER); | 392 | reg = __raw_readb(OMAP1510_FPGA_POWER); |
| 394 | reg |= OMAP1510_FPGA_PCR_COM1_EN; | 393 | reg |= OMAP1510_FPGA_PCR_COM1_EN; |
| 395 | fpga_write(reg, OMAP1510_FPGA_POWER); | 394 | __raw_writeb(reg, OMAP1510_FPGA_POWER); |
| 396 | udelay(10); | 395 | udelay(10); |
| 397 | 396 | ||
| 398 | reg = fpga_read(OMAP1510_FPGA_POWER); | 397 | reg = __raw_readb(OMAP1510_FPGA_POWER); |
| 399 | reg |= OMAP1510_FPGA_PCR_COM2_EN; | 398 | reg |= OMAP1510_FPGA_PCR_COM2_EN; |
| 400 | fpga_write(reg, OMAP1510_FPGA_POWER); | 399 | __raw_writeb(reg, OMAP1510_FPGA_POWER); |
| 401 | udelay(10); | 400 | udelay(10); |
| 402 | 401 | ||
| 403 | platform_add_devices(innovator1510_devices, ARRAY_SIZE(innovator1510_devices)); | 402 | platform_add_devices(innovator1510_devices, ARRAY_SIZE(innovator1510_devices)); |
| @@ -437,6 +436,7 @@ static void __init innovator_init(void) | |||
| 437 | */ | 436 | */ |
| 438 | static void __init innovator_map_io(void) | 437 | static void __init innovator_map_io(void) |
| 439 | { | 438 | { |
| 439 | #ifdef CONFIG_ARCH_OMAP15XX | ||
| 440 | omap15xx_map_io(); | 440 | omap15xx_map_io(); |
| 441 | 441 | ||
| 442 | iotable_init(innovator1510_io_desc, ARRAY_SIZE(innovator1510_io_desc)); | 442 | iotable_init(innovator1510_io_desc, ARRAY_SIZE(innovator1510_io_desc)); |
| @@ -444,9 +444,10 @@ static void __init innovator_map_io(void) | |||
| 444 | 444 | ||
| 445 | /* Dump the Innovator FPGA rev early - useful info for support. */ | 445 | /* Dump the Innovator FPGA rev early - useful info for support. */ |
| 446 | pr_debug("Innovator FPGA Rev %d.%d Board Rev %d\n", | 446 | pr_debug("Innovator FPGA Rev %d.%d Board Rev %d\n", |
| 447 | fpga_read(OMAP1510_FPGA_REV_HIGH), | 447 | __raw_readb(OMAP1510_FPGA_REV_HIGH), |
| 448 | fpga_read(OMAP1510_FPGA_REV_LOW), | 448 | __raw_readb(OMAP1510_FPGA_REV_LOW), |
| 449 | fpga_read(OMAP1510_FPGA_BOARD_REV)); | 449 | __raw_readb(OMAP1510_FPGA_BOARD_REV)); |
| 450 | #endif | ||
| 450 | } | 451 | } |
| 451 | 452 | ||
| 452 | MACHINE_START(OMAP_INNOVATOR, "TI-Innovator") | 453 | MACHINE_START(OMAP_INNOVATOR, "TI-Innovator") |
| @@ -454,7 +455,6 @@ MACHINE_START(OMAP_INNOVATOR, "TI-Innovator") | |||
| 454 | .atag_offset = 0x100, | 455 | .atag_offset = 0x100, |
| 455 | .map_io = innovator_map_io, | 456 | .map_io = innovator_map_io, |
| 456 | .init_early = omap1_init_early, | 457 | .init_early = omap1_init_early, |
| 457 | .reserve = omap_reserve, | ||
| 458 | .init_irq = omap1_init_irq, | 458 | .init_irq = omap1_init_irq, |
| 459 | .init_machine = innovator_init, | 459 | .init_machine = innovator_init, |
| 460 | .init_late = omap1_init_late, | 460 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/board-nokia770.c b/arch/arm/mach-omap1/board-nokia770.c index 7d5c06d6a52a..3e8ead67e459 100644 --- a/arch/arm/mach-omap1/board-nokia770.c +++ b/arch/arm/mach-omap1/board-nokia770.c | |||
| @@ -29,13 +29,13 @@ | |||
| 29 | #include <asm/mach/map.h> | 29 | #include <asm/mach/map.h> |
| 30 | 30 | ||
| 31 | #include <mach/mux.h> | 31 | #include <mach/mux.h> |
| 32 | #include <plat/mmc.h> | ||
| 33 | #include <plat/clock.h> | ||
| 34 | 32 | ||
| 35 | #include <mach/hardware.h> | 33 | #include <mach/hardware.h> |
| 36 | #include <mach/usb.h> | 34 | #include <mach/usb.h> |
| 37 | 35 | ||
| 38 | #include "common.h" | 36 | #include "common.h" |
| 37 | #include "clock.h" | ||
| 38 | #include "mmc.h" | ||
| 39 | 39 | ||
| 40 | #define ADS7846_PENDOWN_GPIO 15 | 40 | #define ADS7846_PENDOWN_GPIO 15 |
| 41 | 41 | ||
| @@ -251,7 +251,6 @@ MACHINE_START(NOKIA770, "Nokia 770") | |||
| 251 | .atag_offset = 0x100, | 251 | .atag_offset = 0x100, |
| 252 | .map_io = omap16xx_map_io, | 252 | .map_io = omap16xx_map_io, |
| 253 | .init_early = omap1_init_early, | 253 | .init_early = omap1_init_early, |
| 254 | .reserve = omap_reserve, | ||
| 255 | .init_irq = omap1_init_irq, | 254 | .init_irq = omap1_init_irq, |
| 256 | .init_machine = omap_nokia770_init, | 255 | .init_machine = omap_nokia770_init, |
| 257 | .init_late = omap1_init_late, | 256 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/board-osk.c b/arch/arm/mach-omap1/board-osk.c index 5973945a8741..872ea47cd28a 100644 --- a/arch/arm/mach-omap1/board-osk.c +++ b/arch/arm/mach-omap1/board-osk.c | |||
| @@ -48,7 +48,7 @@ | |||
| 48 | 48 | ||
| 49 | #include <mach/flash.h> | 49 | #include <mach/flash.h> |
| 50 | #include <mach/mux.h> | 50 | #include <mach/mux.h> |
| 51 | #include <plat/tc.h> | 51 | #include <mach/tc.h> |
| 52 | 52 | ||
| 53 | #include <mach/hardware.h> | 53 | #include <mach/hardware.h> |
| 54 | #include <mach/usb.h> | 54 | #include <mach/usb.h> |
| @@ -606,7 +606,6 @@ MACHINE_START(OMAP_OSK, "TI-OSK") | |||
| 606 | .atag_offset = 0x100, | 606 | .atag_offset = 0x100, |
| 607 | .map_io = omap16xx_map_io, | 607 | .map_io = omap16xx_map_io, |
| 608 | .init_early = omap1_init_early, | 608 | .init_early = omap1_init_early, |
| 609 | .reserve = omap_reserve, | ||
| 610 | .init_irq = omap1_init_irq, | 609 | .init_irq = omap1_init_irq, |
| 611 | .init_machine = osk_init, | 610 | .init_machine = osk_init, |
| 612 | .init_late = omap1_init_late, | 611 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/board-palmte.c b/arch/arm/mach-omap1/board-palmte.c index 1c578d58923a..584b6fab894b 100644 --- a/arch/arm/mach-omap1/board-palmte.c +++ b/arch/arm/mach-omap1/board-palmte.c | |||
| @@ -36,8 +36,8 @@ | |||
| 36 | 36 | ||
| 37 | #include <mach/flash.h> | 37 | #include <mach/flash.h> |
| 38 | #include <mach/mux.h> | 38 | #include <mach/mux.h> |
| 39 | #include <plat/tc.h> | 39 | #include <mach/tc.h> |
| 40 | #include <plat/dma.h> | 40 | #include <plat-omap/dma-omap.h> |
| 41 | #include <mach/irda.h> | 41 | #include <mach/irda.h> |
| 42 | #include <linux/platform_data/keypad-omap.h> | 42 | #include <linux/platform_data/keypad-omap.h> |
| 43 | 43 | ||
| @@ -45,6 +45,7 @@ | |||
| 45 | #include <mach/usb.h> | 45 | #include <mach/usb.h> |
| 46 | 46 | ||
| 47 | #include "common.h" | 47 | #include "common.h" |
| 48 | #include "dma.h" | ||
| 48 | 49 | ||
| 49 | #define PALMTE_USBDETECT_GPIO 0 | 50 | #define PALMTE_USBDETECT_GPIO 0 |
| 50 | #define PALMTE_USB_OR_DC_GPIO 1 | 51 | #define PALMTE_USB_OR_DC_GPIO 1 |
| @@ -264,7 +265,6 @@ MACHINE_START(OMAP_PALMTE, "OMAP310 based Palm Tungsten E") | |||
| 264 | .atag_offset = 0x100, | 265 | .atag_offset = 0x100, |
| 265 | .map_io = omap15xx_map_io, | 266 | .map_io = omap15xx_map_io, |
| 266 | .init_early = omap1_init_early, | 267 | .init_early = omap1_init_early, |
| 267 | .reserve = omap_reserve, | ||
| 268 | .init_irq = omap1_init_irq, | 268 | .init_irq = omap1_init_irq, |
| 269 | .init_machine = omap_palmte_init, | 269 | .init_machine = omap_palmte_init, |
| 270 | .init_late = omap1_init_late, | 270 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/board-palmtt.c b/arch/arm/mach-omap1/board-palmtt.c index 97158095083c..fbc986bfe69e 100644 --- a/arch/arm/mach-omap1/board-palmtt.c +++ b/arch/arm/mach-omap1/board-palmtt.c | |||
| @@ -28,16 +28,16 @@ | |||
| 28 | #include <linux/spi/spi.h> | 28 | #include <linux/spi/spi.h> |
| 29 | #include <linux/spi/ads7846.h> | 29 | #include <linux/spi/ads7846.h> |
| 30 | #include <linux/platform_data/omap1_bl.h> | 30 | #include <linux/platform_data/omap1_bl.h> |
| 31 | #include <linux/platform_data/leds-omap.h> | ||
| 31 | 32 | ||
| 32 | #include <asm/mach-types.h> | 33 | #include <asm/mach-types.h> |
| 33 | #include <asm/mach/arch.h> | 34 | #include <asm/mach/arch.h> |
| 34 | #include <asm/mach/map.h> | 35 | #include <asm/mach/map.h> |
| 35 | 36 | ||
| 36 | #include <plat/led.h> | ||
| 37 | #include <mach/flash.h> | 37 | #include <mach/flash.h> |
| 38 | #include <mach/mux.h> | 38 | #include <mach/mux.h> |
| 39 | #include <plat/dma.h> | 39 | #include <plat-omap/dma-omap.h> |
| 40 | #include <plat/tc.h> | 40 | #include <mach/tc.h> |
| 41 | #include <mach/irda.h> | 41 | #include <mach/irda.h> |
| 42 | #include <linux/platform_data/keypad-omap.h> | 42 | #include <linux/platform_data/keypad-omap.h> |
| 43 | 43 | ||
| @@ -45,6 +45,7 @@ | |||
| 45 | #include <mach/usb.h> | 45 | #include <mach/usb.h> |
| 46 | 46 | ||
| 47 | #include "common.h" | 47 | #include "common.h" |
| 48 | #include "dma.h" | ||
| 48 | 49 | ||
| 49 | #define PALMTT_USBDETECT_GPIO 0 | 50 | #define PALMTT_USBDETECT_GPIO 0 |
| 50 | #define PALMTT_CABLE_GPIO 1 | 51 | #define PALMTT_CABLE_GPIO 1 |
| @@ -310,7 +311,6 @@ MACHINE_START(OMAP_PALMTT, "OMAP1510 based Palm Tungsten|T") | |||
| 310 | .atag_offset = 0x100, | 311 | .atag_offset = 0x100, |
| 311 | .map_io = omap15xx_map_io, | 312 | .map_io = omap15xx_map_io, |
| 312 | .init_early = omap1_init_early, | 313 | .init_early = omap1_init_early, |
| 313 | .reserve = omap_reserve, | ||
| 314 | .init_irq = omap1_init_irq, | 314 | .init_irq = omap1_init_irq, |
| 315 | .init_machine = omap_palmtt_init, | 315 | .init_machine = omap_palmtt_init, |
| 316 | .init_late = omap1_init_late, | 316 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/board-palmz71.c b/arch/arm/mach-omap1/board-palmz71.c index e311032e7eeb..60d917a93763 100644 --- a/arch/arm/mach-omap1/board-palmz71.c +++ b/arch/arm/mach-omap1/board-palmz71.c | |||
| @@ -38,8 +38,8 @@ | |||
| 38 | 38 | ||
| 39 | #include <mach/flash.h> | 39 | #include <mach/flash.h> |
| 40 | #include <mach/mux.h> | 40 | #include <mach/mux.h> |
| 41 | #include <plat/dma.h> | 41 | #include <plat-omap/dma-omap.h> |
| 42 | #include <plat/tc.h> | 42 | #include <mach/tc.h> |
| 43 | #include <mach/irda.h> | 43 | #include <mach/irda.h> |
| 44 | #include <linux/platform_data/keypad-omap.h> | 44 | #include <linux/platform_data/keypad-omap.h> |
| 45 | 45 | ||
| @@ -47,6 +47,7 @@ | |||
| 47 | #include <mach/usb.h> | 47 | #include <mach/usb.h> |
| 48 | 48 | ||
| 49 | #include "common.h" | 49 | #include "common.h" |
| 50 | #include "dma.h" | ||
| 50 | 51 | ||
| 51 | #define PALMZ71_USBDETECT_GPIO 0 | 52 | #define PALMZ71_USBDETECT_GPIO 0 |
| 52 | #define PALMZ71_PENIRQ_GPIO 6 | 53 | #define PALMZ71_PENIRQ_GPIO 6 |
| @@ -326,7 +327,6 @@ MACHINE_START(OMAP_PALMZ71, "OMAP310 based Palm Zire71") | |||
| 326 | .atag_offset = 0x100, | 327 | .atag_offset = 0x100, |
| 327 | .map_io = omap15xx_map_io, | 328 | .map_io = omap15xx_map_io, |
| 328 | .init_early = omap1_init_early, | 329 | .init_early = omap1_init_early, |
| 329 | .reserve = omap_reserve, | ||
| 330 | .init_irq = omap1_init_irq, | 330 | .init_irq = omap1_init_irq, |
| 331 | .init_machine = omap_palmz71_init, | 331 | .init_machine = omap_palmz71_init, |
| 332 | .init_late = omap1_init_late, | 332 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/board-perseus2.c b/arch/arm/mach-omap1/board-perseus2.c index 198b05417bfc..9a7e483ed6fd 100644 --- a/arch/arm/mach-omap1/board-perseus2.c +++ b/arch/arm/mach-omap1/board-perseus2.c | |||
| @@ -28,15 +28,15 @@ | |||
| 28 | #include <asm/mach/arch.h> | 28 | #include <asm/mach/arch.h> |
| 29 | #include <asm/mach/map.h> | 29 | #include <asm/mach/map.h> |
| 30 | 30 | ||
| 31 | #include <plat/tc.h> | 31 | #include <mach/tc.h> |
| 32 | #include <mach/mux.h> | 32 | #include <mach/mux.h> |
| 33 | #include <plat/fpga.h> | ||
| 34 | #include <mach/flash.h> | 33 | #include <mach/flash.h> |
| 35 | 34 | ||
| 36 | #include <mach/hardware.h> | 35 | #include <mach/hardware.h> |
| 37 | 36 | ||
| 38 | #include "iomap.h" | 37 | #include "iomap.h" |
| 39 | #include "common.h" | 38 | #include "common.h" |
| 39 | #include "fpga.h" | ||
| 40 | 40 | ||
| 41 | static const unsigned int p2_keymap[] = { | 41 | static const unsigned int p2_keymap[] = { |
| 42 | KEY(0, 0, KEY_UP), | 42 | KEY(0, 0, KEY_UP), |
| @@ -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 | } |
| @@ -324,7 +324,6 @@ MACHINE_START(OMAP_PERSEUS2, "OMAP730 Perseus2") | |||
| 324 | .atag_offset = 0x100, | 324 | .atag_offset = 0x100, |
| 325 | .map_io = omap_perseus2_map_io, | 325 | .map_io = omap_perseus2_map_io, |
| 326 | .init_early = omap1_init_early, | 326 | .init_early = omap1_init_early, |
| 327 | .reserve = omap_reserve, | ||
| 328 | .init_irq = omap1_init_irq, | 327 | .init_irq = omap1_init_irq, |
| 329 | .init_machine = omap_perseus2_init, | 328 | .init_machine = omap_perseus2_init, |
| 330 | .init_late = omap1_init_late, | 329 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/board-sx1-mmc.c b/arch/arm/mach-omap1/board-sx1-mmc.c index 5932d56e17bf..4fcf19c78a08 100644 --- a/arch/arm/mach-omap1/board-sx1-mmc.c +++ b/arch/arm/mach-omap1/board-sx1-mmc.c | |||
| @@ -16,9 +16,10 @@ | |||
| 16 | #include <linux/platform_device.h> | 16 | #include <linux/platform_device.h> |
| 17 | 17 | ||
| 18 | #include <mach/hardware.h> | 18 | #include <mach/hardware.h> |
| 19 | #include <plat/mmc.h> | ||
| 20 | #include <mach/board-sx1.h> | 19 | #include <mach/board-sx1.h> |
| 21 | 20 | ||
| 21 | #include "mmc.h" | ||
| 22 | |||
| 22 | #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) | 23 | #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) |
| 23 | 24 | ||
| 24 | static int mmc_set_power(struct device *dev, int slot, int power_on, | 25 | static int mmc_set_power(struct device *dev, int slot, int power_on, |
diff --git a/arch/arm/mach-omap1/board-sx1.c b/arch/arm/mach-omap1/board-sx1.c index 13bf2cc56814..1ebc7e08d6e5 100644 --- a/arch/arm/mach-omap1/board-sx1.c +++ b/arch/arm/mach-omap1/board-sx1.c | |||
| @@ -36,15 +36,16 @@ | |||
| 36 | 36 | ||
| 37 | #include <mach/flash.h> | 37 | #include <mach/flash.h> |
| 38 | #include <mach/mux.h> | 38 | #include <mach/mux.h> |
| 39 | #include <plat/dma.h> | 39 | #include <plat-omap/dma-omap.h> |
| 40 | #include <mach/irda.h> | 40 | #include <mach/irda.h> |
| 41 | #include <plat/tc.h> | 41 | #include <mach/tc.h> |
| 42 | #include <mach/board-sx1.h> | 42 | #include <mach/board-sx1.h> |
| 43 | 43 | ||
| 44 | #include <mach/hardware.h> | 44 | #include <mach/hardware.h> |
| 45 | #include <mach/usb.h> | 45 | #include <mach/usb.h> |
| 46 | 46 | ||
| 47 | #include "common.h" | 47 | #include "common.h" |
| 48 | #include "dma.h" | ||
| 48 | 49 | ||
| 49 | /* Write to I2C device */ | 50 | /* Write to I2C device */ |
| 50 | int sx1_i2c_write_byte(u8 devaddr, u8 regoffset, u8 value) | 51 | int sx1_i2c_write_byte(u8 devaddr, u8 regoffset, u8 value) |
| @@ -403,7 +404,6 @@ MACHINE_START(SX1, "OMAP310 based Siemens SX1") | |||
| 403 | .atag_offset = 0x100, | 404 | .atag_offset = 0x100, |
| 404 | .map_io = omap15xx_map_io, | 405 | .map_io = omap15xx_map_io, |
| 405 | .init_early = omap1_init_early, | 406 | .init_early = omap1_init_early, |
| 406 | .reserve = omap_reserve, | ||
| 407 | .init_irq = omap1_init_irq, | 407 | .init_irq = omap1_init_irq, |
| 408 | .init_machine = omap_sx1_init, | 408 | .init_machine = omap_sx1_init, |
| 409 | .init_late = omap1_init_late, | 409 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/board-voiceblue.c b/arch/arm/mach-omap1/board-voiceblue.c index ad75e3411d46..abf705f49b19 100644 --- a/arch/arm/mach-omap1/board-voiceblue.c +++ b/arch/arm/mach-omap1/board-voiceblue.c | |||
| @@ -34,7 +34,7 @@ | |||
| 34 | #include <mach/board-voiceblue.h> | 34 | #include <mach/board-voiceblue.h> |
| 35 | #include <mach/flash.h> | 35 | #include <mach/flash.h> |
| 36 | #include <mach/mux.h> | 36 | #include <mach/mux.h> |
| 37 | #include <plat/tc.h> | 37 | #include <mach/tc.h> |
| 38 | 38 | ||
| 39 | #include <mach/hardware.h> | 39 | #include <mach/hardware.h> |
| 40 | #include <mach/usb.h> | 40 | #include <mach/usb.h> |
| @@ -286,7 +286,6 @@ MACHINE_START(VOICEBLUE, "VoiceBlue OMAP5910") | |||
| 286 | .atag_offset = 0x100, | 286 | .atag_offset = 0x100, |
| 287 | .map_io = omap15xx_map_io, | 287 | .map_io = omap15xx_map_io, |
| 288 | .init_early = omap1_init_early, | 288 | .init_early = omap1_init_early, |
| 289 | .reserve = omap_reserve, | ||
| 290 | .init_irq = omap1_init_irq, | 289 | .init_irq = omap1_init_irq, |
| 291 | .init_machine = voiceblue_init, | 290 | .init_machine = voiceblue_init, |
| 292 | .init_late = omap1_init_late, | 291 | .init_late = omap1_init_late, |
diff --git a/arch/arm/mach-omap1/clock.c b/arch/arm/mach-omap1/clock.c index 638f4070fc70..4f5fd4a084c0 100644 --- a/arch/arm/mach-omap1/clock.c +++ b/arch/arm/mach-omap1/clock.c | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | * published by the Free Software Foundation. | 12 | * published by the Free Software Foundation. |
| 13 | */ | 13 | */ |
| 14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
| 15 | #include <linux/export.h> | ||
| 15 | #include <linux/list.h> | 16 | #include <linux/list.h> |
| 16 | #include <linux/errno.h> | 17 | #include <linux/errno.h> |
| 17 | #include <linux/err.h> | 18 | #include <linux/err.h> |
| @@ -21,21 +22,21 @@ | |||
| 21 | 22 | ||
| 22 | #include <asm/mach-types.h> | 23 | #include <asm/mach-types.h> |
| 23 | 24 | ||
| 24 | #include <plat/cpu.h> | ||
| 25 | #include <plat/usb.h> | ||
| 26 | #include <plat/clock.h> | ||
| 27 | #include <plat/sram.h> | ||
| 28 | #include <plat/clkdev_omap.h> | ||
| 29 | |||
| 30 | #include <mach/hardware.h> | 25 | #include <mach/hardware.h> |
| 31 | 26 | ||
| 27 | #include "soc.h" | ||
| 32 | #include "iomap.h" | 28 | #include "iomap.h" |
| 33 | #include "clock.h" | 29 | #include "clock.h" |
| 34 | #include "opp.h" | 30 | #include "opp.h" |
| 31 | #include "sram.h" | ||
| 35 | 32 | ||
| 36 | __u32 arm_idlect1_mask; | 33 | __u32 arm_idlect1_mask; |
| 37 | struct clk *api_ck_p, *ck_dpll1_p, *ck_ref_p; | 34 | struct clk *api_ck_p, *ck_dpll1_p, *ck_ref_p; |
| 38 | 35 | ||
| 36 | static LIST_HEAD(clocks); | ||
| 37 | static DEFINE_MUTEX(clocks_mutex); | ||
| 38 | static DEFINE_SPINLOCK(clockfw_lock); | ||
| 39 | |||
| 39 | /* | 40 | /* |
| 40 | * Omap1 specific clock functions | 41 | * Omap1 specific clock functions |
| 41 | */ | 42 | */ |
| @@ -607,3 +608,497 @@ void omap1_clk_disable_unused(struct clk *clk) | |||
| 607 | } | 608 | } |
| 608 | 609 | ||
| 609 | #endif | 610 | #endif |
| 611 | |||
| 612 | |||
| 613 | int clk_enable(struct clk *clk) | ||
| 614 | { | ||
| 615 | unsigned long flags; | ||
| 616 | int ret; | ||
| 617 | |||
| 618 | if (clk == NULL || IS_ERR(clk)) | ||
| 619 | return -EINVAL; | ||
| 620 | |||
| 621 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 622 | ret = omap1_clk_enable(clk); | ||
| 623 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 624 | |||
| 625 | return ret; | ||
| 626 | } | ||
| 627 | EXPORT_SYMBOL(clk_enable); | ||
| 628 | |||
| 629 | void clk_disable(struct clk *clk) | ||
| 630 | { | ||
| 631 | unsigned long flags; | ||
| 632 | |||
| 633 | if (clk == NULL || IS_ERR(clk)) | ||
| 634 | return; | ||
| 635 | |||
| 636 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 637 | if (clk->usecount == 0) { | ||
| 638 | pr_err("Trying disable clock %s with 0 usecount\n", | ||
| 639 | clk->name); | ||
| 640 | WARN_ON(1); | ||
| 641 | goto out; | ||
| 642 | } | ||
| 643 | |||
| 644 | omap1_clk_disable(clk); | ||
| 645 | |||
| 646 | out: | ||
| 647 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 648 | } | ||
| 649 | EXPORT_SYMBOL(clk_disable); | ||
| 650 | |||
| 651 | unsigned long clk_get_rate(struct clk *clk) | ||
| 652 | { | ||
| 653 | unsigned long flags; | ||
| 654 | unsigned long ret; | ||
| 655 | |||
| 656 | if (clk == NULL || IS_ERR(clk)) | ||
| 657 | return 0; | ||
| 658 | |||
| 659 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 660 | ret = clk->rate; | ||
| 661 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 662 | |||
| 663 | return ret; | ||
| 664 | } | ||
| 665 | EXPORT_SYMBOL(clk_get_rate); | ||
| 666 | |||
| 667 | /* | ||
| 668 | * Optional clock functions defined in include/linux/clk.h | ||
| 669 | */ | ||
| 670 | |||
| 671 | long clk_round_rate(struct clk *clk, unsigned long rate) | ||
| 672 | { | ||
| 673 | unsigned long flags; | ||
| 674 | long ret; | ||
| 675 | |||
| 676 | if (clk == NULL || IS_ERR(clk)) | ||
| 677 | return 0; | ||
| 678 | |||
| 679 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 680 | ret = omap1_clk_round_rate(clk, rate); | ||
| 681 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 682 | |||
| 683 | return ret; | ||
| 684 | } | ||
| 685 | EXPORT_SYMBOL(clk_round_rate); | ||
| 686 | |||
| 687 | int clk_set_rate(struct clk *clk, unsigned long rate) | ||
| 688 | { | ||
| 689 | unsigned long flags; | ||
| 690 | int ret = -EINVAL; | ||
| 691 | |||
| 692 | if (clk == NULL || IS_ERR(clk)) | ||
| 693 | return ret; | ||
| 694 | |||
| 695 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 696 | ret = omap1_clk_set_rate(clk, rate); | ||
| 697 | if (ret == 0) | ||
| 698 | propagate_rate(clk); | ||
| 699 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 700 | |||
| 701 | return ret; | ||
| 702 | } | ||
| 703 | EXPORT_SYMBOL(clk_set_rate); | ||
| 704 | |||
| 705 | int clk_set_parent(struct clk *clk, struct clk *parent) | ||
| 706 | { | ||
| 707 | WARN_ONCE(1, "clk_set_parent() not implemented for OMAP1\n"); | ||
| 708 | |||
| 709 | return -EINVAL; | ||
| 710 | } | ||
| 711 | EXPORT_SYMBOL(clk_set_parent); | ||
| 712 | |||
| 713 | struct clk *clk_get_parent(struct clk *clk) | ||
| 714 | { | ||
| 715 | return clk->parent; | ||
| 716 | } | ||
| 717 | EXPORT_SYMBOL(clk_get_parent); | ||
| 718 | |||
| 719 | /* | ||
| 720 | * OMAP specific clock functions shared between omap1 and omap2 | ||
| 721 | */ | ||
| 722 | |||
| 723 | int __initdata mpurate; | ||
| 724 | |||
| 725 | /* | ||
| 726 | * By default we use the rate set by the bootloader. | ||
| 727 | * You can override this with mpurate= cmdline option. | ||
| 728 | */ | ||
| 729 | static int __init omap_clk_setup(char *str) | ||
| 730 | { | ||
| 731 | get_option(&str, &mpurate); | ||
| 732 | |||
| 733 | if (!mpurate) | ||
| 734 | return 1; | ||
| 735 | |||
| 736 | if (mpurate < 1000) | ||
| 737 | mpurate *= 1000000; | ||
| 738 | |||
| 739 | return 1; | ||
| 740 | } | ||
| 741 | __setup("mpurate=", omap_clk_setup); | ||
| 742 | |||
| 743 | /* Used for clocks that always have same value as the parent clock */ | ||
| 744 | unsigned long followparent_recalc(struct clk *clk) | ||
| 745 | { | ||
| 746 | return clk->parent->rate; | ||
| 747 | } | ||
| 748 | |||
| 749 | /* | ||
| 750 | * Used for clocks that have the same value as the parent clock, | ||
| 751 | * divided by some factor | ||
| 752 | */ | ||
| 753 | unsigned long omap_fixed_divisor_recalc(struct clk *clk) | ||
| 754 | { | ||
| 755 | WARN_ON(!clk->fixed_div); | ||
| 756 | |||
| 757 | return clk->parent->rate / clk->fixed_div; | ||
| 758 | } | ||
| 759 | |||
| 760 | void clk_reparent(struct clk *child, struct clk *parent) | ||
| 761 | { | ||
| 762 | list_del_init(&child->sibling); | ||
| 763 | if (parent) | ||
| 764 | list_add(&child->sibling, &parent->children); | ||
| 765 | child->parent = parent; | ||
| 766 | |||
| 767 | /* now do the debugfs renaming to reattach the child | ||
| 768 | to the proper parent */ | ||
| 769 | } | ||
| 770 | |||
| 771 | /* Propagate rate to children */ | ||
| 772 | void propagate_rate(struct clk *tclk) | ||
| 773 | { | ||
| 774 | struct clk *clkp; | ||
| 775 | |||
| 776 | list_for_each_entry(clkp, &tclk->children, sibling) { | ||
| 777 | if (clkp->recalc) | ||
| 778 | clkp->rate = clkp->recalc(clkp); | ||
| 779 | propagate_rate(clkp); | ||
| 780 | } | ||
| 781 | } | ||
| 782 | |||
| 783 | static LIST_HEAD(root_clks); | ||
| 784 | |||
| 785 | /** | ||
| 786 | * recalculate_root_clocks - recalculate and propagate all root clocks | ||
| 787 | * | ||
| 788 | * Recalculates all root clocks (clocks with no parent), which if the | ||
| 789 | * clock's .recalc is set correctly, should also propagate their rates. | ||
| 790 | * Called at init. | ||
| 791 | */ | ||
| 792 | void recalculate_root_clocks(void) | ||
| 793 | { | ||
| 794 | struct clk *clkp; | ||
| 795 | |||
| 796 | list_for_each_entry(clkp, &root_clks, sibling) { | ||
| 797 | if (clkp->recalc) | ||
| 798 | clkp->rate = clkp->recalc(clkp); | ||
| 799 | propagate_rate(clkp); | ||
| 800 | } | ||
| 801 | } | ||
| 802 | |||
| 803 | /** | ||
| 804 | * clk_preinit - initialize any fields in the struct clk before clk init | ||
| 805 | * @clk: struct clk * to initialize | ||
| 806 | * | ||
| 807 | * Initialize any struct clk fields needed before normal clk initialization | ||
| 808 | * can run. No return value. | ||
| 809 | */ | ||
| 810 | void clk_preinit(struct clk *clk) | ||
| 811 | { | ||
| 812 | INIT_LIST_HEAD(&clk->children); | ||
| 813 | } | ||
| 814 | |||
| 815 | int clk_register(struct clk *clk) | ||
| 816 | { | ||
| 817 | if (clk == NULL || IS_ERR(clk)) | ||
| 818 | return -EINVAL; | ||
| 819 | |||
| 820 | /* | ||
| 821 | * trap out already registered clocks | ||
| 822 | */ | ||
| 823 | if (clk->node.next || clk->node.prev) | ||
| 824 | return 0; | ||
| 825 | |||
| 826 | mutex_lock(&clocks_mutex); | ||
| 827 | if (clk->parent) | ||
| 828 | list_add(&clk->sibling, &clk->parent->children); | ||
| 829 | else | ||
| 830 | list_add(&clk->sibling, &root_clks); | ||
| 831 | |||
| 832 | list_add(&clk->node, &clocks); | ||
| 833 | if (clk->init) | ||
| 834 | clk->init(clk); | ||
| 835 | mutex_unlock(&clocks_mutex); | ||
| 836 | |||
| 837 | return 0; | ||
| 838 | } | ||
| 839 | EXPORT_SYMBOL(clk_register); | ||
| 840 | |||
| 841 | void clk_unregister(struct clk *clk) | ||
| 842 | { | ||
| 843 | if (clk == NULL || IS_ERR(clk)) | ||
| 844 | return; | ||
| 845 | |||
| 846 | mutex_lock(&clocks_mutex); | ||
| 847 | list_del(&clk->sibling); | ||
| 848 | list_del(&clk->node); | ||
| 849 | mutex_unlock(&clocks_mutex); | ||
| 850 | } | ||
| 851 | EXPORT_SYMBOL(clk_unregister); | ||
| 852 | |||
| 853 | void clk_enable_init_clocks(void) | ||
| 854 | { | ||
| 855 | struct clk *clkp; | ||
| 856 | |||
| 857 | list_for_each_entry(clkp, &clocks, node) | ||
| 858 | if (clkp->flags & ENABLE_ON_INIT) | ||
| 859 | clk_enable(clkp); | ||
| 860 | } | ||
| 861 | |||
| 862 | /** | ||
| 863 | * omap_clk_get_by_name - locate OMAP struct clk by its name | ||
| 864 | * @name: name of the struct clk to locate | ||
| 865 | * | ||
| 866 | * Locate an OMAP struct clk by its name. Assumes that struct clk | ||
| 867 | * names are unique. Returns NULL if not found or a pointer to the | ||
| 868 | * struct clk if found. | ||
| 869 | */ | ||
| 870 | struct clk *omap_clk_get_by_name(const char *name) | ||
| 871 | { | ||
| 872 | struct clk *c; | ||
| 873 | struct clk *ret = NULL; | ||
| 874 | |||
| 875 | mutex_lock(&clocks_mutex); | ||
| 876 | |||
| 877 | list_for_each_entry(c, &clocks, node) { | ||
| 878 | if (!strcmp(c->name, name)) { | ||
| 879 | ret = c; | ||
| 880 | break; | ||
| 881 | } | ||
| 882 | } | ||
| 883 | |||
| 884 | mutex_unlock(&clocks_mutex); | ||
| 885 | |||
| 886 | return ret; | ||
| 887 | } | ||
| 888 | |||
| 889 | int omap_clk_enable_autoidle_all(void) | ||
| 890 | { | ||
| 891 | struct clk *c; | ||
| 892 | unsigned long flags; | ||
| 893 | |||
| 894 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 895 | |||
| 896 | list_for_each_entry(c, &clocks, node) | ||
| 897 | if (c->ops->allow_idle) | ||
| 898 | c->ops->allow_idle(c); | ||
| 899 | |||
| 900 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 901 | |||
| 902 | return 0; | ||
| 903 | } | ||
| 904 | |||
| 905 | int omap_clk_disable_autoidle_all(void) | ||
| 906 | { | ||
| 907 | struct clk *c; | ||
| 908 | unsigned long flags; | ||
| 909 | |||
| 910 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 911 | |||
| 912 | list_for_each_entry(c, &clocks, node) | ||
| 913 | if (c->ops->deny_idle) | ||
| 914 | c->ops->deny_idle(c); | ||
| 915 | |||
| 916 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 917 | |||
| 918 | return 0; | ||
| 919 | } | ||
| 920 | |||
| 921 | /* | ||
| 922 | * Low level helpers | ||
| 923 | */ | ||
| 924 | static int clkll_enable_null(struct clk *clk) | ||
| 925 | { | ||
| 926 | return 0; | ||
| 927 | } | ||
| 928 | |||
| 929 | static void clkll_disable_null(struct clk *clk) | ||
| 930 | { | ||
| 931 | } | ||
| 932 | |||
| 933 | const struct clkops clkops_null = { | ||
| 934 | .enable = clkll_enable_null, | ||
| 935 | .disable = clkll_disable_null, | ||
| 936 | }; | ||
| 937 | |||
| 938 | /* | ||
| 939 | * Dummy clock | ||
| 940 | * | ||
| 941 | * Used for clock aliases that are needed on some OMAPs, but not others | ||
| 942 | */ | ||
| 943 | struct clk dummy_ck = { | ||
| 944 | .name = "dummy", | ||
| 945 | .ops = &clkops_null, | ||
| 946 | }; | ||
| 947 | |||
| 948 | /* | ||
| 949 | * | ||
| 950 | */ | ||
| 951 | |||
| 952 | #ifdef CONFIG_OMAP_RESET_CLOCKS | ||
| 953 | /* | ||
| 954 | * Disable any unused clocks left on by the bootloader | ||
| 955 | */ | ||
| 956 | static int __init clk_disable_unused(void) | ||
| 957 | { | ||
| 958 | struct clk *ck; | ||
| 959 | unsigned long flags; | ||
| 960 | |||
| 961 | pr_info("clock: disabling unused clocks to save power\n"); | ||
| 962 | |||
| 963 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 964 | list_for_each_entry(ck, &clocks, node) { | ||
| 965 | if (ck->ops == &clkops_null) | ||
| 966 | continue; | ||
| 967 | |||
| 968 | if (ck->usecount > 0 || !ck->enable_reg) | ||
| 969 | continue; | ||
| 970 | |||
| 971 | omap1_clk_disable_unused(ck); | ||
| 972 | } | ||
| 973 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 974 | |||
| 975 | return 0; | ||
| 976 | } | ||
| 977 | late_initcall(clk_disable_unused); | ||
| 978 | late_initcall(omap_clk_enable_autoidle_all); | ||
| 979 | #endif | ||
| 980 | |||
| 981 | #if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) | ||
| 982 | /* | ||
| 983 | * debugfs support to trace clock tree hierarchy and attributes | ||
| 984 | */ | ||
| 985 | |||
| 986 | #include <linux/debugfs.h> | ||
| 987 | #include <linux/seq_file.h> | ||
| 988 | |||
| 989 | static struct dentry *clk_debugfs_root; | ||
| 990 | |||
| 991 | static int clk_dbg_show_summary(struct seq_file *s, void *unused) | ||
| 992 | { | ||
| 993 | struct clk *c; | ||
| 994 | struct clk *pa; | ||
| 995 | |||
| 996 | mutex_lock(&clocks_mutex); | ||
| 997 | seq_printf(s, "%-30s %-30s %-10s %s\n", | ||
| 998 | "clock-name", "parent-name", "rate", "use-count"); | ||
| 999 | |||
| 1000 | list_for_each_entry(c, &clocks, node) { | ||
| 1001 | pa = c->parent; | ||
| 1002 | seq_printf(s, "%-30s %-30s %-10lu %d\n", | ||
| 1003 | c->name, pa ? pa->name : "none", c->rate, | ||
| 1004 | c->usecount); | ||
| 1005 | } | ||
| 1006 | mutex_unlock(&clocks_mutex); | ||
| 1007 | |||
| 1008 | return 0; | ||
| 1009 | } | ||
| 1010 | |||
| 1011 | static int clk_dbg_open(struct inode *inode, struct file *file) | ||
| 1012 | { | ||
| 1013 | return single_open(file, clk_dbg_show_summary, inode->i_private); | ||
| 1014 | } | ||
| 1015 | |||
| 1016 | static const struct file_operations debug_clock_fops = { | ||
| 1017 | .open = clk_dbg_open, | ||
| 1018 | .read = seq_read, | ||
| 1019 | .llseek = seq_lseek, | ||
| 1020 | .release = single_release, | ||
| 1021 | }; | ||
| 1022 | |||
| 1023 | static int clk_debugfs_register_one(struct clk *c) | ||
| 1024 | { | ||
| 1025 | int err; | ||
| 1026 | struct dentry *d; | ||
| 1027 | struct clk *pa = c->parent; | ||
| 1028 | |||
| 1029 | d = debugfs_create_dir(c->name, pa ? pa->dent : clk_debugfs_root); | ||
| 1030 | if (!d) | ||
| 1031 | return -ENOMEM; | ||
| 1032 | c->dent = d; | ||
| 1033 | |||
| 1034 | d = debugfs_create_u8("usecount", S_IRUGO, c->dent, (u8 *)&c->usecount); | ||
| 1035 | if (!d) { | ||
| 1036 | err = -ENOMEM; | ||
| 1037 | goto err_out; | ||
| 1038 | } | ||
| 1039 | d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate); | ||
| 1040 | if (!d) { | ||
| 1041 | err = -ENOMEM; | ||
| 1042 | goto err_out; | ||
| 1043 | } | ||
| 1044 | d = debugfs_create_x32("flags", S_IRUGO, c->dent, (u32 *)&c->flags); | ||
| 1045 | if (!d) { | ||
| 1046 | err = -ENOMEM; | ||
| 1047 | goto err_out; | ||
| 1048 | } | ||
| 1049 | return 0; | ||
| 1050 | |||
| 1051 | err_out: | ||
| 1052 | debugfs_remove_recursive(c->dent); | ||
| 1053 | return err; | ||
| 1054 | } | ||
| 1055 | |||
| 1056 | static int clk_debugfs_register(struct clk *c) | ||
| 1057 | { | ||
| 1058 | int err; | ||
| 1059 | struct clk *pa = c->parent; | ||
| 1060 | |||
| 1061 | if (pa && !pa->dent) { | ||
| 1062 | err = clk_debugfs_register(pa); | ||
| 1063 | if (err) | ||
| 1064 | return err; | ||
| 1065 | } | ||
| 1066 | |||
| 1067 | if (!c->dent) { | ||
| 1068 | err = clk_debugfs_register_one(c); | ||
| 1069 | if (err) | ||
| 1070 | return err; | ||
| 1071 | } | ||
| 1072 | return 0; | ||
| 1073 | } | ||
| 1074 | |||
| 1075 | static int __init clk_debugfs_init(void) | ||
| 1076 | { | ||
| 1077 | struct clk *c; | ||
| 1078 | struct dentry *d; | ||
| 1079 | int err; | ||
| 1080 | |||
| 1081 | d = debugfs_create_dir("clock", NULL); | ||
| 1082 | if (!d) | ||
| 1083 | return -ENOMEM; | ||
| 1084 | clk_debugfs_root = d; | ||
| 1085 | |||
| 1086 | list_for_each_entry(c, &clocks, node) { | ||
| 1087 | err = clk_debugfs_register(c); | ||
| 1088 | if (err) | ||
| 1089 | goto err_out; | ||
| 1090 | } | ||
| 1091 | |||
| 1092 | d = debugfs_create_file("summary", S_IRUGO, | ||
| 1093 | d, NULL, &debug_clock_fops); | ||
| 1094 | if (!d) | ||
| 1095 | return -ENOMEM; | ||
| 1096 | |||
| 1097 | return 0; | ||
| 1098 | err_out: | ||
| 1099 | debugfs_remove_recursive(clk_debugfs_root); | ||
| 1100 | return err; | ||
| 1101 | } | ||
| 1102 | late_initcall(clk_debugfs_init); | ||
| 1103 | |||
| 1104 | #endif /* defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) */ | ||
diff --git a/arch/arm/mach-omap1/clock.h b/arch/arm/mach-omap1/clock.h index 3d04f4f67676..1e4918a3a5ee 100644 --- a/arch/arm/mach-omap1/clock.h +++ b/arch/arm/mach-omap1/clock.h | |||
| @@ -14,8 +14,184 @@ | |||
| 14 | #define __ARCH_ARM_MACH_OMAP1_CLOCK_H | 14 | #define __ARCH_ARM_MACH_OMAP1_CLOCK_H |
| 15 | 15 | ||
| 16 | #include <linux/clk.h> | 16 | #include <linux/clk.h> |
| 17 | #include <linux/list.h> | ||
| 17 | 18 | ||
| 18 | #include <plat/clock.h> | 19 | #include <linux/clkdev.h> |
| 20 | |||
| 21 | struct module; | ||
| 22 | struct clk; | ||
| 23 | |||
| 24 | struct omap_clk { | ||
| 25 | u16 cpu; | ||
| 26 | struct clk_lookup lk; | ||
| 27 | }; | ||
| 28 | |||
| 29 | #define CLK(dev, con, ck, cp) \ | ||
| 30 | { \ | ||
| 31 | .cpu = cp, \ | ||
| 32 | .lk = { \ | ||
| 33 | .dev_id = dev, \ | ||
| 34 | .con_id = con, \ | ||
| 35 | .clk = ck, \ | ||
| 36 | }, \ | ||
| 37 | } | ||
| 38 | |||
| 39 | /* Platform flags for the clkdev-OMAP integration code */ | ||
| 40 | #define CK_310 (1 << 0) | ||
| 41 | #define CK_7XX (1 << 1) /* 7xx, 850 */ | ||
| 42 | #define CK_1510 (1 << 2) | ||
| 43 | #define CK_16XX (1 << 3) /* 16xx, 17xx, 5912 */ | ||
| 44 | #define CK_1710 (1 << 4) /* 1710 extra for rate selection */ | ||
| 45 | |||
| 46 | |||
| 47 | /* Temporary, needed during the common clock framework conversion */ | ||
| 48 | #define __clk_get_name(clk) (clk->name) | ||
| 49 | #define __clk_get_parent(clk) (clk->parent) | ||
| 50 | #define __clk_get_rate(clk) (clk->rate) | ||
| 51 | |||
| 52 | /** | ||
| 53 | * struct clkops - some clock function pointers | ||
| 54 | * @enable: fn ptr that enables the current clock in hardware | ||
| 55 | * @disable: fn ptr that enables the current clock in hardware | ||
| 56 | * @find_idlest: function returning the IDLEST register for the clock's IP blk | ||
| 57 | * @find_companion: function returning the "companion" clk reg for the clock | ||
| 58 | * @allow_idle: fn ptr that enables autoidle for the current clock in hardware | ||
| 59 | * @deny_idle: fn ptr that disables autoidle for the current clock in hardware | ||
| 60 | * | ||
| 61 | * A "companion" clk is an accompanying clock to the one being queried | ||
| 62 | * that must be enabled for the IP module connected to the clock to | ||
| 63 | * become accessible by the hardware. Neither @find_idlest nor | ||
| 64 | * @find_companion should be needed; that information is IP | ||
| 65 | * block-specific; the hwmod code has been created to handle this, but | ||
| 66 | * until hwmod data is ready and drivers have been converted to use PM | ||
| 67 | * runtime calls in place of clk_enable()/clk_disable(), @find_idlest and | ||
| 68 | * @find_companion must, unfortunately, remain. | ||
| 69 | */ | ||
| 70 | struct clkops { | ||
| 71 | int (*enable)(struct clk *); | ||
| 72 | void (*disable)(struct clk *); | ||
| 73 | void (*find_idlest)(struct clk *, void __iomem **, | ||
| 74 | u8 *, u8 *); | ||
| 75 | void (*find_companion)(struct clk *, void __iomem **, | ||
| 76 | u8 *); | ||
| 77 | void (*allow_idle)(struct clk *); | ||
| 78 | void (*deny_idle)(struct clk *); | ||
| 79 | }; | ||
| 80 | |||
| 81 | /* | ||
| 82 | * struct clk.flags possibilities | ||
| 83 | * | ||
| 84 | * XXX document the rest of the clock flags here | ||
| 85 | * | ||
| 86 | * CLOCK_CLKOUTX2: (OMAP4 only) DPLL CLKOUT and CLKOUTX2 GATE_CTRL | ||
| 87 | * bits share the same register. This flag allows the | ||
| 88 | * omap4_dpllmx*() code to determine which GATE_CTRL bit field | ||
| 89 | * should be used. This is a temporary solution - a better approach | ||
| 90 | * would be to associate clock type-specific data with the clock, | ||
| 91 | * similar to the struct dpll_data approach. | ||
| 92 | */ | ||
| 93 | #define ENABLE_REG_32BIT (1 << 0) /* Use 32-bit access */ | ||
| 94 | #define CLOCK_IDLE_CONTROL (1 << 1) | ||
| 95 | #define CLOCK_NO_IDLE_PARENT (1 << 2) | ||
| 96 | #define ENABLE_ON_INIT (1 << 3) /* Enable upon framework init */ | ||
| 97 | #define INVERT_ENABLE (1 << 4) /* 0 enables, 1 disables */ | ||
| 98 | #define CLOCK_CLKOUTX2 (1 << 5) | ||
| 99 | |||
| 100 | /** | ||
| 101 | * struct clk - OMAP struct clk | ||
| 102 | * @node: list_head connecting this clock into the full clock list | ||
| 103 | * @ops: struct clkops * for this clock | ||
| 104 | * @name: the name of the clock in the hardware (used in hwmod data and debug) | ||
| 105 | * @parent: pointer to this clock's parent struct clk | ||
| 106 | * @children: list_head connecting to the child clks' @sibling list_heads | ||
| 107 | * @sibling: list_head connecting this clk to its parent clk's @children | ||
| 108 | * @rate: current clock rate | ||
| 109 | * @enable_reg: register to write to enable the clock (see @enable_bit) | ||
| 110 | * @recalc: fn ptr that returns the clock's current rate | ||
| 111 | * @set_rate: fn ptr that can change the clock's current rate | ||
| 112 | * @round_rate: fn ptr that can round the clock's current rate | ||
| 113 | * @init: fn ptr to do clock-specific initialization | ||
| 114 | * @enable_bit: bitshift to write to enable/disable the clock (see @enable_reg) | ||
| 115 | * @usecount: number of users that have requested this clock to be enabled | ||
| 116 | * @fixed_div: when > 0, this clock's rate is its parent's rate / @fixed_div | ||
| 117 | * @flags: see "struct clk.flags possibilities" above | ||
| 118 | * @rate_offset: bitshift for rate selection bitfield (OMAP1 only) | ||
| 119 | * @src_offset: bitshift for source selection bitfield (OMAP1 only) | ||
| 120 | * | ||
| 121 | * XXX @rate_offset, @src_offset should probably be removed and OMAP1 | ||
| 122 | * clock code converted to use clksel. | ||
| 123 | * | ||
| 124 | * XXX @usecount is poorly named. It should be "enable_count" or | ||
| 125 | * something similar. "users" in the description refers to kernel | ||
| 126 | * code (core code or drivers) that have called clk_enable() and not | ||
| 127 | * yet called clk_disable(); the usecount of parent clocks is also | ||
| 128 | * incremented by the clock code when clk_enable() is called on child | ||
| 129 | * clocks and decremented by the clock code when clk_disable() is | ||
| 130 | * called on child clocks. | ||
| 131 | * | ||
| 132 | * XXX @clkdm, @usecount, @children, @sibling should be marked for | ||
| 133 | * internal use only. | ||
| 134 | * | ||
| 135 | * @children and @sibling are used to optimize parent-to-child clock | ||
| 136 | * tree traversals. (child-to-parent traversals use @parent.) | ||
| 137 | * | ||
| 138 | * XXX The notion of the clock's current rate probably needs to be | ||
| 139 | * separated from the clock's target rate. | ||
| 140 | */ | ||
| 141 | struct clk { | ||
| 142 | struct list_head node; | ||
| 143 | const struct clkops *ops; | ||
| 144 | const char *name; | ||
| 145 | struct clk *parent; | ||
| 146 | struct list_head children; | ||
| 147 | struct list_head sibling; /* node for children */ | ||
| 148 | unsigned long rate; | ||
| 149 | void __iomem *enable_reg; | ||
| 150 | unsigned long (*recalc)(struct clk *); | ||
| 151 | int (*set_rate)(struct clk *, unsigned long); | ||
| 152 | long (*round_rate)(struct clk *, unsigned long); | ||
| 153 | void (*init)(struct clk *); | ||
| 154 | u8 enable_bit; | ||
| 155 | s8 usecount; | ||
| 156 | u8 fixed_div; | ||
| 157 | u8 flags; | ||
| 158 | u8 rate_offset; | ||
| 159 | u8 src_offset; | ||
| 160 | #if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) | ||
| 161 | struct dentry *dent; /* For visible tree hierarchy */ | ||
| 162 | #endif | ||
| 163 | }; | ||
| 164 | |||
| 165 | struct clk_functions { | ||
| 166 | int (*clk_enable)(struct clk *clk); | ||
| 167 | void (*clk_disable)(struct clk *clk); | ||
| 168 | long (*clk_round_rate)(struct clk *clk, unsigned long rate); | ||
| 169 | int (*clk_set_rate)(struct clk *clk, unsigned long rate); | ||
| 170 | int (*clk_set_parent)(struct clk *clk, struct clk *parent); | ||
| 171 | void (*clk_allow_idle)(struct clk *clk); | ||
| 172 | void (*clk_deny_idle)(struct clk *clk); | ||
| 173 | void (*clk_disable_unused)(struct clk *clk); | ||
| 174 | }; | ||
| 175 | |||
| 176 | extern int mpurate; | ||
| 177 | |||
| 178 | extern int clk_init(struct clk_functions *custom_clocks); | ||
| 179 | extern void clk_preinit(struct clk *clk); | ||
| 180 | extern int clk_register(struct clk *clk); | ||
| 181 | extern void clk_reparent(struct clk *child, struct clk *parent); | ||
| 182 | extern void clk_unregister(struct clk *clk); | ||
| 183 | extern void propagate_rate(struct clk *clk); | ||
| 184 | extern void recalculate_root_clocks(void); | ||
| 185 | extern unsigned long followparent_recalc(struct clk *clk); | ||
| 186 | extern void clk_enable_init_clocks(void); | ||
| 187 | unsigned long omap_fixed_divisor_recalc(struct clk *clk); | ||
| 188 | extern struct clk *omap_clk_get_by_name(const char *name); | ||
| 189 | extern int omap_clk_enable_autoidle_all(void); | ||
| 190 | extern int omap_clk_disable_autoidle_all(void); | ||
| 191 | |||
| 192 | extern const struct clkops clkops_null; | ||
| 193 | |||
| 194 | extern struct clk dummy_ck; | ||
| 19 | 195 | ||
| 20 | int omap1_clk_init(void); | 196 | int omap1_clk_init(void); |
| 21 | void omap1_clk_late_init(void); | 197 | void omap1_clk_late_init(void); |
diff --git a/arch/arm/mach-omap1/clock_data.c b/arch/arm/mach-omap1/clock_data.c index 9b45f4b0ee22..cb7c6ae2e3fc 100644 --- a/arch/arm/mach-omap1/clock_data.c +++ b/arch/arm/mach-omap1/clock_data.c | |||
| @@ -22,16 +22,14 @@ | |||
| 22 | 22 | ||
| 23 | #include <asm/mach-types.h> /* for machine_is_* */ | 23 | #include <asm/mach-types.h> /* for machine_is_* */ |
| 24 | 24 | ||
| 25 | #include <plat/clock.h> | 25 | #include "soc.h" |
| 26 | #include <plat/cpu.h> | ||
| 27 | #include <plat/clkdev_omap.h> | ||
| 28 | #include <plat/sram.h> /* for omap_sram_reprogram_clock() */ | ||
| 29 | 26 | ||
| 30 | #include <mach/hardware.h> | 27 | #include <mach/hardware.h> |
| 31 | #include <mach/usb.h> /* for OTG_BASE */ | 28 | #include <mach/usb.h> /* for OTG_BASE */ |
| 32 | 29 | ||
| 33 | #include "iomap.h" | 30 | #include "iomap.h" |
| 34 | #include "clock.h" | 31 | #include "clock.h" |
| 32 | #include "sram.h" | ||
| 35 | 33 | ||
| 36 | /* Some ARM_IDLECT1 bit shifts - used in struct arm_idlect1_clk */ | 34 | /* Some ARM_IDLECT1 bit shifts - used in struct arm_idlect1_clk */ |
| 37 | #define IDL_CLKOUT_ARM_SHIFT 12 | 35 | #define IDL_CLKOUT_ARM_SHIFT 12 |
| @@ -765,14 +763,6 @@ static struct omap_clk omap_clks[] = { | |||
| 765 | * init | 763 | * init |
| 766 | */ | 764 | */ |
| 767 | 765 | ||
| 768 | static struct clk_functions omap1_clk_functions = { | ||
| 769 | .clk_enable = omap1_clk_enable, | ||
| 770 | .clk_disable = omap1_clk_disable, | ||
| 771 | .clk_round_rate = omap1_clk_round_rate, | ||
| 772 | .clk_set_rate = omap1_clk_set_rate, | ||
| 773 | .clk_disable_unused = omap1_clk_disable_unused, | ||
| 774 | }; | ||
| 775 | |||
| 776 | static void __init omap1_show_rates(void) | 766 | static void __init omap1_show_rates(void) |
| 777 | { | 767 | { |
| 778 | pr_notice("Clocking rate (xtal/DPLL1/MPU): %ld.%01ld/%ld.%01ld/%ld.%01ld MHz\n", | 768 | pr_notice("Clocking rate (xtal/DPLL1/MPU): %ld.%01ld/%ld.%01ld/%ld.%01ld MHz\n", |
| @@ -803,8 +793,6 @@ int __init omap1_clk_init(void) | |||
| 803 | if (!cpu_is_omap15xx()) | 793 | if (!cpu_is_omap15xx()) |
| 804 | omap_writew(0, SOFT_REQ_REG2); | 794 | omap_writew(0, SOFT_REQ_REG2); |
| 805 | 795 | ||
| 806 | clk_init(&omap1_clk_functions); | ||
| 807 | |||
| 808 | /* By default all idlect1 clocks are allowed to idle */ | 796 | /* By default all idlect1 clocks are allowed to idle */ |
| 809 | arm_idlect1_mask = ~0; | 797 | arm_idlect1_mask = ~0; |
| 810 | 798 | ||
diff --git a/arch/arm/mach-omap1/common.h b/arch/arm/mach-omap1/common.h index c2552b24f9f2..dab2e102b9d7 100644 --- a/arch/arm/mach-omap1/common.h +++ b/arch/arm/mach-omap1/common.h | |||
| @@ -26,8 +26,10 @@ | |||
| 26 | #ifndef __ARCH_ARM_MACH_OMAP1_COMMON_H | 26 | #ifndef __ARCH_ARM_MACH_OMAP1_COMMON_H |
| 27 | #define __ARCH_ARM_MACH_OMAP1_COMMON_H | 27 | #define __ARCH_ARM_MACH_OMAP1_COMMON_H |
| 28 | 28 | ||
| 29 | #include <plat/common.h> | ||
| 30 | #include <linux/mtd/mtd.h> | 29 | #include <linux/mtd/mtd.h> |
| 30 | #include <linux/i2c-omap.h> | ||
| 31 | |||
| 32 | #include <plat/i2c.h> | ||
| 31 | 33 | ||
| 32 | #if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850) | 34 | #if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850) |
| 33 | void omap7xx_map_io(void); | 35 | void omap7xx_map_io(void); |
| @@ -38,6 +40,7 @@ static inline void omap7xx_map_io(void) | |||
| 38 | #endif | 40 | #endif |
| 39 | 41 | ||
| 40 | #ifdef CONFIG_ARCH_OMAP15XX | 42 | #ifdef CONFIG_ARCH_OMAP15XX |
| 43 | void omap1510_fpga_init_irq(void); | ||
| 41 | void omap15xx_map_io(void); | 44 | void omap15xx_map_io(void); |
| 42 | #else | 45 | #else |
| 43 | static inline void omap15xx_map_io(void) | 46 | static inline void omap15xx_map_io(void) |
| @@ -90,4 +93,6 @@ extern int ocpi_enable(void); | |||
| 90 | static inline int ocpi_enable(void) { return 0; } | 93 | static inline int ocpi_enable(void) { return 0; } |
| 91 | #endif | 94 | #endif |
| 92 | 95 | ||
| 96 | extern int omap1_get_reset_sources(void); | ||
| 97 | |||
| 93 | #endif /* __ARCH_ARM_MACH_OMAP1_COMMON_H */ | 98 | #endif /* __ARCH_ARM_MACH_OMAP1_COMMON_H */ |
diff --git a/arch/arm/mach-omap1/devices.c b/arch/arm/mach-omap1/devices.c index d3fec92c54cb..7155ed8b97f8 100644 --- a/arch/arm/mach-omap1/devices.c +++ b/arch/arm/mach-omap1/devices.c | |||
| @@ -19,10 +19,8 @@ | |||
| 19 | 19 | ||
| 20 | #include <asm/mach/map.h> | 20 | #include <asm/mach/map.h> |
| 21 | 21 | ||
| 22 | #include <plat/tc.h> | 22 | #include <mach/tc.h> |
| 23 | #include <mach/mux.h> | 23 | #include <mach/mux.h> |
| 24 | #include <plat/dma.h> | ||
| 25 | #include <plat/mmc.h> | ||
| 26 | 24 | ||
| 27 | #include <mach/omap7xx.h> | 25 | #include <mach/omap7xx.h> |
| 28 | #include <mach/camera.h> | 26 | #include <mach/camera.h> |
| @@ -30,6 +28,9 @@ | |||
| 30 | 28 | ||
| 31 | #include "common.h" | 29 | #include "common.h" |
| 32 | #include "clock.h" | 30 | #include "clock.h" |
| 31 | #include "dma.h" | ||
| 32 | #include "mmc.h" | ||
| 33 | #include "sram.h" | ||
| 33 | 34 | ||
| 34 | #if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE) | 35 | #if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE) |
| 35 | 36 | ||
| @@ -175,6 +176,13 @@ static int __init omap_mmc_add(const char *name, int id, unsigned long base, | |||
| 175 | res[3].name = "tx"; | 176 | res[3].name = "tx"; |
| 176 | res[3].flags = IORESOURCE_DMA; | 177 | res[3].flags = IORESOURCE_DMA; |
| 177 | 178 | ||
| 179 | if (cpu_is_omap7xx()) | ||
| 180 | data->slots[0].features = MMC_OMAP7XX; | ||
| 181 | if (cpu_is_omap15xx()) | ||
| 182 | data->slots[0].features = MMC_OMAP15XX; | ||
| 183 | if (cpu_is_omap16xx()) | ||
| 184 | data->slots[0].features = MMC_OMAP16XX; | ||
| 185 | |||
| 178 | ret = platform_device_add_resources(pdev, res, ARRAY_SIZE(res)); | 186 | ret = platform_device_add_resources(pdev, res, ARRAY_SIZE(res)); |
| 179 | if (ret == 0) | 187 | if (ret == 0) |
| 180 | ret = platform_device_add_data(pdev, data, sizeof(*data)); | 188 | ret = platform_device_add_data(pdev, data, sizeof(*data)); |
diff --git a/arch/arm/mach-omap1/dma.c b/arch/arm/mach-omap1/dma.c index 29007fef84cd..978aed85d328 100644 --- a/arch/arm/mach-omap1/dma.c +++ b/arch/arm/mach-omap1/dma.c | |||
| @@ -25,11 +25,13 @@ | |||
| 25 | #include <linux/device.h> | 25 | #include <linux/device.h> |
| 26 | #include <linux/io.h> | 26 | #include <linux/io.h> |
| 27 | 27 | ||
| 28 | #include <plat/dma.h> | 28 | #include <plat-omap/dma-omap.h> |
| 29 | #include <plat/tc.h> | 29 | #include <mach/tc.h> |
| 30 | 30 | ||
| 31 | #include <mach/irqs.h> | 31 | #include <mach/irqs.h> |
| 32 | 32 | ||
| 33 | #include "dma.h" | ||
| 34 | |||
| 33 | #define OMAP1_DMA_BASE (0xfffed800) | 35 | #define OMAP1_DMA_BASE (0xfffed800) |
| 34 | #define OMAP1_LOGICAL_DMA_CH_COUNT 17 | 36 | #define OMAP1_LOGICAL_DMA_CH_COUNT 17 |
| 35 | #define OMAP1_DMA_STRIDE 0x40 | 37 | #define OMAP1_DMA_STRIDE 0x40 |
| @@ -319,6 +321,9 @@ static int __init omap1_system_dma_init(void) | |||
| 319 | d->dev_caps = ENABLE_1510_MODE; | 321 | d->dev_caps = ENABLE_1510_MODE; |
| 320 | enable_1510_mode = d->dev_caps & ENABLE_1510_MODE; | 322 | enable_1510_mode = d->dev_caps & ENABLE_1510_MODE; |
| 321 | 323 | ||
| 324 | if (cpu_is_omap16xx()) | ||
| 325 | d->dev_caps = ENABLE_16XX_MODE; | ||
| 326 | |||
| 322 | d->dev_caps |= SRC_PORT; | 327 | d->dev_caps |= SRC_PORT; |
| 323 | d->dev_caps |= DST_PORT; | 328 | d->dev_caps |= DST_PORT; |
| 324 | d->dev_caps |= SRC_INDEX; | 329 | d->dev_caps |= SRC_INDEX; |
diff --git a/arch/arm/mach-omap1/dma.h b/arch/arm/mach-omap1/dma.h new file mode 100644 index 000000000000..da6345dab03f --- /dev/null +++ b/arch/arm/mach-omap1/dma.h | |||
| @@ -0,0 +1,83 @@ | |||
| 1 | /* | ||
| 2 | * OMAP1 DMA channel definitions | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation; either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write to the Free Software | ||
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 17 | */ | ||
| 18 | |||
| 19 | #ifndef __OMAP1_DMA_CHANNEL_H | ||
| 20 | #define __OMAP1_DMA_CHANNEL_H | ||
| 21 | |||
| 22 | /* DMA channels for omap1 */ | ||
| 23 | #define OMAP_DMA_NO_DEVICE 0 | ||
| 24 | #define OMAP_DMA_MCSI1_TX 1 | ||
| 25 | #define OMAP_DMA_MCSI1_RX 2 | ||
| 26 | #define OMAP_DMA_I2C_RX 3 | ||
| 27 | #define OMAP_DMA_I2C_TX 4 | ||
| 28 | #define OMAP_DMA_EXT_NDMA_REQ 5 | ||
| 29 | #define OMAP_DMA_EXT_NDMA_REQ2 6 | ||
| 30 | #define OMAP_DMA_UWIRE_TX 7 | ||
| 31 | #define OMAP_DMA_MCBSP1_TX 8 | ||
| 32 | #define OMAP_DMA_MCBSP1_RX 9 | ||
| 33 | #define OMAP_DMA_MCBSP3_TX 10 | ||
| 34 | #define OMAP_DMA_MCBSP3_RX 11 | ||
| 35 | #define OMAP_DMA_UART1_TX 12 | ||
| 36 | #define OMAP_DMA_UART1_RX 13 | ||
| 37 | #define OMAP_DMA_UART2_TX 14 | ||
| 38 | #define OMAP_DMA_UART2_RX 15 | ||
| 39 | #define OMAP_DMA_MCBSP2_TX 16 | ||
| 40 | #define OMAP_DMA_MCBSP2_RX 17 | ||
| 41 | #define OMAP_DMA_UART3_TX 18 | ||
| 42 | #define OMAP_DMA_UART3_RX 19 | ||
| 43 | #define OMAP_DMA_CAMERA_IF_RX 20 | ||
| 44 | #define OMAP_DMA_MMC_TX 21 | ||
| 45 | #define OMAP_DMA_MMC_RX 22 | ||
| 46 | #define OMAP_DMA_NAND 23 | ||
| 47 | #define OMAP_DMA_IRQ_LCD_LINE 24 | ||
| 48 | #define OMAP_DMA_MEMORY_STICK 25 | ||
| 49 | #define OMAP_DMA_USB_W2FC_RX0 26 | ||
| 50 | #define OMAP_DMA_USB_W2FC_RX1 27 | ||
| 51 | #define OMAP_DMA_USB_W2FC_RX2 28 | ||
| 52 | #define OMAP_DMA_USB_W2FC_TX0 29 | ||
| 53 | #define OMAP_DMA_USB_W2FC_TX1 30 | ||
| 54 | #define OMAP_DMA_USB_W2FC_TX2 31 | ||
| 55 | |||
| 56 | /* These are only for 1610 */ | ||
| 57 | #define OMAP_DMA_CRYPTO_DES_IN 32 | ||
| 58 | #define OMAP_DMA_SPI_TX 33 | ||
| 59 | #define OMAP_DMA_SPI_RX 34 | ||
| 60 | #define OMAP_DMA_CRYPTO_HASH 35 | ||
| 61 | #define OMAP_DMA_CCP_ATTN 36 | ||
| 62 | #define OMAP_DMA_CCP_FIFO_NOT_EMPTY 37 | ||
| 63 | #define OMAP_DMA_CMT_APE_TX_CHAN_0 38 | ||
| 64 | #define OMAP_DMA_CMT_APE_RV_CHAN_0 39 | ||
| 65 | #define OMAP_DMA_CMT_APE_TX_CHAN_1 40 | ||
| 66 | #define OMAP_DMA_CMT_APE_RV_CHAN_1 41 | ||
| 67 | #define OMAP_DMA_CMT_APE_TX_CHAN_2 42 | ||
| 68 | #define OMAP_DMA_CMT_APE_RV_CHAN_2 43 | ||
| 69 | #define OMAP_DMA_CMT_APE_TX_CHAN_3 44 | ||
| 70 | #define OMAP_DMA_CMT_APE_RV_CHAN_3 45 | ||
| 71 | #define OMAP_DMA_CMT_APE_TX_CHAN_4 46 | ||
| 72 | #define OMAP_DMA_CMT_APE_RV_CHAN_4 47 | ||
| 73 | #define OMAP_DMA_CMT_APE_TX_CHAN_5 48 | ||
| 74 | #define OMAP_DMA_CMT_APE_RV_CHAN_5 49 | ||
| 75 | #define OMAP_DMA_CMT_APE_TX_CHAN_6 50 | ||
| 76 | #define OMAP_DMA_CMT_APE_RV_CHAN_6 51 | ||
| 77 | #define OMAP_DMA_CMT_APE_TX_CHAN_7 52 | ||
| 78 | #define OMAP_DMA_CMT_APE_RV_CHAN_7 53 | ||
| 79 | #define OMAP_DMA_MMC2_TX 54 | ||
| 80 | #define OMAP_DMA_MMC2_RX 55 | ||
| 81 | #define OMAP_DMA_CRYPTO_DES_OUT 56 | ||
| 82 | |||
| 83 | #endif /* __OMAP1_DMA_CHANNEL_H */ | ||
diff --git a/arch/arm/mach-omap1/flash.c b/arch/arm/mach-omap1/flash.c index 73ae6169aa4a..b3fb531af94e 100644 --- a/arch/arm/mach-omap1/flash.c +++ b/arch/arm/mach-omap1/flash.c | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | #include <linux/mtd/mtd.h> | 10 | #include <linux/mtd/mtd.h> |
| 11 | #include <linux/mtd/map.h> | 11 | #include <linux/mtd/map.h> |
| 12 | 12 | ||
| 13 | #include <plat/tc.h> | 13 | #include <mach/tc.h> |
| 14 | #include <mach/flash.h> | 14 | #include <mach/flash.h> |
| 15 | 15 | ||
| 16 | #include <mach/hardware.h> | 16 | #include <mach/hardware.h> |
diff --git a/arch/arm/mach-omap1/fpga.c b/arch/arm/mach-omap1/fpga.c index 29ec50fc688d..8bd71b2d0967 100644 --- a/arch/arm/mach-omap1/fpga.c +++ b/arch/arm/mach-omap1/fpga.c | |||
| @@ -27,11 +27,11 @@ | |||
| 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> | ||
| 31 | |||
| 32 | #include <mach/hardware.h> | 30 | #include <mach/hardware.h> |
| 33 | 31 | ||
| 34 | #include "iomap.h" | 32 | #include "iomap.h" |
| 33 | #include "common.h" | ||
| 34 | #include "fpga.h" | ||
| 35 | 35 | ||
| 36 | static void fpga_mask_irq(struct irq_data *d) | 36 | static void fpga_mask_irq(struct irq_data *d) |
| 37 | { | 37 | { |
diff --git a/arch/arm/mach-omap1/fpga.h b/arch/arm/mach-omap1/fpga.h new file mode 100644 index 000000000000..4b4307a80e48 --- /dev/null +++ b/arch/arm/mach-omap1/fpga.h | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | /* | ||
| 2 | * Interrupt handler for OMAP-1510 FPGA | ||
| 3 | * | ||
| 4 | * Copyright (C) 2001 RidgeRun, Inc. | ||
| 5 | * Author: Greg Lonnon <glonnon@ridgerun.com> | ||
| 6 | * | ||
| 7 | * Copyright (C) 2002 MontaVista Software, Inc. | ||
| 8 | * | ||
| 9 | * Separated FPGA interrupts from innovator1510.c and cleaned up for 2.6 | ||
| 10 | * Copyright (C) 2004 Nokia Corporation by Tony Lindrgen <tony@atomide.com> | ||
| 11 | * | ||
| 12 | * This program is free software; you can redistribute it and/or modify | ||
| 13 | * it under the terms of the GNU General Public License version 2 as | ||
| 14 | * published by the Free Software Foundation. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #ifndef __ASM_ARCH_OMAP_FPGA_H | ||
| 18 | #define __ASM_ARCH_OMAP_FPGA_H | ||
| 19 | |||
| 20 | /* | ||
| 21 | * --------------------------------------------------------------------------- | ||
| 22 | * H2/P2 Debug board FPGA | ||
| 23 | * --------------------------------------------------------------------------- | ||
| 24 | */ | ||
| 25 | /* maps in the FPGA registers and the ETHR registers */ | ||
| 26 | #define H2P2_DBG_FPGA_BASE 0xE8000000 /* VA */ | ||
| 27 | #define H2P2_DBG_FPGA_SIZE SZ_4K /* SIZE */ | ||
| 28 | #define H2P2_DBG_FPGA_START 0x04000000 /* PA */ | ||
| 29 | |||
| 30 | #define H2P2_DBG_FPGA_ETHR_START (H2P2_DBG_FPGA_START + 0x300) | ||
| 31 | #define H2P2_DBG_FPGA_FPGA_REV IOMEM(H2P2_DBG_FPGA_BASE + 0x10) /* FPGA Revision */ | ||
| 32 | #define H2P2_DBG_FPGA_BOARD_REV IOMEM(H2P2_DBG_FPGA_BASE + 0x12) /* Board Revision */ | ||
| 33 | #define H2P2_DBG_FPGA_GPIO IOMEM(H2P2_DBG_FPGA_BASE + 0x14) /* GPIO outputs */ | ||
| 34 | #define H2P2_DBG_FPGA_LEDS IOMEM(H2P2_DBG_FPGA_BASE + 0x16) /* LEDs outputs */ | ||
| 35 | #define H2P2_DBG_FPGA_MISC_INPUTS IOMEM(H2P2_DBG_FPGA_BASE + 0x18) /* Misc inputs */ | ||
| 36 | #define H2P2_DBG_FPGA_LAN_STATUS IOMEM(H2P2_DBG_FPGA_BASE + 0x1A) /* LAN Status line */ | ||
| 37 | #define H2P2_DBG_FPGA_LAN_RESET IOMEM(H2P2_DBG_FPGA_BASE + 0x1C) /* LAN Reset line */ | ||
| 38 | |||
| 39 | /* LEDs definition on debug board (16 LEDs, all physically green) */ | ||
| 40 | #define H2P2_DBG_FPGA_LED_GREEN (1 << 15) | ||
| 41 | #define H2P2_DBG_FPGA_LED_AMBER (1 << 14) | ||
| 42 | #define H2P2_DBG_FPGA_LED_RED (1 << 13) | ||
| 43 | #define H2P2_DBG_FPGA_LED_BLUE (1 << 12) | ||
| 44 | /* cpu0 load-meter LEDs */ | ||
| 45 | #define H2P2_DBG_FPGA_LOAD_METER (1 << 0) // A bit of fun on our board ... | ||
| 46 | #define H2P2_DBG_FPGA_LOAD_METER_SIZE 11 | ||
| 47 | #define H2P2_DBG_FPGA_LOAD_METER_MASK ((1 << H2P2_DBG_FPGA_LOAD_METER_SIZE) - 1) | ||
| 48 | |||
| 49 | #define H2P2_DBG_FPGA_P2_LED_TIMER (1 << 0) | ||
| 50 | #define H2P2_DBG_FPGA_P2_LED_IDLE (1 << 1) | ||
| 51 | |||
| 52 | #endif | ||
diff --git a/arch/arm/mach-omap1/gpio15xx.c b/arch/arm/mach-omap1/gpio15xx.c index 98e6f39224a4..02b3eb2e201c 100644 --- a/arch/arm/mach-omap1/gpio15xx.c +++ b/arch/arm/mach-omap1/gpio15xx.c | |||
| @@ -19,6 +19,8 @@ | |||
| 19 | #include <linux/gpio.h> | 19 | #include <linux/gpio.h> |
| 20 | #include <linux/platform_data/gpio-omap.h> | 20 | #include <linux/platform_data/gpio-omap.h> |
| 21 | 21 | ||
| 22 | #include <mach/irqs.h> | ||
| 23 | |||
| 22 | #define OMAP1_MPUIO_VBASE OMAP1_MPUIO_BASE | 24 | #define OMAP1_MPUIO_VBASE OMAP1_MPUIO_BASE |
| 23 | #define OMAP1510_GPIO_BASE 0xFFFCE000 | 25 | #define OMAP1510_GPIO_BASE 0xFFFCE000 |
| 24 | 26 | ||
diff --git a/arch/arm/mach-omap1/gpio16xx.c b/arch/arm/mach-omap1/gpio16xx.c index 33f419236b17..b9952a258d82 100644 --- a/arch/arm/mach-omap1/gpio16xx.c +++ b/arch/arm/mach-omap1/gpio16xx.c | |||
| @@ -19,6 +19,8 @@ | |||
| 19 | #include <linux/gpio.h> | 19 | #include <linux/gpio.h> |
| 20 | #include <linux/platform_data/gpio-omap.h> | 20 | #include <linux/platform_data/gpio-omap.h> |
| 21 | 21 | ||
| 22 | #include <mach/irqs.h> | ||
| 23 | |||
| 22 | #define OMAP1610_GPIO1_BASE 0xfffbe400 | 24 | #define OMAP1610_GPIO1_BASE 0xfffbe400 |
| 23 | #define OMAP1610_GPIO2_BASE 0xfffbec00 | 25 | #define OMAP1610_GPIO2_BASE 0xfffbec00 |
| 24 | #define OMAP1610_GPIO3_BASE 0xfffbb400 | 26 | #define OMAP1610_GPIO3_BASE 0xfffbb400 |
diff --git a/arch/arm/mach-omap1/gpio7xx.c b/arch/arm/mach-omap1/gpio7xx.c index 958ce9acee95..f5819b2b7cbe 100644 --- a/arch/arm/mach-omap1/gpio7xx.c +++ b/arch/arm/mach-omap1/gpio7xx.c | |||
| @@ -19,6 +19,8 @@ | |||
| 19 | #include <linux/gpio.h> | 19 | #include <linux/gpio.h> |
| 20 | #include <linux/platform_data/gpio-omap.h> | 20 | #include <linux/platform_data/gpio-omap.h> |
| 21 | 21 | ||
| 22 | #include <mach/irqs.h> | ||
| 23 | |||
| 22 | #define OMAP7XX_GPIO1_BASE 0xfffbc000 | 24 | #define OMAP7XX_GPIO1_BASE 0xfffbc000 |
| 23 | #define OMAP7XX_GPIO2_BASE 0xfffbc800 | 25 | #define OMAP7XX_GPIO2_BASE 0xfffbc800 |
| 24 | #define OMAP7XX_GPIO3_BASE 0xfffbd000 | 26 | #define OMAP7XX_GPIO3_BASE 0xfffbd000 |
diff --git a/arch/arm/mach-omap1/i2c.c b/arch/arm/mach-omap1/i2c.c index a0551a6d7451..faca808cb3d9 100644 --- a/arch/arm/mach-omap1/i2c.c +++ b/arch/arm/mach-omap1/i2c.c | |||
| @@ -19,11 +19,25 @@ | |||
| 19 | * | 19 | * |
| 20 | */ | 20 | */ |
| 21 | 21 | ||
| 22 | #include <plat/i2c.h> | 22 | #include <linux/i2c-omap.h> |
| 23 | #include <mach/mux.h> | 23 | #include <mach/mux.h> |
| 24 | #include <plat/cpu.h> | 24 | #include "soc.h" |
| 25 | |||
| 26 | #include <plat/i2c.h> | ||
| 27 | |||
| 28 | #define OMAP_I2C_SIZE 0x3f | ||
| 29 | #define OMAP1_I2C_BASE 0xfffb3800 | ||
| 30 | #define OMAP1_INT_I2C (32 + 4) | ||
| 31 | |||
| 32 | static const char name[] = "omap_i2c"; | ||
| 25 | 33 | ||
| 26 | void __init omap1_i2c_mux_pins(int bus_id) | 34 | static struct resource i2c_resources[2] = { |
| 35 | }; | ||
| 36 | |||
| 37 | static struct platform_device omap_i2c_devices[1] = { | ||
| 38 | }; | ||
| 39 | |||
| 40 | static void __init omap1_i2c_mux_pins(int bus_id) | ||
| 27 | { | 41 | { |
| 28 | if (cpu_is_omap7xx()) { | 42 | if (cpu_is_omap7xx()) { |
| 29 | omap_cfg_reg(I2C_7XX_SDA); | 43 | omap_cfg_reg(I2C_7XX_SDA); |
| @@ -33,3 +47,47 @@ void __init omap1_i2c_mux_pins(int bus_id) | |||
| 33 | omap_cfg_reg(I2C_SCL); | 47 | omap_cfg_reg(I2C_SCL); |
| 34 | } | 48 | } |
| 35 | } | 49 | } |
| 50 | |||
| 51 | int __init omap_i2c_add_bus(struct omap_i2c_bus_platform_data *pdata, | ||
| 52 | int bus_id) | ||
| 53 | { | ||
| 54 | struct platform_device *pdev; | ||
| 55 | struct resource *res; | ||
| 56 | |||
| 57 | if (bus_id > 1) | ||
| 58 | return -EINVAL; | ||
| 59 | |||
| 60 | omap1_i2c_mux_pins(bus_id); | ||
| 61 | |||
| 62 | pdev = &omap_i2c_devices[bus_id - 1]; | ||
| 63 | pdev->id = bus_id; | ||
| 64 | pdev->name = name; | ||
| 65 | pdev->num_resources = ARRAY_SIZE(i2c_resources); | ||
| 66 | res = i2c_resources; | ||
| 67 | res[0].start = OMAP1_I2C_BASE; | ||
| 68 | res[0].end = res[0].start + OMAP_I2C_SIZE; | ||
| 69 | res[0].flags = IORESOURCE_MEM; | ||
| 70 | res[1].start = OMAP1_INT_I2C; | ||
| 71 | res[1].flags = IORESOURCE_IRQ; | ||
| 72 | pdev->resource = res; | ||
| 73 | |||
| 74 | /* all OMAP1 have IP version 1 register set */ | ||
| 75 | pdata->rev = OMAP_I2C_IP_VERSION_1; | ||
| 76 | |||
| 77 | /* all OMAP1 I2C are implemented like this */ | ||
| 78 | pdata->flags = OMAP_I2C_FLAG_NO_FIFO | | ||
| 79 | OMAP_I2C_FLAG_SIMPLE_CLOCK | | ||
| 80 | OMAP_I2C_FLAG_16BIT_DATA_REG | | ||
| 81 | OMAP_I2C_FLAG_ALWAYS_ARMXOR_CLK; | ||
| 82 | |||
| 83 | /* how the cpu bus is wired up differs for 7xx only */ | ||
| 84 | |||
| 85 | if (cpu_is_omap7xx()) | ||
| 86 | pdata->flags |= OMAP_I2C_FLAG_BUS_SHIFT_1; | ||
| 87 | else | ||
| 88 | pdata->flags |= OMAP_I2C_FLAG_BUS_SHIFT_2; | ||
| 89 | |||
| 90 | pdev->dev.platform_data = pdata; | ||
| 91 | |||
| 92 | return platform_device_register(pdev); | ||
| 93 | } | ||
diff --git a/arch/arm/mach-omap1/id.c b/arch/arm/mach-omap1/id.c index a1b846aacdaf..52de382fc804 100644 --- a/arch/arm/mach-omap1/id.c +++ b/arch/arm/mach-omap1/id.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
| 18 | #include <asm/system_info.h> | 18 | #include <asm/system_info.h> |
| 19 | 19 | ||
| 20 | #include <plat/cpu.h> | 20 | #include "soc.h" |
| 21 | 21 | ||
| 22 | #include <mach/hardware.h> | 22 | #include <mach/hardware.h> |
| 23 | 23 | ||
diff --git a/arch/arm/mach-omap1/include/mach/debug-macro.S b/arch/arm/mach-omap1/include/mach/debug-macro.S index 2b36a281dc84..5c1a26c9f490 100644 --- a/arch/arm/mach-omap1/include/mach/debug-macro.S +++ b/arch/arm/mach-omap1/include/mach/debug-macro.S | |||
| @@ -13,7 +13,7 @@ | |||
| 13 | 13 | ||
| 14 | #include <linux/serial_reg.h> | 14 | #include <linux/serial_reg.h> |
| 15 | 15 | ||
| 16 | #include <plat/serial.h> | 16 | #include "serial.h" |
| 17 | 17 | ||
| 18 | .pushsection .data | 18 | .pushsection .data |
| 19 | omap_uart_phys: .word 0x0 | 19 | omap_uart_phys: .word 0x0 |
diff --git a/arch/arm/mach-omap1/include/mach/entry-macro.S b/arch/arm/mach-omap1/include/mach/entry-macro.S index 88f08cab1717..78a8c6c24764 100644 --- a/arch/arm/mach-omap1/include/mach/entry-macro.S +++ b/arch/arm/mach-omap1/include/mach/entry-macro.S | |||
| @@ -13,8 +13,6 @@ | |||
| 13 | #include <mach/hardware.h> | 13 | #include <mach/hardware.h> |
| 14 | #include <mach/irqs.h> | 14 | #include <mach/irqs.h> |
| 15 | 15 | ||
| 16 | #include "../../iomap.h" | ||
| 17 | |||
| 18 | .macro get_irqnr_preamble, base, tmp | 16 | .macro get_irqnr_preamble, base, tmp |
| 19 | .endm | 17 | .endm |
| 20 | 18 | ||
diff --git a/arch/arm/mach-omap1/include/mach/gpio.h b/arch/arm/mach-omap1/include/mach/gpio.h deleted file mode 100644 index ebf86c0f4f46..000000000000 --- a/arch/arm/mach-omap1/include/mach/gpio.h +++ /dev/null | |||
| @@ -1,3 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/mach-omap1/include/mach/gpio.h | ||
| 3 | */ | ||
diff --git a/arch/arm/mach-omap1/include/mach/hardware.h b/arch/arm/mach-omap1/include/mach/hardware.h index 84248d250adb..5875a5098d35 100644 --- a/arch/arm/mach-omap1/include/mach/hardware.h +++ b/arch/arm/mach-omap1/include/mach/hardware.h | |||
| @@ -39,7 +39,7 @@ | |||
| 39 | #include <asm/sizes.h> | 39 | #include <asm/sizes.h> |
| 40 | #ifndef __ASSEMBLER__ | 40 | #ifndef __ASSEMBLER__ |
| 41 | #include <asm/types.h> | 41 | #include <asm/types.h> |
| 42 | #include <plat/cpu.h> | 42 | #include <mach/soc.h> |
| 43 | 43 | ||
| 44 | /* | 44 | /* |
| 45 | * NOTE: Please use ioremap + __raw_read/write where possible instead of these | 45 | * NOTE: Please use ioremap + __raw_read/write where possible instead of these |
| @@ -51,7 +51,7 @@ extern void omap_writeb(u8 v, u32 pa); | |||
| 51 | extern void omap_writew(u16 v, u32 pa); | 51 | extern void omap_writew(u16 v, u32 pa); |
| 52 | extern void omap_writel(u32 v, u32 pa); | 52 | extern void omap_writel(u32 v, u32 pa); |
| 53 | 53 | ||
| 54 | #include <plat/tc.h> | 54 | #include <mach/tc.h> |
| 55 | 55 | ||
| 56 | /* Almost all documentation for chip and board memory maps assumes | 56 | /* Almost all documentation for chip and board memory maps assumes |
| 57 | * BM is clear. Most devel boards have a switch to control booting | 57 | * BM is clear. Most devel boards have a switch to control booting |
| @@ -72,7 +72,10 @@ static inline u32 omap_cs3_phys(void) | |||
| 72 | 72 | ||
| 73 | #endif /* ifndef __ASSEMBLER__ */ | 73 | #endif /* ifndef __ASSEMBLER__ */ |
| 74 | 74 | ||
| 75 | #include <plat/serial.h> | 75 | #define OMAP1_IO_OFFSET 0x01000000 /* Virtual IO = 0xfefb0000 */ |
| 76 | #define OMAP1_IO_ADDRESS(pa) IOMEM((pa) - OMAP1_IO_OFFSET) | ||
| 77 | |||
| 78 | #include <mach/serial.h> | ||
| 76 | 79 | ||
| 77 | /* | 80 | /* |
| 78 | * --------------------------------------------------------------------------- | 81 | * --------------------------------------------------------------------------- |
diff --git a/arch/arm/mach-omap1/include/mach/memory.h b/arch/arm/mach-omap1/include/mach/memory.h index 901082def9bd..3c2530523111 100644 --- a/arch/arm/mach-omap1/include/mach/memory.h +++ b/arch/arm/mach-omap1/include/mach/memory.h | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | * because of the strncmp(). | 19 | * because of the strncmp(). |
| 20 | */ | 20 | */ |
| 21 | #if defined(CONFIG_ARCH_OMAP15XX) && !defined(__ASSEMBLER__) | 21 | #if defined(CONFIG_ARCH_OMAP15XX) && !defined(__ASSEMBLER__) |
| 22 | #include <plat/cpu.h> | 22 | #include <mach/soc.h> |
| 23 | 23 | ||
| 24 | /* | 24 | /* |
| 25 | * OMAP-1510 Local Bus address offset | 25 | * OMAP-1510 Local Bus address offset |
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/include/mach/serial.h b/arch/arm/mach-omap1/include/mach/serial.h new file mode 100644 index 000000000000..2ce6a2db470b --- /dev/null +++ b/arch/arm/mach-omap1/include/mach/serial.h | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2009 Texas Instruments | ||
| 3 | * Added OMAP4 support- Santosh Shilimkar <santosh.shilimkar@ti.com> | ||
| 4 | * | ||
| 5 | * This program is distributed in the hope that it will be useful, | ||
| 6 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 7 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 8 | * GNU General Public License for more details. | ||
| 9 | */ | ||
| 10 | |||
| 11 | #ifndef __ASM_ARCH_SERIAL_H | ||
| 12 | #define __ASM_ARCH_SERIAL_H | ||
| 13 | |||
| 14 | #include <linux/init.h> | ||
| 15 | |||
| 16 | /* | ||
| 17 | * Memory entry used for the DEBUG_LL UART configuration, relative to | ||
| 18 | * start of RAM. See also uncompress.h and debug-macro.S. | ||
| 19 | * | ||
| 20 | * Note that using a memory location for storing the UART configuration | ||
| 21 | * has at least two limitations: | ||
| 22 | * | ||
| 23 | * 1. Kernel uncompress code cannot overlap OMAP_UART_INFO as the | ||
| 24 | * uncompress code could then partially overwrite itself | ||
| 25 | * 2. We assume printascii is called at least once before paging_init, | ||
| 26 | * and addruart has a chance to read OMAP_UART_INFO | ||
| 27 | */ | ||
| 28 | #define OMAP_UART_INFO_OFS 0x3ffc | ||
| 29 | |||
| 30 | /* OMAP1 serial ports */ | ||
| 31 | #define OMAP1_UART1_BASE 0xfffb0000 | ||
| 32 | #define OMAP1_UART2_BASE 0xfffb0800 | ||
| 33 | #define OMAP1_UART3_BASE 0xfffb9800 | ||
| 34 | |||
| 35 | #define OMAP_PORT_SHIFT 2 | ||
| 36 | #define OMAP7XX_PORT_SHIFT 0 | ||
| 37 | |||
| 38 | #define OMAP1510_BASE_BAUD (12000000/16) | ||
| 39 | #define OMAP16XX_BASE_BAUD (48000000/16) | ||
| 40 | |||
| 41 | /* | ||
| 42 | * DEBUG_LL port encoding stored into the UART1 scratchpad register by | ||
| 43 | * decomp_setup in uncompress.h | ||
| 44 | */ | ||
| 45 | #define OMAP1UART1 11 | ||
| 46 | #define OMAP1UART2 12 | ||
| 47 | #define OMAP1UART3 13 | ||
| 48 | |||
| 49 | #ifndef __ASSEMBLER__ | ||
| 50 | extern void omap_serial_init(void); | ||
| 51 | #endif | ||
| 52 | |||
| 53 | #endif | ||
diff --git a/arch/arm/mach-omap1/include/mach/soc.h b/arch/arm/mach-omap1/include/mach/soc.h new file mode 100644 index 000000000000..6cf9c1cc2bef --- /dev/null +++ b/arch/arm/mach-omap1/include/mach/soc.h | |||
| @@ -0,0 +1,229 @@ | |||
| 1 | /* | ||
| 2 | * OMAP cpu type detection | ||
| 3 | * | ||
| 4 | * Copyright (C) 2004, 2008 Nokia Corporation | ||
| 5 | * | ||
| 6 | * Copyright (C) 2009-11 Texas Instruments. | ||
| 7 | * | ||
| 8 | * Written by Tony Lindgren <tony.lindgren@nokia.com> | ||
| 9 | * | ||
| 10 | * Added OMAP4/5 specific defines - Santosh Shilimkar<santosh.shilimkar@ti.com> | ||
| 11 | * | ||
| 12 | * This program is free software; you can redistribute it and/or modify | ||
| 13 | * it under the terms of the GNU General Public License as published by | ||
| 14 | * the Free Software Foundation; either version 2 of the License, or | ||
| 15 | * (at your option) any later version. | ||
| 16 | * | ||
| 17 | * This program is distributed in the hope that it will be useful, | ||
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 20 | * GNU General Public License for more details. | ||
| 21 | * | ||
| 22 | * You should have received a copy of the GNU General Public License | ||
| 23 | * along with this program; if not, write to the Free Software | ||
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 25 | * | ||
| 26 | */ | ||
| 27 | |||
| 28 | #ifndef __ASM_ARCH_OMAP_CPU_H | ||
| 29 | #define __ASM_ARCH_OMAP_CPU_H | ||
| 30 | |||
| 31 | #ifndef __ASSEMBLY__ | ||
| 32 | |||
| 33 | #include <linux/bitops.h> | ||
| 34 | |||
| 35 | /* | ||
| 36 | * Test if multicore OMAP support is needed | ||
| 37 | */ | ||
| 38 | #undef MULTI_OMAP1 | ||
| 39 | #undef OMAP_NAME | ||
| 40 | |||
| 41 | #ifdef CONFIG_ARCH_OMAP730 | ||
| 42 | # ifdef OMAP_NAME | ||
| 43 | # undef MULTI_OMAP1 | ||
| 44 | # define MULTI_OMAP1 | ||
| 45 | # else | ||
| 46 | # define OMAP_NAME omap730 | ||
| 47 | # endif | ||
| 48 | #endif | ||
| 49 | #ifdef CONFIG_ARCH_OMAP850 | ||
| 50 | # ifdef OMAP_NAME | ||
| 51 | # undef MULTI_OMAP1 | ||
| 52 | # define MULTI_OMAP1 | ||
| 53 | # else | ||
| 54 | # define OMAP_NAME omap850 | ||
| 55 | # endif | ||
| 56 | #endif | ||
| 57 | #ifdef CONFIG_ARCH_OMAP15XX | ||
| 58 | # ifdef OMAP_NAME | ||
| 59 | # undef MULTI_OMAP1 | ||
| 60 | # define MULTI_OMAP1 | ||
| 61 | # else | ||
| 62 | # define OMAP_NAME omap1510 | ||
| 63 | # endif | ||
| 64 | #endif | ||
| 65 | #ifdef CONFIG_ARCH_OMAP16XX | ||
| 66 | # ifdef OMAP_NAME | ||
| 67 | # undef MULTI_OMAP1 | ||
| 68 | # define MULTI_OMAP1 | ||
| 69 | # else | ||
| 70 | # define OMAP_NAME omap16xx | ||
| 71 | # endif | ||
| 72 | #endif | ||
| 73 | |||
| 74 | /* | ||
| 75 | * omap_rev bits: | ||
| 76 | * CPU id bits (0730, 1510, 1710, 2422...) [31:16] | ||
| 77 | * CPU revision (See _REV_ defined in cpu.h) [15:08] | ||
| 78 | * CPU class bits (15xx, 16xx, 24xx, 34xx...) [07:00] | ||
| 79 | */ | ||
| 80 | unsigned int omap_rev(void); | ||
| 81 | |||
| 82 | /* | ||
| 83 | * Get the CPU revision for OMAP devices | ||
| 84 | */ | ||
| 85 | #define GET_OMAP_REVISION() ((omap_rev() >> 8) & 0xff) | ||
| 86 | |||
| 87 | /* | ||
| 88 | * Macros to group OMAP into cpu classes. | ||
| 89 | * These can be used in most places. | ||
| 90 | * cpu_is_omap7xx(): True for OMAP730, OMAP850 | ||
| 91 | * cpu_is_omap15xx(): True for OMAP1510, OMAP5910 and OMAP310 | ||
| 92 | * cpu_is_omap16xx(): True for OMAP1610, OMAP5912 and OMAP1710 | ||
| 93 | */ | ||
| 94 | #define GET_OMAP_CLASS (omap_rev() & 0xff) | ||
| 95 | |||
| 96 | #define IS_OMAP_CLASS(class, id) \ | ||
| 97 | static inline int is_omap ##class (void) \ | ||
| 98 | { \ | ||
| 99 | return (GET_OMAP_CLASS == (id)) ? 1 : 0; \ | ||
| 100 | } | ||
| 101 | |||
| 102 | #define GET_OMAP_SUBCLASS ((omap_rev() >> 20) & 0x0fff) | ||
| 103 | |||
| 104 | #define IS_OMAP_SUBCLASS(subclass, id) \ | ||
| 105 | static inline int is_omap ##subclass (void) \ | ||
| 106 | { \ | ||
| 107 | return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \ | ||
| 108 | } | ||
| 109 | |||
| 110 | IS_OMAP_CLASS(7xx, 0x07) | ||
| 111 | IS_OMAP_CLASS(15xx, 0x15) | ||
| 112 | IS_OMAP_CLASS(16xx, 0x16) | ||
| 113 | |||
| 114 | #define cpu_is_omap7xx() 0 | ||
| 115 | #define cpu_is_omap15xx() 0 | ||
| 116 | #define cpu_is_omap16xx() 0 | ||
| 117 | |||
| 118 | #if defined(MULTI_OMAP1) | ||
| 119 | # if defined(CONFIG_ARCH_OMAP730) | ||
| 120 | # undef cpu_is_omap7xx | ||
| 121 | # define cpu_is_omap7xx() is_omap7xx() | ||
| 122 | # endif | ||
| 123 | # if defined(CONFIG_ARCH_OMAP850) | ||
| 124 | # undef cpu_is_omap7xx | ||
| 125 | # define cpu_is_omap7xx() is_omap7xx() | ||
| 126 | # endif | ||
| 127 | # if defined(CONFIG_ARCH_OMAP15XX) | ||
| 128 | # undef cpu_is_omap15xx | ||
| 129 | # define cpu_is_omap15xx() is_omap15xx() | ||
| 130 | # endif | ||
| 131 | # if defined(CONFIG_ARCH_OMAP16XX) | ||
| 132 | # undef cpu_is_omap16xx | ||
| 133 | # define cpu_is_omap16xx() is_omap16xx() | ||
| 134 | # endif | ||
| 135 | #else | ||
| 136 | # if defined(CONFIG_ARCH_OMAP730) | ||
| 137 | # undef cpu_is_omap7xx | ||
| 138 | # define cpu_is_omap7xx() 1 | ||
| 139 | # endif | ||
| 140 | # if defined(CONFIG_ARCH_OMAP850) | ||
| 141 | # undef cpu_is_omap7xx | ||
| 142 | # define cpu_is_omap7xx() 1 | ||
| 143 | # endif | ||
| 144 | # if defined(CONFIG_ARCH_OMAP15XX) | ||
| 145 | # undef cpu_is_omap15xx | ||
| 146 | # define cpu_is_omap15xx() 1 | ||
| 147 | # endif | ||
| 148 | # if defined(CONFIG_ARCH_OMAP16XX) | ||
| 149 | # undef cpu_is_omap16xx | ||
| 150 | # define cpu_is_omap16xx() 1 | ||
| 151 | # endif | ||
| 152 | #endif | ||
| 153 | |||
| 154 | /* | ||
| 155 | * Macros to detect individual cpu types. | ||
| 156 | * These are only rarely needed. | ||
| 157 | * cpu_is_omap310(): True for OMAP310 | ||
| 158 | * cpu_is_omap1510(): True for OMAP1510 | ||
| 159 | * cpu_is_omap1610(): True for OMAP1610 | ||
| 160 | * cpu_is_omap1611(): True for OMAP1611 | ||
| 161 | * cpu_is_omap5912(): True for OMAP5912 | ||
| 162 | * cpu_is_omap1621(): True for OMAP1621 | ||
| 163 | * cpu_is_omap1710(): True for OMAP1710 | ||
| 164 | */ | ||
| 165 | #define GET_OMAP_TYPE ((omap_rev() >> 16) & 0xffff) | ||
| 166 | |||
| 167 | #define IS_OMAP_TYPE(type, id) \ | ||
| 168 | static inline int is_omap ##type (void) \ | ||
| 169 | { \ | ||
| 170 | return (GET_OMAP_TYPE == (id)) ? 1 : 0; \ | ||
| 171 | } | ||
| 172 | |||
| 173 | IS_OMAP_TYPE(310, 0x0310) | ||
| 174 | IS_OMAP_TYPE(1510, 0x1510) | ||
| 175 | IS_OMAP_TYPE(1610, 0x1610) | ||
| 176 | IS_OMAP_TYPE(1611, 0x1611) | ||
| 177 | IS_OMAP_TYPE(5912, 0x1611) | ||
| 178 | IS_OMAP_TYPE(1621, 0x1621) | ||
| 179 | IS_OMAP_TYPE(1710, 0x1710) | ||
| 180 | |||
| 181 | #define cpu_is_omap310() 0 | ||
| 182 | #define cpu_is_omap1510() 0 | ||
| 183 | #define cpu_is_omap1610() 0 | ||
| 184 | #define cpu_is_omap5912() 0 | ||
| 185 | #define cpu_is_omap1611() 0 | ||
| 186 | #define cpu_is_omap1621() 0 | ||
| 187 | #define cpu_is_omap1710() 0 | ||
| 188 | |||
| 189 | /* These are needed to compile common code */ | ||
| 190 | #ifdef CONFIG_ARCH_OMAP1 | ||
| 191 | #define cpu_is_omap242x() 0 | ||
| 192 | #define cpu_is_omap2430() 0 | ||
| 193 | #define cpu_is_omap243x() 0 | ||
| 194 | #define cpu_is_omap24xx() 0 | ||
| 195 | #define cpu_is_omap34xx() 0 | ||
| 196 | #define cpu_is_omap44xx() 0 | ||
| 197 | #define soc_is_omap54xx() 0 | ||
| 198 | #define soc_is_am33xx() 0 | ||
| 199 | #define cpu_class_is_omap1() 1 | ||
| 200 | #define cpu_class_is_omap2() 0 | ||
| 201 | #endif | ||
| 202 | |||
| 203 | /* | ||
| 204 | * Whether we have MULTI_OMAP1 or not, we still need to distinguish | ||
| 205 | * between 310 vs. 1510 and 1611B/5912 vs. 1710. | ||
| 206 | */ | ||
| 207 | |||
| 208 | #if defined(CONFIG_ARCH_OMAP15XX) | ||
| 209 | # undef cpu_is_omap310 | ||
| 210 | # undef cpu_is_omap1510 | ||
| 211 | # define cpu_is_omap310() is_omap310() | ||
| 212 | # define cpu_is_omap1510() is_omap1510() | ||
| 213 | #endif | ||
| 214 | |||
| 215 | #if defined(CONFIG_ARCH_OMAP16XX) | ||
| 216 | # undef cpu_is_omap1610 | ||
| 217 | # undef cpu_is_omap1611 | ||
| 218 | # undef cpu_is_omap5912 | ||
| 219 | # undef cpu_is_omap1621 | ||
| 220 | # undef cpu_is_omap1710 | ||
| 221 | # define cpu_is_omap1610() is_omap1610() | ||
| 222 | # define cpu_is_omap1611() is_omap1611() | ||
| 223 | # define cpu_is_omap5912() is_omap5912() | ||
| 224 | # define cpu_is_omap1621() is_omap1621() | ||
| 225 | # define cpu_is_omap1710() is_omap1710() | ||
| 226 | #endif | ||
| 227 | |||
| 228 | #endif /* __ASSEMBLY__ */ | ||
| 229 | #endif | ||
diff --git a/arch/arm/plat-omap/include/plat/tc.h b/arch/arm/mach-omap1/include/mach/tc.h index 1b4b2da86203..1b4b2da86203 100644 --- a/arch/arm/plat-omap/include/plat/tc.h +++ b/arch/arm/mach-omap1/include/mach/tc.h | |||
diff --git a/arch/arm/mach-omap1/include/mach/uncompress.h b/arch/arm/mach-omap1/include/mach/uncompress.h index 0ff22dc075c7..ad6fbe7d83f2 100644 --- a/arch/arm/mach-omap1/include/mach/uncompress.h +++ b/arch/arm/mach-omap1/include/mach/uncompress.h | |||
| @@ -1,5 +1,122 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * arch/arm/mach-omap1/include/mach/uncompress.h | 2 | * arch/arm/plat-omap/include/mach/uncompress.h |
| 3 | * | ||
| 4 | * Serial port stubs for kernel decompress status messages | ||
| 5 | * | ||
| 6 | * Initially based on: | ||
| 7 | * linux-2.4.15-rmk1-dsplinux1.6/arch/arm/plat-omap/include/mach1510/uncompress.h | ||
| 8 | * Copyright (C) 2000 RidgeRun, Inc. | ||
| 9 | * Author: Greg Lonnon <glonnon@ridgerun.com> | ||
| 10 | * | ||
| 11 | * Rewritten by: | ||
| 12 | * Author: <source@mvista.com> | ||
| 13 | * 2004 (c) MontaVista Software, Inc. | ||
| 14 | * | ||
| 15 | * This file is licensed under the terms of the GNU General Public License | ||
| 16 | * version 2. This program is licensed "as is" without any warranty of any | ||
| 17 | * kind, whether express or implied. | ||
| 3 | */ | 18 | */ |
| 4 | 19 | ||
| 5 | #include <plat/uncompress.h> | 20 | #include <linux/types.h> |
| 21 | #include <linux/serial_reg.h> | ||
| 22 | |||
| 23 | #include <asm/memory.h> | ||
| 24 | #include <asm/mach-types.h> | ||
| 25 | |||
| 26 | #include "serial.h" | ||
| 27 | |||
| 28 | #define MDR1_MODE_MASK 0x07 | ||
| 29 | |||
| 30 | volatile u8 *uart_base; | ||
| 31 | int uart_shift; | ||
| 32 | |||
| 33 | /* | ||
| 34 | * Store the DEBUG_LL uart number into memory. | ||
| 35 | * See also debug-macro.S, and serial.c for related code. | ||
| 36 | */ | ||
| 37 | static void set_omap_uart_info(unsigned char port) | ||
| 38 | { | ||
| 39 | /* | ||
| 40 | * Get address of some.bss variable and round it down | ||
| 41 | * a la CONFIG_AUTO_ZRELADDR. | ||
| 42 | */ | ||
| 43 | u32 ram_start = (u32)&uart_shift & 0xf8000000; | ||
| 44 | u32 *uart_info = (u32 *)(ram_start + OMAP_UART_INFO_OFS); | ||
| 45 | *uart_info = port; | ||
| 46 | } | ||
| 47 | |||
| 48 | static void putc(int c) | ||
| 49 | { | ||
| 50 | if (!uart_base) | ||
| 51 | return; | ||
| 52 | |||
| 53 | /* Check for UART 16x mode */ | ||
| 54 | if ((uart_base[UART_OMAP_MDR1 << uart_shift] & MDR1_MODE_MASK) != 0) | ||
| 55 | return; | ||
| 56 | |||
| 57 | while (!(uart_base[UART_LSR << uart_shift] & UART_LSR_THRE)) | ||
| 58 | barrier(); | ||
| 59 | uart_base[UART_TX << uart_shift] = c; | ||
| 60 | } | ||
| 61 | |||
| 62 | static inline void flush(void) | ||
| 63 | { | ||
| 64 | } | ||
| 65 | |||
| 66 | /* | ||
| 67 | * Macros to configure UART1 and debug UART | ||
| 68 | */ | ||
| 69 | #define _DEBUG_LL_ENTRY(mach, dbg_uart, dbg_shft, dbg_id) \ | ||
| 70 | if (machine_is_##mach()) { \ | ||
| 71 | uart_base = (volatile u8 *)(dbg_uart); \ | ||
| 72 | uart_shift = (dbg_shft); \ | ||
| 73 | port = (dbg_id); \ | ||
| 74 | set_omap_uart_info(port); \ | ||
| 75 | break; \ | ||
| 76 | } | ||
| 77 | |||
| 78 | #define DEBUG_LL_OMAP7XX(p, mach) \ | ||
| 79 | _DEBUG_LL_ENTRY(mach, OMAP1_UART##p##_BASE, OMAP7XX_PORT_SHIFT, \ | ||
| 80 | OMAP1UART##p) | ||
| 81 | |||
| 82 | #define DEBUG_LL_OMAP1(p, mach) \ | ||
| 83 | _DEBUG_LL_ENTRY(mach, OMAP1_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 84 | OMAP1UART##p) | ||
| 85 | |||
| 86 | static inline void arch_decomp_setup(void) | ||
| 87 | { | ||
| 88 | int port = 0; | ||
| 89 | |||
| 90 | /* | ||
| 91 | * Initialize the port based on the machine ID from the bootloader. | ||
| 92 | * Note that we're using macros here instead of switch statement | ||
| 93 | * as machine_is functions are optimized out for the boards that | ||
| 94 | * are not selected. | ||
| 95 | */ | ||
| 96 | do { | ||
| 97 | /* omap7xx/8xx based boards using UART1 with shift 0 */ | ||
| 98 | DEBUG_LL_OMAP7XX(1, herald); | ||
| 99 | DEBUG_LL_OMAP7XX(1, omap_perseus2); | ||
| 100 | |||
| 101 | /* omap15xx/16xx based boards using UART1 */ | ||
| 102 | DEBUG_LL_OMAP1(1, ams_delta); | ||
| 103 | DEBUG_LL_OMAP1(1, nokia770); | ||
| 104 | DEBUG_LL_OMAP1(1, omap_h2); | ||
| 105 | DEBUG_LL_OMAP1(1, omap_h3); | ||
| 106 | DEBUG_LL_OMAP1(1, omap_innovator); | ||
| 107 | DEBUG_LL_OMAP1(1, omap_osk); | ||
| 108 | DEBUG_LL_OMAP1(1, omap_palmte); | ||
| 109 | DEBUG_LL_OMAP1(1, omap_palmz71); | ||
| 110 | |||
| 111 | /* omap15xx/16xx based boards using UART2 */ | ||
| 112 | DEBUG_LL_OMAP1(2, omap_palmtt); | ||
| 113 | |||
| 114 | /* omap15xx/16xx based boards using UART3 */ | ||
| 115 | DEBUG_LL_OMAP1(3, sx1); | ||
| 116 | } while (0); | ||
| 117 | } | ||
| 118 | |||
| 119 | /* | ||
| 120 | * nothing to do | ||
| 121 | */ | ||
| 122 | #define arch_decomp_wdog() | ||
diff --git a/arch/arm/mach-omap1/io.c b/arch/arm/mach-omap1/io.c index 6a5baab1f4cb..5a3b80617a11 100644 --- a/arch/arm/mach-omap1/io.c +++ b/arch/arm/mach-omap1/io.c | |||
| @@ -17,8 +17,8 @@ | |||
| 17 | #include <asm/mach/map.h> | 17 | #include <asm/mach/map.h> |
| 18 | 18 | ||
| 19 | #include <mach/mux.h> | 19 | #include <mach/mux.h> |
| 20 | #include <plat/tc.h> | 20 | #include <mach/tc.h> |
| 21 | #include <plat/dma.h> | 21 | #include <plat-omap/dma-omap.h> |
| 22 | 22 | ||
| 23 | #include "iomap.h" | 23 | #include "iomap.h" |
| 24 | #include "common.h" | 24 | #include "common.h" |
| @@ -134,7 +134,6 @@ void __init omap1_init_early(void) | |||
| 134 | */ | 134 | */ |
| 135 | omap1_clk_init(); | 135 | omap1_clk_init(); |
| 136 | omap1_mux_init(); | 136 | omap1_mux_init(); |
| 137 | omap_init_consistent_dma_size(); | ||
| 138 | } | 137 | } |
| 139 | 138 | ||
| 140 | void __init omap1_init_late(void) | 139 | void __init omap1_init_late(void) |
diff --git a/arch/arm/mach-omap1/iomap.h b/arch/arm/mach-omap1/iomap.h index 330c4716b028..f4e2d7a21365 100644 --- a/arch/arm/mach-omap1/iomap.h +++ b/arch/arm/mach-omap1/iomap.h | |||
| @@ -22,9 +22,6 @@ | |||
| 22 | * 675 Mass Ave, Cambridge, MA 02139, USA. | 22 | * 675 Mass Ave, Cambridge, MA 02139, USA. |
| 23 | */ | 23 | */ |
| 24 | 24 | ||
| 25 | #define OMAP1_IO_OFFSET 0x01000000 /* Virtual IO = 0xfefb0000 */ | ||
| 26 | #define OMAP1_IO_ADDRESS(pa) IOMEM((pa) - OMAP1_IO_OFFSET) | ||
| 27 | |||
| 28 | /* | 25 | /* |
| 29 | * ---------------------------------------------------------------------------- | 26 | * ---------------------------------------------------------------------------- |
| 30 | * Omap1 specific IO mapping | 27 | * Omap1 specific IO mapping |
diff --git a/arch/arm/mach-omap1/irq.c b/arch/arm/mach-omap1/irq.c index 6995fb6a3345..122ef67939a2 100644 --- a/arch/arm/mach-omap1/irq.c +++ b/arch/arm/mach-omap1/irq.c | |||
| @@ -45,7 +45,7 @@ | |||
| 45 | #include <asm/irq.h> | 45 | #include <asm/irq.h> |
| 46 | #include <asm/mach/irq.h> | 46 | #include <asm/mach/irq.h> |
| 47 | 47 | ||
| 48 | #include <plat/cpu.h> | 48 | #include "soc.h" |
| 49 | 49 | ||
| 50 | #include <mach/hardware.h> | 50 | #include <mach/hardware.h> |
| 51 | 51 | ||
diff --git a/arch/arm/mach-omap1/lcd_dma.c b/arch/arm/mach-omap1/lcd_dma.c index ed42628611bc..7ed8c1857d56 100644 --- a/arch/arm/mach-omap1/lcd_dma.c +++ b/arch/arm/mach-omap1/lcd_dma.c | |||
| @@ -27,11 +27,13 @@ | |||
| 27 | #include <linux/interrupt.h> | 27 | #include <linux/interrupt.h> |
| 28 | #include <linux/io.h> | 28 | #include <linux/io.h> |
| 29 | 29 | ||
| 30 | #include <plat/dma.h> | 30 | #include <plat-omap/dma-omap.h> |
| 31 | 31 | ||
| 32 | #include <mach/hardware.h> | 32 | #include <mach/hardware.h> |
| 33 | #include <mach/lcdc.h> | 33 | #include <mach/lcdc.h> |
| 34 | 34 | ||
| 35 | #include "dma.h" | ||
| 36 | |||
| 35 | int omap_lcd_dma_running(void) | 37 | int omap_lcd_dma_running(void) |
| 36 | { | 38 | { |
| 37 | /* | 39 | /* |
diff --git a/arch/arm/mach-omap1/mcbsp.c b/arch/arm/mach-omap1/mcbsp.c index bdc2e7541adb..c6d8fdf92e9c 100644 --- a/arch/arm/mach-omap1/mcbsp.c +++ b/arch/arm/mach-omap1/mcbsp.c | |||
| @@ -19,14 +19,15 @@ | |||
| 19 | #include <linux/platform_device.h> | 19 | #include <linux/platform_device.h> |
| 20 | #include <linux/slab.h> | 20 | #include <linux/slab.h> |
| 21 | 21 | ||
| 22 | #include <plat/dma.h> | 22 | #include <plat-omap/dma-omap.h> |
| 23 | #include <mach/mux.h> | 23 | #include <mach/mux.h> |
| 24 | #include <plat/cpu.h> | 24 | #include "soc.h" |
| 25 | #include <linux/platform_data/asoc-ti-mcbsp.h> | 25 | #include <linux/platform_data/asoc-ti-mcbsp.h> |
| 26 | 26 | ||
| 27 | #include <mach/irqs.h> | 27 | #include <mach/irqs.h> |
| 28 | 28 | ||
| 29 | #include "iomap.h" | 29 | #include "iomap.h" |
| 30 | #include "dma.h" | ||
| 30 | 31 | ||
| 31 | #define DPS_RSTCT2_PER_EN (1 << 0) | 32 | #define DPS_RSTCT2_PER_EN (1 << 0) |
| 32 | #define DSP_RSTCT2_WD_PER_EN (1 << 1) | 33 | #define DSP_RSTCT2_WD_PER_EN (1 << 1) |
diff --git a/arch/arm/mach-omap1/mmc.h b/arch/arm/mach-omap1/mmc.h new file mode 100644 index 000000000000..39c2b13de884 --- /dev/null +++ b/arch/arm/mach-omap1/mmc.h | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | #include <linux/mmc/host.h> | ||
| 2 | #include <linux/platform_data/mmc-omap.h> | ||
| 3 | |||
| 4 | #define OMAP15XX_NR_MMC 1 | ||
| 5 | #define OMAP16XX_NR_MMC 2 | ||
| 6 | #define OMAP1_MMC_SIZE 0x080 | ||
| 7 | #define OMAP1_MMC1_BASE 0xfffb7800 | ||
| 8 | #define OMAP1_MMC2_BASE 0xfffb7c00 /* omap16xx only */ | ||
| 9 | |||
| 10 | #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) | ||
| 11 | void omap1_init_mmc(struct omap_mmc_platform_data **mmc_data, | ||
| 12 | int nr_controllers); | ||
| 13 | #else | ||
| 14 | static inline void omap1_init_mmc(struct omap_mmc_platform_data **mmc_data, | ||
| 15 | int nr_controllers) | ||
| 16 | { | ||
| 17 | } | ||
| 18 | #endif | ||
diff --git a/arch/arm/mach-omap1/opp_data.c b/arch/arm/mach-omap1/opp_data.c index 9cd4ddb51397..8dcebe6d8882 100644 --- a/arch/arm/mach-omap1/opp_data.c +++ b/arch/arm/mach-omap1/opp_data.c | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | * published by the Free Software Foundation. | 10 | * published by the Free Software Foundation. |
| 11 | */ | 11 | */ |
| 12 | 12 | ||
| 13 | #include <plat/clkdev_omap.h> | 13 | #include "clock.h" |
| 14 | #include "opp.h" | 14 | #include "opp.h" |
| 15 | 15 | ||
| 16 | /*------------------------------------------------------------------------- | 16 | /*------------------------------------------------------------------------- |
diff --git a/arch/arm/mach-omap1/pm.c b/arch/arm/mach-omap1/pm.c index 47ec16155483..66d663a6ef3a 100644 --- a/arch/arm/mach-omap1/pm.c +++ b/arch/arm/mach-omap1/pm.c | |||
| @@ -44,23 +44,23 @@ | |||
| 44 | #include <linux/io.h> | 44 | #include <linux/io.h> |
| 45 | #include <linux/atomic.h> | 45 | #include <linux/atomic.h> |
| 46 | 46 | ||
| 47 | #include <asm/fncpy.h> | ||
| 47 | #include <asm/system_misc.h> | 48 | #include <asm/system_misc.h> |
| 48 | #include <asm/irq.h> | 49 | #include <asm/irq.h> |
| 49 | #include <asm/mach/time.h> | 50 | #include <asm/mach/time.h> |
| 50 | #include <asm/mach/irq.h> | 51 | #include <asm/mach/irq.h> |
| 51 | 52 | ||
| 52 | #include <plat/cpu.h> | 53 | #include <mach/tc.h> |
| 53 | #include <plat/clock.h> | ||
| 54 | #include <plat/sram.h> | ||
| 55 | #include <plat/tc.h> | ||
| 56 | #include <mach/mux.h> | 54 | #include <mach/mux.h> |
| 57 | #include <plat/dma.h> | 55 | #include <plat-omap/dma-omap.h> |
| 58 | #include <plat/dmtimer.h> | 56 | #include <plat/dmtimer.h> |
| 59 | 57 | ||
| 60 | #include <mach/irqs.h> | 58 | #include <mach/irqs.h> |
| 61 | 59 | ||
| 62 | #include "iomap.h" | 60 | #include "iomap.h" |
| 61 | #include "clock.h" | ||
| 63 | #include "pm.h" | 62 | #include "pm.h" |
| 63 | #include "sram.h" | ||
| 64 | 64 | ||
| 65 | static unsigned int arm_sleep_save[ARM_SLEEP_SAVE_SIZE]; | 65 | static unsigned int arm_sleep_save[ARM_SLEEP_SAVE_SIZE]; |
| 66 | static unsigned short dsp_sleep_save[DSP_SLEEP_SAVE_SIZE]; | 66 | static unsigned short dsp_sleep_save[DSP_SLEEP_SAVE_SIZE]; |
diff --git a/arch/arm/mach-omap1/pm_bus.c b/arch/arm/mach-omap1/pm_bus.c index 7868e75ad077..3f2d39672393 100644 --- a/arch/arm/mach-omap1/pm_bus.c +++ b/arch/arm/mach-omap1/pm_bus.c | |||
| @@ -19,8 +19,7 @@ | |||
| 19 | #include <linux/clk.h> | 19 | #include <linux/clk.h> |
| 20 | #include <linux/err.h> | 20 | #include <linux/err.h> |
| 21 | 21 | ||
| 22 | #include <plat/omap_device.h> | 22 | #include "soc.h" |
| 23 | #include <plat/omap-pm.h> | ||
| 24 | 23 | ||
| 25 | #ifdef CONFIG_PM_RUNTIME | 24 | #ifdef CONFIG_PM_RUNTIME |
| 26 | static int omap1_pm_runtime_suspend(struct device *dev) | 25 | static int omap1_pm_runtime_suspend(struct device *dev) |
diff --git a/arch/arm/mach-omap1/reset.c b/arch/arm/mach-omap1/reset.c index b17709103866..a0a9f97772ea 100644 --- a/arch/arm/mach-omap1/reset.c +++ b/arch/arm/mach-omap1/reset.c | |||
| @@ -10,6 +10,19 @@ | |||
| 10 | 10 | ||
| 11 | #include "common.h" | 11 | #include "common.h" |
| 12 | 12 | ||
| 13 | /* ARM_SYSST bit shifts related to SoC reset sources */ | ||
| 14 | #define ARM_SYSST_POR_SHIFT 5 | ||
| 15 | #define ARM_SYSST_EXT_RST_SHIFT 4 | ||
| 16 | #define ARM_SYSST_ARM_WDRST_SHIFT 2 | ||
| 17 | #define ARM_SYSST_GLOB_SWRST_SHIFT 1 | ||
| 18 | |||
| 19 | /* Standardized reset source bits (across all OMAP SoCs) */ | ||
| 20 | #define OMAP_GLOBAL_COLD_RST_SRC_ID_SHIFT 0 | ||
| 21 | #define OMAP_GLOBAL_WARM_RST_SRC_ID_SHIFT 1 | ||
| 22 | #define OMAP_MPU_WD_RST_SRC_ID_SHIFT 3 | ||
| 23 | #define OMAP_EXTWARM_RST_SRC_ID_SHIFT 5 | ||
| 24 | |||
| 25 | |||
| 13 | void omap1_restart(char mode, const char *cmd) | 26 | void omap1_restart(char mode, const char *cmd) |
| 14 | { | 27 | { |
| 15 | /* | 28 | /* |
| @@ -23,3 +36,28 @@ void omap1_restart(char mode, const char *cmd) | |||
| 23 | 36 | ||
| 24 | omap_writew(1, ARM_RSTCT1); | 37 | omap_writew(1, ARM_RSTCT1); |
| 25 | } | 38 | } |
| 39 | |||
| 40 | /** | ||
| 41 | * omap1_get_reset_sources - return the source of the SoC's last reset | ||
| 42 | * | ||
| 43 | * Returns bits that represent the last reset source for the SoC. The | ||
| 44 | * format is standardized across OMAPs for use by the OMAP watchdog. | ||
| 45 | */ | ||
| 46 | int omap1_get_reset_sources(void) | ||
| 47 | { | ||
| 48 | int ret = 0; | ||
| 49 | u16 rs; | ||
| 50 | |||
| 51 | rs = __raw_readw(ARM_SYSST); | ||
| 52 | |||
| 53 | if (rs & (1 << ARM_SYSST_POR_SHIFT)) | ||
| 54 | ret |= 1 << OMAP_GLOBAL_COLD_RST_SRC_ID_SHIFT; | ||
| 55 | if (rs & (1 << ARM_SYSST_EXT_RST_SHIFT)) | ||
| 56 | ret |= 1 << OMAP_EXTWARM_RST_SRC_ID_SHIFT; | ||
| 57 | if (rs & (1 << ARM_SYSST_ARM_WDRST_SHIFT)) | ||
| 58 | ret |= 1 << OMAP_MPU_WD_RST_SRC_ID_SHIFT; | ||
| 59 | if (rs & (1 << ARM_SYSST_GLOB_SWRST_SHIFT)) | ||
| 60 | ret |= 1 << OMAP_GLOBAL_WARM_RST_SRC_ID_SHIFT; | ||
| 61 | |||
| 62 | return ret; | ||
| 63 | } | ||
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 | ||
diff --git a/arch/arm/mach-omap1/sleep.S b/arch/arm/mach-omap1/sleep.S index 0e628743bd03..a908c51839a4 100644 --- a/arch/arm/mach-omap1/sleep.S +++ b/arch/arm/mach-omap1/sleep.S | |||
| @@ -36,6 +36,8 @@ | |||
| 36 | 36 | ||
| 37 | #include <asm/assembler.h> | 37 | #include <asm/assembler.h> |
| 38 | 38 | ||
| 39 | #include <mach/hardware.h> | ||
| 40 | |||
| 39 | #include "iomap.h" | 41 | #include "iomap.h" |
| 40 | #include "pm.h" | 42 | #include "pm.h" |
| 41 | 43 | ||
diff --git a/arch/arm/mach-omap1/soc.h b/arch/arm/mach-omap1/soc.h new file mode 100644 index 000000000000..69daf0187b1d --- /dev/null +++ b/arch/arm/mach-omap1/soc.h | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | /* | ||
| 2 | * We can move mach/soc.h here once the drivers are fixed | ||
| 3 | */ | ||
| 4 | #include <mach/soc.h> | ||
diff --git a/arch/arm/mach-omap1/sram-init.c b/arch/arm/mach-omap1/sram-init.c new file mode 100644 index 000000000000..6431b0f862ce --- /dev/null +++ b/arch/arm/mach-omap1/sram-init.c | |||
| @@ -0,0 +1,76 @@ | |||
| 1 | /* | ||
| 2 | * OMAP SRAM detection and management | ||
| 3 | * | ||
| 4 | * Copyright (C) 2005 Nokia Corporation | ||
| 5 | * Written by Tony Lindgren <tony@atomide.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #include <linux/module.h> | ||
| 13 | #include <linux/kernel.h> | ||
| 14 | #include <linux/init.h> | ||
| 15 | #include <linux/io.h> | ||
| 16 | |||
| 17 | #include <asm/fncpy.h> | ||
| 18 | #include <asm/tlb.h> | ||
| 19 | #include <asm/cacheflush.h> | ||
| 20 | |||
| 21 | #include <asm/mach/map.h> | ||
| 22 | |||
| 23 | #include "soc.h" | ||
| 24 | #include "sram.h" | ||
| 25 | |||
| 26 | #define OMAP1_SRAM_PA 0x20000000 | ||
| 27 | #define SRAM_BOOTLOADER_SZ 0x80 | ||
| 28 | |||
| 29 | /* | ||
| 30 | * The amount of SRAM depends on the core type. | ||
| 31 | * Note that we cannot try to test for SRAM here because writes | ||
| 32 | * to secure SRAM will hang the system. Also the SRAM is not | ||
| 33 | * yet mapped at this point. | ||
| 34 | */ | ||
| 35 | static void __init omap_detect_and_map_sram(void) | ||
| 36 | { | ||
| 37 | unsigned long omap_sram_skip = SRAM_BOOTLOADER_SZ; | ||
| 38 | unsigned long omap_sram_start = OMAP1_SRAM_PA; | ||
| 39 | unsigned long omap_sram_size; | ||
| 40 | |||
| 41 | if (cpu_is_omap7xx()) | ||
| 42 | omap_sram_size = 0x32000; /* 200K */ | ||
| 43 | else if (cpu_is_omap15xx()) | ||
| 44 | omap_sram_size = 0x30000; /* 192K */ | ||
| 45 | else if (cpu_is_omap1610() || cpu_is_omap1611() || | ||
| 46 | cpu_is_omap1621() || cpu_is_omap1710()) | ||
| 47 | omap_sram_size = 0x4000; /* 16K */ | ||
| 48 | else { | ||
| 49 | pr_err("Could not detect SRAM size\n"); | ||
| 50 | omap_sram_size = 0x4000; | ||
| 51 | } | ||
| 52 | |||
| 53 | omap_map_sram(omap_sram_start, omap_sram_size, | ||
| 54 | omap_sram_skip, 1); | ||
| 55 | } | ||
| 56 | |||
| 57 | static void (*_omap_sram_reprogram_clock)(u32 dpllctl, u32 ckctl); | ||
| 58 | |||
| 59 | void omap_sram_reprogram_clock(u32 dpllctl, u32 ckctl) | ||
| 60 | { | ||
| 61 | BUG_ON(!_omap_sram_reprogram_clock); | ||
| 62 | /* On 730, bit 13 must always be 1 */ | ||
| 63 | if (cpu_is_omap7xx()) | ||
| 64 | ckctl |= 0x2000; | ||
| 65 | _omap_sram_reprogram_clock(dpllctl, ckctl); | ||
| 66 | } | ||
| 67 | |||
| 68 | int __init omap_sram_init(void) | ||
| 69 | { | ||
| 70 | omap_detect_and_map_sram(); | ||
| 71 | _omap_sram_reprogram_clock = | ||
| 72 | omap_sram_push(omap1_sram_reprogram_clock, | ||
| 73 | omap1_sram_reprogram_clock_sz); | ||
| 74 | |||
| 75 | return 0; | ||
| 76 | } | ||
diff --git a/arch/arm/mach-omap1/sram.h b/arch/arm/mach-omap1/sram.h new file mode 100644 index 000000000000..d5a6c8362301 --- /dev/null +++ b/arch/arm/mach-omap1/sram.h | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | #include <plat/sram.h> | ||
| 2 | |||
| 3 | extern void omap_sram_reprogram_clock(u32 dpllctl, u32 ckctl); | ||
| 4 | |||
| 5 | /* Do not use these */ | ||
| 6 | extern void omap1_sram_reprogram_clock(u32 ckctl, u32 dpllctl); | ||
| 7 | extern unsigned long omap1_sram_reprogram_clock_sz; | ||
diff --git a/arch/arm/mach-omap1/timer32k.c b/arch/arm/mach-omap1/timer32k.c index 74529549130c..89368195bf08 100644 --- a/arch/arm/mach-omap1/timer32k.c +++ b/arch/arm/mach-omap1/timer32k.c | |||
| @@ -50,6 +50,7 @@ | |||
| 50 | #include <asm/mach/irq.h> | 50 | #include <asm/mach/irq.h> |
| 51 | #include <asm/mach/time.h> | 51 | #include <asm/mach/time.h> |
| 52 | 52 | ||
| 53 | #include <plat/counter-32k.h> | ||
| 53 | #include <plat/dmtimer.h> | 54 | #include <plat/dmtimer.h> |
| 54 | 55 | ||
| 55 | #include <mach/hardware.h> | 56 | #include <mach/hardware.h> |
diff --git a/arch/arm/mach-omap1/usb.c b/arch/arm/mach-omap1/usb.c index 84267edd9421..104fed366b8f 100644 --- a/arch/arm/mach-omap1/usb.c +++ b/arch/arm/mach-omap1/usb.c | |||
| @@ -301,7 +301,7 @@ static inline void otg_device_init(struct omap_usb_config *pdata) | |||
| 301 | 301 | ||
| 302 | #endif | 302 | #endif |
| 303 | 303 | ||
| 304 | u32 __init omap1_usb0_init(unsigned nwires, unsigned is_device) | 304 | static u32 __init omap1_usb0_init(unsigned nwires, unsigned is_device) |
| 305 | { | 305 | { |
| 306 | u32 syscon1 = 0; | 306 | u32 syscon1 = 0; |
| 307 | 307 | ||
| @@ -409,7 +409,7 @@ u32 __init omap1_usb0_init(unsigned nwires, unsigned is_device) | |||
| 409 | return syscon1 << 16; | 409 | return syscon1 << 16; |
| 410 | } | 410 | } |
| 411 | 411 | ||
| 412 | u32 __init omap1_usb1_init(unsigned nwires) | 412 | static u32 __init omap1_usb1_init(unsigned nwires) |
| 413 | { | 413 | { |
| 414 | u32 syscon1 = 0; | 414 | u32 syscon1 = 0; |
| 415 | 415 | ||
| @@ -475,7 +475,7 @@ bad: | |||
| 475 | return syscon1 << 20; | 475 | return syscon1 << 20; |
| 476 | } | 476 | } |
| 477 | 477 | ||
| 478 | u32 __init omap1_usb2_init(unsigned nwires, unsigned alt_pingroup) | 478 | static u32 __init omap1_usb2_init(unsigned nwires, unsigned alt_pingroup) |
| 479 | { | 479 | { |
| 480 | u32 syscon1 = 0; | 480 | u32 syscon1 = 0; |
| 481 | 481 | ||
diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index fe40d9e488c9..c94d495b8d95 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile | |||
| @@ -4,30 +4,37 @@ | |||
| 4 | 4 | ||
| 5 | # Common support | 5 | # Common support |
| 6 | obj-y := id.o io.o control.o mux.o devices.o serial.o gpmc.o timer.o pm.o \ | 6 | obj-y := id.o io.o control.o mux.o devices.o serial.o gpmc.o timer.o pm.o \ |
| 7 | common.o gpio.o dma.o wd_timer.o display.o i2c.o hdq1w.o omap_hwmod.o | 7 | common.o gpio.o dma.o wd_timer.o display.o i2c.o hdq1w.o omap_hwmod.o \ |
| 8 | 8 | omap_device.o sram.o | |
| 9 | # INTCPS IP block support - XXX should be moved to drivers/ | 9 | |
| 10 | obj-$(CONFIG_ARCH_OMAP2) += irq.o | 10 | omap-2-3-common = irq.o |
| 11 | obj-$(CONFIG_ARCH_OMAP3) += irq.o | 11 | hwmod-common = omap_hwmod.o \ |
| 12 | obj-$(CONFIG_SOC_AM33XX) += irq.o | 12 | omap_hwmod_common_data.o |
| 13 | 13 | clock-common = clock.o clock_common_data.o \ | |
| 14 | # Secure monitor API support | 14 | clkt_dpll.o clkt_clksel.o |
| 15 | obj-$(CONFIG_ARCH_OMAP3) += omap-smc.o omap-secure.o | 15 | secure-common = omap-smc.o omap-secure.o |
| 16 | obj-$(CONFIG_ARCH_OMAP4) += omap-smc.o omap-secure.o | 16 | |
| 17 | obj-$(CONFIG_SOC_OMAP5) += omap-smc.o omap-secure.o | 17 | obj-$(CONFIG_ARCH_OMAP2) += $(omap-2-3-common) $(hwmod-common) |
| 18 | obj-$(CONFIG_ARCH_OMAP3) += $(omap-2-3-common) $(hwmod-common) $(secure-common) | ||
| 19 | obj-$(CONFIG_ARCH_OMAP4) += prm44xx.o $(hwmod-common) $(secure-common) | ||
| 20 | obj-$(CONFIG_SOC_AM33XX) += irq.o $(hwmod-common) | ||
| 21 | obj-$(CONFIG_SOC_OMAP5) += prm44xx.o $(hwmod-common) $(secure-common) | ||
| 18 | 22 | ||
| 19 | ifneq ($(CONFIG_SND_OMAP_SOC_MCBSP),) | 23 | ifneq ($(CONFIG_SND_OMAP_SOC_MCBSP),) |
| 20 | obj-y += mcbsp.o | 24 | obj-y += mcbsp.o |
| 21 | endif | 25 | endif |
| 22 | 26 | ||
| 23 | obj-$(CONFIG_TWL4030_CORE) += omap_twl.o | 27 | obj-$(CONFIG_TWL4030_CORE) += omap_twl.o |
| 28 | obj-$(CONFIG_SOC_HAS_OMAP2_SDRC) += sdrc.o | ||
| 24 | 29 | ||
| 25 | # SMP support ONLY available for OMAP4 | 30 | # SMP support ONLY available for OMAP4 |
| 26 | 31 | ||
| 27 | obj-$(CONFIG_SMP) += omap-smp.o omap-headsmp.o | 32 | obj-$(CONFIG_SMP) += omap-smp.o omap-headsmp.o |
| 28 | obj-$(CONFIG_HOTPLUG_CPU) += omap-hotplug.o | 33 | obj-$(CONFIG_HOTPLUG_CPU) += omap-hotplug.o |
| 29 | obj-$(CONFIG_ARCH_OMAP4) += omap4-common.o omap-wakeupgen.o | 34 | omap-4-5-common = omap4-common.o omap-wakeupgen.o \ |
| 30 | obj-$(CONFIG_SOC_OMAP5) += omap4-common.o omap-wakeupgen.o | 35 | sleep44xx.o |
| 36 | obj-$(CONFIG_ARCH_OMAP4) += $(omap-4-5-common) | ||
| 37 | obj-$(CONFIG_SOC_OMAP5) += $(omap-4-5-common) | ||
| 31 | 38 | ||
| 32 | plus_sec := $(call as-instr,.arch_extension sec,+sec) | 39 | plus_sec := $(call as-instr,.arch_extension sec,+sec) |
| 33 | AFLAGS_omap-headsmp.o :=-Wa,-march=armv7-a$(plus_sec) | 40 | AFLAGS_omap-headsmp.o :=-Wa,-march=armv7-a$(plus_sec) |
| @@ -52,7 +59,6 @@ obj-$(CONFIG_ARCH_OMAP4) += mux44xx.o | |||
| 52 | # SMS/SDRC | 59 | # SMS/SDRC |
| 53 | obj-$(CONFIG_ARCH_OMAP2) += sdrc2xxx.o | 60 | obj-$(CONFIG_ARCH_OMAP2) += sdrc2xxx.o |
| 54 | # obj-$(CONFIG_ARCH_OMAP3) += sdrc3xxx.o | 61 | # obj-$(CONFIG_ARCH_OMAP3) += sdrc3xxx.o |
| 55 | obj-$(CONFIG_SOC_HAS_OMAP2_SDRC) += sdrc.o | ||
| 56 | 62 | ||
| 57 | # OPP table initialization | 63 | # OPP table initialization |
| 58 | ifeq ($(CONFIG_PM_OPP),y) | 64 | ifeq ($(CONFIG_PM_OPP),y) |
| @@ -63,15 +69,16 @@ endif | |||
| 63 | 69 | ||
| 64 | # Power Management | 70 | # Power Management |
| 65 | ifeq ($(CONFIG_PM),y) | 71 | ifeq ($(CONFIG_PM),y) |
| 66 | obj-$(CONFIG_ARCH_OMAP2) += pm24xx.o sleep24xx.o | 72 | obj-$(CONFIG_ARCH_OMAP2) += pm24xx.o |
| 73 | obj-$(CONFIG_ARCH_OMAP2) += sleep24xx.o | ||
| 67 | obj-$(CONFIG_ARCH_OMAP3) += pm34xx.o sleep34xx.o | 74 | obj-$(CONFIG_ARCH_OMAP3) += pm34xx.o sleep34xx.o |
| 68 | obj-$(CONFIG_ARCH_OMAP4) += pm44xx.o omap-mpuss-lowpower.o | 75 | obj-$(CONFIG_ARCH_OMAP4) += pm44xx.o omap-mpuss-lowpower.o |
| 69 | obj-$(CONFIG_ARCH_OMAP4) += sleep44xx.o | 76 | obj-$(CONFIG_SOC_OMAP5) += omap-mpuss-lowpower.o |
| 70 | obj-$(CONFIG_SOC_OMAP5) += omap-mpuss-lowpower.o sleep44xx.o | ||
| 71 | obj-$(CONFIG_PM_DEBUG) += pm-debug.o | 77 | obj-$(CONFIG_PM_DEBUG) += pm-debug.o |
| 78 | obj-$(CONFIG_OMAP_PM_NOOP) += omap-pm-noop.o | ||
| 72 | 79 | ||
| 73 | obj-$(CONFIG_POWER_AVS_OMAP) += sr_device.o | 80 | obj-$(CONFIG_POWER_AVS_OMAP) += sr_device.o |
| 74 | obj-$(CONFIG_POWER_AVS_OMAP_CLASS3) += smartreflex-class3.o | 81 | obj-$(CONFIG_POWER_AVS_OMAP_CLASS3) += smartreflex-class3.o |
| 75 | 82 | ||
| 76 | AFLAGS_sleep24xx.o :=-Wa,-march=armv6 | 83 | AFLAGS_sleep24xx.o :=-Wa,-march=armv6 |
| 77 | AFLAGS_sleep34xx.o :=-Wa,-march=armv7-a$(plus_sec) | 84 | AFLAGS_sleep34xx.o :=-Wa,-march=armv7-a$(plus_sec) |
| @@ -83,76 +90,82 @@ endif | |||
| 83 | endif | 90 | endif |
| 84 | 91 | ||
| 85 | ifeq ($(CONFIG_CPU_IDLE),y) | 92 | ifeq ($(CONFIG_CPU_IDLE),y) |
| 86 | obj-$(CONFIG_ARCH_OMAP3) += cpuidle34xx.o | 93 | obj-$(CONFIG_ARCH_OMAP3) += cpuidle34xx.o |
| 87 | obj-$(CONFIG_ARCH_OMAP4) += cpuidle44xx.o | 94 | obj-$(CONFIG_ARCH_OMAP4) += cpuidle44xx.o |
| 88 | endif | 95 | endif |
| 89 | 96 | ||
| 90 | # PRCM | 97 | # PRCM |
| 91 | obj-y += prcm.o prm_common.o | 98 | obj-y += prcm.o prm_common.o cm_common.o |
| 92 | obj-$(CONFIG_ARCH_OMAP2) += cm2xxx_3xxx.o prm2xxx_3xxx.o | 99 | obj-$(CONFIG_ARCH_OMAP2) += prm2xxx_3xxx.o prm2xxx.o cm2xxx.o |
| 93 | obj-$(CONFIG_ARCH_OMAP3) += cm2xxx_3xxx.o prm2xxx_3xxx.o | 100 | obj-$(CONFIG_ARCH_OMAP3) += prm2xxx_3xxx.o prm3xxx.o cm3xxx.o |
| 94 | obj-$(CONFIG_ARCH_OMAP3) += vc3xxx_data.o vp3xxx_data.o | 101 | obj-$(CONFIG_ARCH_OMAP3) += vc3xxx_data.o vp3xxx_data.o |
| 95 | obj-$(CONFIG_SOC_AM33XX) += prm33xx.o cm33xx.o | 102 | obj-$(CONFIG_SOC_AM33XX) += prm33xx.o cm33xx.o |
| 96 | omap-prcm-4-5-common = cminst44xx.o cm44xx.o prm44xx.o \ | 103 | omap-prcm-4-5-common = cminst44xx.o cm44xx.o prm44xx.o \ |
| 97 | prcm_mpu44xx.o prminst44xx.o \ | 104 | prcm_mpu44xx.o prminst44xx.o \ |
| 98 | vc44xx_data.o vp44xx_data.o \ | 105 | vc44xx_data.o vp44xx_data.o |
| 99 | prm44xx.o | ||
| 100 | obj-$(CONFIG_ARCH_OMAP4) += $(omap-prcm-4-5-common) | 106 | obj-$(CONFIG_ARCH_OMAP4) += $(omap-prcm-4-5-common) |
| 101 | obj-$(CONFIG_SOC_OMAP5) += $(omap-prcm-4-5-common) | 107 | obj-$(CONFIG_SOC_OMAP5) += $(omap-prcm-4-5-common) |
| 102 | 108 | ||
| 103 | # OMAP voltage domains | 109 | # OMAP voltage domains |
| 104 | obj-y += voltage.o vc.o vp.o | 110 | voltagedomain-common := voltage.o vc.o vp.o |
| 111 | obj-$(CONFIG_ARCH_OMAP2) += $(voltagedomain-common) | ||
| 105 | obj-$(CONFIG_ARCH_OMAP2) += voltagedomains2xxx_data.o | 112 | obj-$(CONFIG_ARCH_OMAP2) += voltagedomains2xxx_data.o |
| 113 | obj-$(CONFIG_ARCH_OMAP3) += $(voltagedomain-common) | ||
| 106 | obj-$(CONFIG_ARCH_OMAP3) += voltagedomains3xxx_data.o | 114 | obj-$(CONFIG_ARCH_OMAP3) += voltagedomains3xxx_data.o |
| 115 | obj-$(CONFIG_ARCH_OMAP4) += $(voltagedomain-common) | ||
| 107 | obj-$(CONFIG_ARCH_OMAP4) += voltagedomains44xx_data.o | 116 | obj-$(CONFIG_ARCH_OMAP4) += voltagedomains44xx_data.o |
| 108 | obj-$(CONFIG_SOC_AM33XX) += voltagedomains33xx_data.o | 117 | obj-$(CONFIG_SOC_AM33XX) += $(voltagedomain-common) |
| 118 | obj-$(CONFIG_SOC_AM33XX) += voltagedomains33xx_data.o | ||
| 119 | obj-$(CONFIG_SOC_OMAP5) += $(voltagedomain-common) | ||
| 109 | 120 | ||
| 110 | # OMAP powerdomain framework | 121 | # OMAP powerdomain framework |
| 111 | obj-y += powerdomain.o powerdomain-common.o | 122 | powerdomain-common += powerdomain.o powerdomain-common.o |
| 123 | obj-$(CONFIG_ARCH_OMAP2) += $(powerdomain-common) | ||
| 112 | obj-$(CONFIG_ARCH_OMAP2) += powerdomains2xxx_data.o | 124 | obj-$(CONFIG_ARCH_OMAP2) += powerdomains2xxx_data.o |
| 113 | obj-$(CONFIG_ARCH_OMAP2) += powerdomain2xxx_3xxx.o | ||
| 114 | obj-$(CONFIG_ARCH_OMAP2) += powerdomains2xxx_3xxx_data.o | 125 | obj-$(CONFIG_ARCH_OMAP2) += powerdomains2xxx_3xxx_data.o |
| 115 | obj-$(CONFIG_ARCH_OMAP3) += powerdomain2xxx_3xxx.o | 126 | obj-$(CONFIG_ARCH_OMAP3) += $(powerdomain-common) |
| 116 | obj-$(CONFIG_ARCH_OMAP3) += powerdomains3xxx_data.o | 127 | obj-$(CONFIG_ARCH_OMAP3) += powerdomains3xxx_data.o |
| 117 | obj-$(CONFIG_ARCH_OMAP3) += powerdomains2xxx_3xxx_data.o | 128 | obj-$(CONFIG_ARCH_OMAP3) += powerdomains2xxx_3xxx_data.o |
| 118 | obj-$(CONFIG_ARCH_OMAP4) += powerdomain44xx.o | 129 | obj-$(CONFIG_ARCH_OMAP4) += $(powerdomain-common) |
| 119 | obj-$(CONFIG_ARCH_OMAP4) += powerdomains44xx_data.o | 130 | obj-$(CONFIG_ARCH_OMAP4) += powerdomains44xx_data.o |
| 120 | obj-$(CONFIG_SOC_AM33XX) += powerdomain33xx.o | 131 | obj-$(CONFIG_SOC_AM33XX) += $(powerdomain-common) |
| 121 | obj-$(CONFIG_SOC_AM33XX) += powerdomains33xx_data.o | 132 | obj-$(CONFIG_SOC_AM33XX) += powerdomains33xx_data.o |
| 122 | obj-$(CONFIG_SOC_OMAP5) += powerdomain44xx.o | 133 | obj-$(CONFIG_SOC_OMAP5) += $(powerdomain-common) |
| 123 | 134 | ||
| 124 | # PRCM clockdomain control | 135 | # PRCM clockdomain control |
| 125 | obj-y += clockdomain.o | 136 | clockdomain-common += clockdomain.o |
| 126 | obj-$(CONFIG_ARCH_OMAP2) += clockdomain2xxx_3xxx.o | 137 | obj-$(CONFIG_ARCH_OMAP2) += $(clockdomain-common) |
| 127 | obj-$(CONFIG_ARCH_OMAP2) += clockdomains2xxx_3xxx_data.o | 138 | obj-$(CONFIG_ARCH_OMAP2) += clockdomains2xxx_3xxx_data.o |
| 128 | obj-$(CONFIG_SOC_OMAP2420) += clockdomains2420_data.o | 139 | obj-$(CONFIG_SOC_OMAP2420) += clockdomains2420_data.o |
| 129 | obj-$(CONFIG_SOC_OMAP2430) += clockdomains2430_data.o | 140 | obj-$(CONFIG_SOC_OMAP2430) += clockdomains2430_data.o |
| 130 | obj-$(CONFIG_ARCH_OMAP3) += clockdomain2xxx_3xxx.o | 141 | obj-$(CONFIG_ARCH_OMAP3) += $(clockdomain-common) |
| 131 | obj-$(CONFIG_ARCH_OMAP3) += clockdomains2xxx_3xxx_data.o | 142 | obj-$(CONFIG_ARCH_OMAP3) += clockdomains2xxx_3xxx_data.o |
| 132 | obj-$(CONFIG_ARCH_OMAP3) += clockdomains3xxx_data.o | 143 | obj-$(CONFIG_ARCH_OMAP3) += clockdomains3xxx_data.o |
| 133 | obj-$(CONFIG_ARCH_OMAP4) += clockdomain44xx.o | 144 | obj-$(CONFIG_ARCH_OMAP4) += $(clockdomain-common) |
| 134 | obj-$(CONFIG_ARCH_OMAP4) += clockdomains44xx_data.o | 145 | obj-$(CONFIG_ARCH_OMAP4) += clockdomains44xx_data.o |
| 135 | obj-$(CONFIG_SOC_AM33XX) += clockdomain33xx.o | 146 | obj-$(CONFIG_SOC_AM33XX) += $(clockdomain-common) |
| 136 | obj-$(CONFIG_SOC_AM33XX) += clockdomains33xx_data.o | 147 | obj-$(CONFIG_SOC_AM33XX) += clockdomains33xx_data.o |
| 137 | obj-$(CONFIG_SOC_OMAP5) += clockdomain44xx.o | 148 | obj-$(CONFIG_SOC_OMAP5) += $(clockdomain-common) |
| 138 | 149 | ||
| 139 | # Clock framework | 150 | # Clock framework |
| 140 | obj-y += clock.o clock_common_data.o \ | 151 | obj-$(CONFIG_ARCH_OMAP2) += $(clock-common) clock2xxx.o |
| 141 | clkt_dpll.o clkt_clksel.o | 152 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_sys.o |
| 142 | obj-$(CONFIG_ARCH_OMAP2) += clock2xxx.o | 153 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_dpllcore.o |
| 143 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_dpllcore.o clkt2xxx_sys.o | ||
| 144 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_virt_prcm_set.o | 154 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_virt_prcm_set.o |
| 145 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_apll.o clkt2xxx_osc.o | 155 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_apll.o clkt2xxx_osc.o |
| 146 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_dpll.o clkt_iclk.o | 156 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_dpll.o clkt_iclk.o |
| 147 | obj-$(CONFIG_SOC_OMAP2420) += clock2420_data.o | 157 | obj-$(CONFIG_SOC_OMAP2420) += clock2420_data.o |
| 148 | obj-$(CONFIG_SOC_OMAP2430) += clock2430.o clock2430_data.o | 158 | obj-$(CONFIG_SOC_OMAP2430) += clock2430.o clock2430_data.o |
| 149 | obj-$(CONFIG_ARCH_OMAP3) += clock3xxx.o | 159 | obj-$(CONFIG_ARCH_OMAP3) += $(clock-common) clock3xxx.o |
| 150 | obj-$(CONFIG_ARCH_OMAP3) += clock34xx.o clkt34xx_dpll3m2.o | 160 | obj-$(CONFIG_ARCH_OMAP3) += clock34xx.o clkt34xx_dpll3m2.o |
| 151 | obj-$(CONFIG_ARCH_OMAP3) += clock3517.o clock36xx.o clkt_iclk.o | 161 | obj-$(CONFIG_ARCH_OMAP3) += clock3517.o clock36xx.o |
| 152 | obj-$(CONFIG_ARCH_OMAP3) += dpll3xxx.o clock3xxx_data.o | 162 | obj-$(CONFIG_ARCH_OMAP3) += dpll3xxx.o clock3xxx_data.o |
| 153 | obj-$(CONFIG_ARCH_OMAP4) += clock44xx_data.o | 163 | obj-$(CONFIG_ARCH_OMAP3) += clkt_iclk.o |
| 164 | obj-$(CONFIG_ARCH_OMAP4) += $(clock-common) clock44xx_data.o | ||
| 154 | obj-$(CONFIG_ARCH_OMAP4) += dpll3xxx.o dpll44xx.o | 165 | obj-$(CONFIG_ARCH_OMAP4) += dpll3xxx.o dpll44xx.o |
| 155 | obj-$(CONFIG_SOC_AM33XX) += dpll3xxx.o clock33xx_data.o | 166 | obj-$(CONFIG_SOC_AM33XX) += $(clock-common) dpll3xxx.o |
| 167 | obj-$(CONFIG_SOC_AM33XX) += clock33xx_data.o | ||
| 168 | obj-$(CONFIG_SOC_OMAP5) += $(clock-common) | ||
| 156 | obj-$(CONFIG_SOC_OMAP5) += dpll3xxx.o dpll44xx.o | 169 | obj-$(CONFIG_SOC_OMAP5) += dpll3xxx.o dpll44xx.o |
| 157 | 170 | ||
| 158 | # OMAP2 clock rate set data (old "OPP" data) | 171 | # OMAP2 clock rate set data (old "OPP" data) |
| @@ -160,7 +173,6 @@ obj-$(CONFIG_SOC_OMAP2420) += opp2420_data.o | |||
| 160 | obj-$(CONFIG_SOC_OMAP2430) += opp2430_data.o | 173 | obj-$(CONFIG_SOC_OMAP2430) += opp2430_data.o |
| 161 | 174 | ||
| 162 | # hwmod data | 175 | # hwmod data |
| 163 | obj-y += omap_hwmod_common_data.o | ||
| 164 | obj-$(CONFIG_SOC_OMAP2420) += omap_hwmod_2xxx_ipblock_data.o | 176 | obj-$(CONFIG_SOC_OMAP2420) += omap_hwmod_2xxx_ipblock_data.o |
| 165 | obj-$(CONFIG_SOC_OMAP2420) += omap_hwmod_2xxx_3xxx_ipblock_data.o | 177 | obj-$(CONFIG_SOC_OMAP2420) += omap_hwmod_2xxx_3xxx_ipblock_data.o |
| 166 | obj-$(CONFIG_SOC_OMAP2420) += omap_hwmod_2xxx_interconnect_data.o | 178 | obj-$(CONFIG_SOC_OMAP2420) += omap_hwmod_2xxx_interconnect_data.o |
| @@ -206,10 +218,10 @@ obj-$(CONFIG_MACH_OMAP_H4) += board-h4.o | |||
| 206 | obj-$(CONFIG_MACH_OMAP_2430SDP) += board-2430sdp.o | 218 | obj-$(CONFIG_MACH_OMAP_2430SDP) += board-2430sdp.o |
| 207 | obj-$(CONFIG_MACH_OMAP_APOLLON) += board-apollon.o | 219 | obj-$(CONFIG_MACH_OMAP_APOLLON) += board-apollon.o |
| 208 | obj-$(CONFIG_MACH_OMAP3_BEAGLE) += board-omap3beagle.o | 220 | obj-$(CONFIG_MACH_OMAP3_BEAGLE) += board-omap3beagle.o |
| 209 | obj-$(CONFIG_MACH_DEVKIT8000) += board-devkit8000.o | 221 | obj-$(CONFIG_MACH_DEVKIT8000) += board-devkit8000.o |
| 210 | obj-$(CONFIG_MACH_OMAP_LDP) += board-ldp.o | 222 | obj-$(CONFIG_MACH_OMAP_LDP) += board-ldp.o |
| 211 | obj-$(CONFIG_MACH_OMAP3530_LV_SOM) += board-omap3logic.o | 223 | obj-$(CONFIG_MACH_OMAP3530_LV_SOM) += board-omap3logic.o |
| 212 | obj-$(CONFIG_MACH_OMAP3_TORPEDO) += board-omap3logic.o | 224 | obj-$(CONFIG_MACH_OMAP3_TORPEDO) += board-omap3logic.o |
| 213 | obj-$(CONFIG_MACH_ENCORE) += board-omap3encore.o | 225 | obj-$(CONFIG_MACH_ENCORE) += board-omap3encore.o |
| 214 | obj-$(CONFIG_MACH_OVERO) += board-overo.o | 226 | obj-$(CONFIG_MACH_OVERO) += board-overo.o |
| 215 | obj-$(CONFIG_MACH_OMAP3EVM) += board-omap3evm.o | 227 | obj-$(CONFIG_MACH_OMAP3EVM) += board-omap3evm.o |
diff --git a/arch/arm/mach-omap2/am35xx-emac.c b/arch/arm/mach-omap2/am35xx-emac.c index d0c54c573d34..af11dcdb7e2c 100644 --- a/arch/arm/mach-omap2/am35xx-emac.c +++ b/arch/arm/mach-omap2/am35xx-emac.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | #include <linux/err.h> | 18 | #include <linux/err.h> |
| 19 | #include <linux/davinci_emac.h> | 19 | #include <linux/davinci_emac.h> |
| 20 | #include <asm/system.h> | 20 | #include <asm/system.h> |
| 21 | #include <plat/omap_device.h> | 21 | #include "omap_device.h" |
| 22 | #include "am35xx.h" | 22 | #include "am35xx.h" |
| 23 | #include "control.h" | 23 | #include "control.h" |
| 24 | #include "am35xx-emac.h" | 24 | #include "am35xx-emac.h" |
diff --git a/arch/arm/mach-omap2/board-2430sdp.c b/arch/arm/mach-omap2/board-2430sdp.c index 95b384d54f8a..d1c01625fe5a 100644 --- a/arch/arm/mach-omap2/board-2430sdp.c +++ b/arch/arm/mach-omap2/board-2430sdp.c | |||
| @@ -28,14 +28,12 @@ | |||
| 28 | #include <linux/io.h> | 28 | #include <linux/io.h> |
| 29 | #include <linux/gpio.h> | 29 | #include <linux/gpio.h> |
| 30 | 30 | ||
| 31 | #include <mach/hardware.h> | ||
| 32 | #include <asm/mach-types.h> | 31 | #include <asm/mach-types.h> |
| 33 | #include <asm/mach/arch.h> | 32 | #include <asm/mach/arch.h> |
| 34 | #include <asm/mach/map.h> | 33 | #include <asm/mach/map.h> |
| 35 | 34 | ||
| 36 | #include "common.h" | 35 | #include "common.h" |
| 37 | #include <plat/gpmc.h> | 36 | #include "gpmc.h" |
| 38 | #include <plat/usb.h> | ||
| 39 | #include "gpmc-smc91x.h" | 37 | #include "gpmc-smc91x.h" |
| 40 | 38 | ||
| 41 | #include <video/omapdss.h> | 39 | #include <video/omapdss.h> |
diff --git a/arch/arm/mach-omap2/board-3430sdp.c b/arch/arm/mach-omap2/board-3430sdp.c index 96cd3693e1ae..79fd9048fd79 100644 --- a/arch/arm/mach-omap2/board-3430sdp.c +++ b/arch/arm/mach-omap2/board-3430sdp.c | |||
| @@ -30,15 +30,15 @@ | |||
| 30 | #include <asm/mach/arch.h> | 30 | #include <asm/mach/arch.h> |
| 31 | #include <asm/mach/map.h> | 31 | #include <asm/mach/map.h> |
| 32 | 32 | ||
| 33 | #include <plat/usb.h> | ||
| 34 | #include "common.h" | 33 | #include "common.h" |
| 35 | #include <plat/dma.h> | 34 | #include <plat-omap/dma-omap.h> |
| 36 | #include <plat/gpmc.h> | ||
| 37 | #include <video/omapdss.h> | 35 | #include <video/omapdss.h> |
| 38 | #include <video/omap-panel-tfp410.h> | 36 | #include <video/omap-panel-tfp410.h> |
| 39 | 37 | ||
| 38 | #include "gpmc.h" | ||
| 40 | #include "gpmc-smc91x.h" | 39 | #include "gpmc-smc91x.h" |
| 41 | 40 | ||
| 41 | #include "soc.h" | ||
| 42 | #include "board-flash.h" | 42 | #include "board-flash.h" |
| 43 | #include "mux.h" | 43 | #include "mux.h" |
| 44 | #include "sdram-qimonda-hyb18m512160af-6.h" | 44 | #include "sdram-qimonda-hyb18m512160af-6.h" |
diff --git a/arch/arm/mach-omap2/board-3630sdp.c b/arch/arm/mach-omap2/board-3630sdp.c index fc224ad86747..81871b1c735c 100644 --- a/arch/arm/mach-omap2/board-3630sdp.c +++ b/arch/arm/mach-omap2/board-3630sdp.c | |||
| @@ -18,9 +18,8 @@ | |||
| 18 | 18 | ||
| 19 | #include "common.h" | 19 | #include "common.h" |
| 20 | #include "gpmc-smc91x.h" | 20 | #include "gpmc-smc91x.h" |
| 21 | #include <plat/usb.h> | ||
| 22 | 21 | ||
| 23 | #include <mach/board-zoom.h> | 22 | #include "board-zoom.h" |
| 24 | 23 | ||
| 25 | #include "board-flash.h" | 24 | #include "board-flash.h" |
| 26 | #include "mux.h" | 25 | #include "mux.h" |
diff --git a/arch/arm/mach-omap2/board-4430sdp.c b/arch/arm/mach-omap2/board-4430sdp.c index 3669c120c7e8..fd80d976872d 100644 --- a/arch/arm/mach-omap2/board-4430sdp.c +++ b/arch/arm/mach-omap2/board-4430sdp.c | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | #include <linux/leds.h> | 27 | #include <linux/leds.h> |
| 28 | #include <linux/leds_pwm.h> | 28 | #include <linux/leds_pwm.h> |
| 29 | #include <linux/platform_data/omap4-keypad.h> | 29 | #include <linux/platform_data/omap4-keypad.h> |
| 30 | #include <linux/usb/musb.h> | ||
| 30 | 31 | ||
| 31 | #include <asm/hardware/gic.h> | 32 | #include <asm/hardware/gic.h> |
| 32 | #include <asm/mach-types.h> | 33 | #include <asm/mach-types.h> |
| @@ -34,8 +35,6 @@ | |||
| 34 | #include <asm/mach/map.h> | 35 | #include <asm/mach/map.h> |
| 35 | 36 | ||
| 36 | #include "common.h" | 37 | #include "common.h" |
| 37 | #include <plat/usb.h> | ||
| 38 | #include <plat/mmc.h> | ||
| 39 | #include "omap4-keypad.h" | 38 | #include "omap4-keypad.h" |
| 40 | #include <video/omapdss.h> | 39 | #include <video/omapdss.h> |
| 41 | #include <video/omap-panel-nokia-dsi.h> | 40 | #include <video/omap-panel-nokia-dsi.h> |
| @@ -45,6 +44,7 @@ | |||
| 45 | 44 | ||
| 46 | #include "soc.h" | 45 | #include "soc.h" |
| 47 | #include "mux.h" | 46 | #include "mux.h" |
| 47 | #include "mmc.h" | ||
| 48 | #include "hsmmc.h" | 48 | #include "hsmmc.h" |
| 49 | #include "control.h" | 49 | #include "control.h" |
| 50 | #include "common-board-devices.h" | 50 | #include "common-board-devices.h" |
diff --git a/arch/arm/mach-omap2/board-am3517crane.c b/arch/arm/mach-omap2/board-am3517crane.c index 318feadb1d6e..603503c587b7 100644 --- a/arch/arm/mach-omap2/board-am3517crane.c +++ b/arch/arm/mach-omap2/board-am3517crane.c | |||
| @@ -26,7 +26,6 @@ | |||
| 26 | #include <asm/mach/map.h> | 26 | #include <asm/mach/map.h> |
| 27 | 27 | ||
| 28 | #include "common.h" | 28 | #include "common.h" |
| 29 | #include <plat/usb.h> | ||
| 30 | 29 | ||
| 31 | #include "am35xx-emac.h" | 30 | #include "am35xx-emac.h" |
| 32 | #include "mux.h" | 31 | #include "mux.h" |
diff --git a/arch/arm/mach-omap2/board-am3517evm.c b/arch/arm/mach-omap2/board-am3517evm.c index e16289755f2e..96d6c5ab5d4c 100644 --- a/arch/arm/mach-omap2/board-am3517evm.c +++ b/arch/arm/mach-omap2/board-am3517evm.c | |||
| @@ -25,6 +25,7 @@ | |||
| 25 | #include <linux/can/platform/ti_hecc.h> | 25 | #include <linux/can/platform/ti_hecc.h> |
| 26 | #include <linux/davinci_emac.h> | 26 | #include <linux/davinci_emac.h> |
| 27 | #include <linux/mmc/host.h> | 27 | #include <linux/mmc/host.h> |
| 28 | #include <linux/usb/musb.h> | ||
| 28 | #include <linux/platform_data/gpio-omap.h> | 29 | #include <linux/platform_data/gpio-omap.h> |
| 29 | 30 | ||
| 30 | #include "am35xx.h" | 31 | #include "am35xx.h" |
| @@ -33,7 +34,6 @@ | |||
| 33 | #include <asm/mach/map.h> | 34 | #include <asm/mach/map.h> |
| 34 | 35 | ||
| 35 | #include "common.h" | 36 | #include "common.h" |
| 36 | #include <plat/usb.h> | ||
| 37 | #include <video/omapdss.h> | 37 | #include <video/omapdss.h> |
| 38 | #include <video/omap-panel-generic-dpi.h> | 38 | #include <video/omap-panel-generic-dpi.h> |
| 39 | #include <video/omap-panel-tfp410.h> | 39 | #include <video/omap-panel-tfp410.h> |
diff --git a/arch/arm/mach-omap2/board-apollon.c b/arch/arm/mach-omap2/board-apollon.c index cea3abace815..64cf1bde0f3b 100644 --- a/arch/arm/mach-omap2/board-apollon.c +++ b/arch/arm/mach-omap2/board-apollon.c | |||
| @@ -28,14 +28,14 @@ | |||
| 28 | #include <linux/clk.h> | 28 | #include <linux/clk.h> |
| 29 | #include <linux/smc91x.h> | 29 | #include <linux/smc91x.h> |
| 30 | #include <linux/gpio.h> | 30 | #include <linux/gpio.h> |
| 31 | #include <linux/platform_data/leds-omap.h> | ||
| 31 | 32 | ||
| 32 | #include <asm/mach-types.h> | 33 | #include <asm/mach-types.h> |
| 33 | #include <asm/mach/arch.h> | 34 | #include <asm/mach/arch.h> |
| 34 | #include <asm/mach/flash.h> | 35 | #include <asm/mach/flash.h> |
| 35 | 36 | ||
| 36 | #include <plat/led.h> | ||
| 37 | #include "common.h" | 37 | #include "common.h" |
| 38 | #include <plat/gpmc.h> | 38 | #include "gpmc.h" |
| 39 | 39 | ||
| 40 | #include <video/omapdss.h> | 40 | #include <video/omapdss.h> |
| 41 | #include <video/omap-panel-generic-dpi.h> | 41 | #include <video/omap-panel-generic-dpi.h> |
diff --git a/arch/arm/mach-omap2/board-cm-t35.c b/arch/arm/mach-omap2/board-cm-t35.c index 376d26eb601c..a8cad2237a2a 100644 --- a/arch/arm/mach-omap2/board-cm-t35.c +++ b/arch/arm/mach-omap2/board-cm-t35.c | |||
| @@ -38,21 +38,19 @@ | |||
| 38 | #include <asm/mach/arch.h> | 38 | #include <asm/mach/arch.h> |
| 39 | #include <asm/mach/map.h> | 39 | #include <asm/mach/map.h> |
| 40 | 40 | ||
| 41 | #include "common.h" | ||
| 42 | #include <linux/platform_data/mtd-nand-omap2.h> | 41 | #include <linux/platform_data/mtd-nand-omap2.h> |
| 43 | #include <plat/gpmc.h> | ||
| 44 | #include <plat/usb.h> | ||
| 45 | #include <video/omapdss.h> | 42 | #include <video/omapdss.h> |
| 46 | #include <video/omap-panel-generic-dpi.h> | 43 | #include <video/omap-panel-generic-dpi.h> |
| 47 | #include <video/omap-panel-tfp410.h> | 44 | #include <video/omap-panel-tfp410.h> |
| 48 | #include <linux/platform_data/spi-omap2-mcspi.h> | 45 | #include <linux/platform_data/spi-omap2-mcspi.h> |
| 49 | 46 | ||
| 50 | #include <mach/hardware.h> | 47 | #include "common.h" |
| 51 | |||
| 52 | #include "mux.h" | 48 | #include "mux.h" |
| 53 | #include "sdram-micron-mt46h32m32lf-6.h" | 49 | #include "sdram-micron-mt46h32m32lf-6.h" |
| 54 | #include "hsmmc.h" | 50 | #include "hsmmc.h" |
| 55 | #include "common-board-devices.h" | 51 | #include "common-board-devices.h" |
| 52 | #include "gpmc.h" | ||
| 53 | #include "gpmc-nand.h" | ||
| 56 | 54 | ||
| 57 | #define CM_T35_GPIO_PENDOWN 57 | 55 | #define CM_T35_GPIO_PENDOWN 57 |
| 58 | #define SB_T35_USB_HUB_RESET_GPIO 167 | 56 | #define SB_T35_USB_HUB_RESET_GPIO 167 |
| @@ -181,7 +179,7 @@ static struct omap_nand_platform_data cm_t35_nand_data = { | |||
| 181 | 179 | ||
| 182 | static void __init cm_t35_init_nand(void) | 180 | static void __init cm_t35_init_nand(void) |
| 183 | { | 181 | { |
| 184 | if (gpmc_nand_init(&cm_t35_nand_data) < 0) | 182 | if (gpmc_nand_init(&cm_t35_nand_data, NULL) < 0) |
| 185 | pr_err("CM-T35: Unable to register NAND device\n"); | 183 | pr_err("CM-T35: Unable to register NAND device\n"); |
| 186 | } | 184 | } |
| 187 | #else | 185 | #else |
diff --git a/arch/arm/mach-omap2/board-cm-t3517.c b/arch/arm/mach-omap2/board-cm-t3517.c index 59c0a45f75b0..278664731d2c 100644 --- a/arch/arm/mach-omap2/board-cm-t3517.c +++ b/arch/arm/mach-omap2/board-cm-t3517.c | |||
| @@ -39,9 +39,8 @@ | |||
| 39 | #include <asm/mach/map.h> | 39 | #include <asm/mach/map.h> |
| 40 | 40 | ||
| 41 | #include "common.h" | 41 | #include "common.h" |
| 42 | #include <plat/usb.h> | ||
| 43 | #include <linux/platform_data/mtd-nand-omap2.h> | 42 | #include <linux/platform_data/mtd-nand-omap2.h> |
| 44 | #include <plat/gpmc.h> | 43 | #include "gpmc.h" |
| 45 | 44 | ||
| 46 | #include "am35xx.h" | 45 | #include "am35xx.h" |
| 47 | 46 | ||
| @@ -49,6 +48,7 @@ | |||
| 49 | #include "control.h" | 48 | #include "control.h" |
| 50 | #include "common-board-devices.h" | 49 | #include "common-board-devices.h" |
| 51 | #include "am35xx-emac.h" | 50 | #include "am35xx-emac.h" |
| 51 | #include "gpmc-nand.h" | ||
| 52 | 52 | ||
| 53 | #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE) | 53 | #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE) |
| 54 | static struct gpio_led cm_t3517_leds[] = { | 54 | static struct gpio_led cm_t3517_leds[] = { |
| @@ -240,7 +240,7 @@ static struct omap_nand_platform_data cm_t3517_nand_data = { | |||
| 240 | 240 | ||
| 241 | static void __init cm_t3517_init_nand(void) | 241 | static void __init cm_t3517_init_nand(void) |
| 242 | { | 242 | { |
| 243 | if (gpmc_nand_init(&cm_t3517_nand_data) < 0) | 243 | if (gpmc_nand_init(&cm_t3517_nand_data, NULL) < 0) |
| 244 | pr_err("CM-T3517: NAND initialization failed\n"); | 244 | pr_err("CM-T3517: NAND initialization failed\n"); |
| 245 | } | 245 | } |
| 246 | #else | 246 | #else |
diff --git a/arch/arm/mach-omap2/board-devkit8000.c b/arch/arm/mach-omap2/board-devkit8000.c index 1fd161e934c7..933479e36737 100644 --- a/arch/arm/mach-omap2/board-devkit8000.c +++ b/arch/arm/mach-omap2/board-devkit8000.c | |||
| @@ -39,9 +39,8 @@ | |||
| 39 | #include <asm/mach/flash.h> | 39 | #include <asm/mach/flash.h> |
| 40 | 40 | ||
| 41 | #include "common.h" | 41 | #include "common.h" |
| 42 | #include <plat/gpmc.h> | 42 | #include "gpmc.h" |
| 43 | #include <linux/platform_data/mtd-nand-omap2.h> | 43 | #include <linux/platform_data/mtd-nand-omap2.h> |
| 44 | #include <plat/usb.h> | ||
| 45 | #include <video/omapdss.h> | 44 | #include <video/omapdss.h> |
| 46 | #include <video/omap-panel-generic-dpi.h> | 45 | #include <video/omap-panel-generic-dpi.h> |
| 47 | #include <video/omap-panel-tfp410.h> | 46 | #include <video/omap-panel-tfp410.h> |
| @@ -55,8 +54,11 @@ | |||
| 55 | #include "sdram-micron-mt46h32m32lf-6.h" | 54 | #include "sdram-micron-mt46h32m32lf-6.h" |
| 56 | #include "mux.h" | 55 | #include "mux.h" |
| 57 | #include "hsmmc.h" | 56 | #include "hsmmc.h" |
| 57 | #include "board-flash.h" | ||
| 58 | #include "common-board-devices.h" | 58 | #include "common-board-devices.h" |
| 59 | 59 | ||
| 60 | #define NAND_CS 0 | ||
| 61 | |||
| 60 | #define OMAP_DM9000_GPIO_IRQ 25 | 62 | #define OMAP_DM9000_GPIO_IRQ 25 |
| 61 | #define OMAP3_DEVKIT_TS_GPIO 27 | 63 | #define OMAP3_DEVKIT_TS_GPIO 27 |
| 62 | 64 | ||
| @@ -621,8 +623,9 @@ static void __init devkit8000_init(void) | |||
| 621 | 623 | ||
| 622 | usb_musb_init(NULL); | 624 | usb_musb_init(NULL); |
| 623 | usbhs_init(&usbhs_bdata); | 625 | usbhs_init(&usbhs_bdata); |
| 624 | omap_nand_flash_init(NAND_BUSWIDTH_16, devkit8000_nand_partitions, | 626 | board_nand_init(devkit8000_nand_partitions, |
| 625 | ARRAY_SIZE(devkit8000_nand_partitions)); | 627 | ARRAY_SIZE(devkit8000_nand_partitions), NAND_CS, |
| 628 | NAND_BUSWIDTH_16, NULL); | ||
| 626 | omap_twl4030_audio_init("omap3beagle"); | 629 | omap_twl4030_audio_init("omap3beagle"); |
| 627 | 630 | ||
| 628 | /* Ensure SDRC pins are mux'd for self-refresh */ | 631 | /* Ensure SDRC pins are mux'd for self-refresh */ |
diff --git a/arch/arm/mach-omap2/board-flash.c b/arch/arm/mach-omap2/board-flash.c index e642acf9cad0..c33adea0247c 100644 --- a/arch/arm/mach-omap2/board-flash.c +++ b/arch/arm/mach-omap2/board-flash.c | |||
| @@ -17,14 +17,14 @@ | |||
| 17 | #include <linux/mtd/physmap.h> | 17 | #include <linux/mtd/physmap.h> |
| 18 | #include <linux/io.h> | 18 | #include <linux/io.h> |
| 19 | 19 | ||
| 20 | #include <plat/cpu.h> | ||
| 21 | #include <plat/gpmc.h> | ||
| 22 | #include <linux/platform_data/mtd-nand-omap2.h> | 20 | #include <linux/platform_data/mtd-nand-omap2.h> |
| 23 | #include <linux/platform_data/mtd-onenand-omap2.h> | 21 | #include <linux/platform_data/mtd-onenand-omap2.h> |
| 24 | #include <plat/tc.h> | ||
| 25 | 22 | ||
| 23 | #include "soc.h" | ||
| 26 | #include "common.h" | 24 | #include "common.h" |
| 27 | #include "board-flash.h" | 25 | #include "board-flash.h" |
| 26 | #include "gpmc-onenand.h" | ||
| 27 | #include "gpmc-nand.h" | ||
| 28 | 28 | ||
| 29 | #define REG_FPGA_REV 0x10 | 29 | #define REG_FPGA_REV 0x10 |
| 30 | #define REG_FPGA_DIP_SWITCH_INPUT2 0x60 | 30 | #define REG_FPGA_DIP_SWITCH_INPUT2 0x60 |
| @@ -104,36 +104,35 @@ __init board_onenand_init(struct mtd_partition *onenand_parts, | |||
| 104 | defined(CONFIG_MTD_NAND_OMAP2_MODULE) | 104 | defined(CONFIG_MTD_NAND_OMAP2_MODULE) |
| 105 | 105 | ||
| 106 | /* Note that all values in this struct are in nanoseconds */ | 106 | /* Note that all values in this struct are in nanoseconds */ |
| 107 | static struct gpmc_timings nand_timings = { | 107 | struct gpmc_timings nand_default_timings[1] = { |
| 108 | { | ||
| 109 | .sync_clk = 0, | ||
| 108 | 110 | ||
| 109 | .sync_clk = 0, | 111 | .cs_on = 0, |
| 112 | .cs_rd_off = 36, | ||
| 113 | .cs_wr_off = 36, | ||
| 110 | 114 | ||
| 111 | .cs_on = 0, | 115 | .adv_on = 6, |
| 112 | .cs_rd_off = 36, | 116 | .adv_rd_off = 24, |
| 113 | .cs_wr_off = 36, | 117 | .adv_wr_off = 36, |
| 114 | 118 | ||
| 115 | .adv_on = 6, | 119 | .we_off = 30, |
| 116 | .adv_rd_off = 24, | 120 | .oe_off = 48, |
| 117 | .adv_wr_off = 36, | ||
| 118 | 121 | ||
| 119 | .we_off = 30, | 122 | .access = 54, |
| 120 | .oe_off = 48, | 123 | .rd_cycle = 72, |
| 124 | .wr_cycle = 72, | ||
| 121 | 125 | ||
| 122 | .access = 54, | 126 | .wr_access = 30, |
| 123 | .rd_cycle = 72, | 127 | .wr_data_mux_bus = 0, |
| 124 | .wr_cycle = 72, | 128 | }, |
| 125 | |||
| 126 | .wr_access = 30, | ||
| 127 | .wr_data_mux_bus = 0, | ||
| 128 | }; | 129 | }; |
| 129 | 130 | ||
| 130 | static struct omap_nand_platform_data board_nand_data = { | 131 | static struct omap_nand_platform_data board_nand_data; |
| 131 | .gpmc_t = &nand_timings, | ||
| 132 | }; | ||
| 133 | 132 | ||
| 134 | void | 133 | void |
| 135 | __init board_nand_init(struct mtd_partition *nand_parts, | 134 | __init board_nand_init(struct mtd_partition *nand_parts, u8 nr_parts, u8 cs, |
| 136 | u8 nr_parts, u8 cs, int nand_type) | 135 | int nand_type, struct gpmc_timings *gpmc_t) |
| 137 | { | 136 | { |
| 138 | board_nand_data.cs = cs; | 137 | board_nand_data.cs = cs; |
| 139 | board_nand_data.parts = nand_parts; | 138 | board_nand_data.parts = nand_parts; |
| @@ -141,7 +140,7 @@ __init board_nand_init(struct mtd_partition *nand_parts, | |||
| 141 | board_nand_data.devsize = nand_type; | 140 | board_nand_data.devsize = nand_type; |
| 142 | 141 | ||
| 143 | board_nand_data.ecc_opt = OMAP_ECC_HAMMING_CODE_DEFAULT; | 142 | board_nand_data.ecc_opt = OMAP_ECC_HAMMING_CODE_DEFAULT; |
| 144 | gpmc_nand_init(&board_nand_data); | 143 | gpmc_nand_init(&board_nand_data, gpmc_t); |
| 145 | } | 144 | } |
| 146 | #endif /* CONFIG_MTD_NAND_OMAP2 || CONFIG_MTD_NAND_OMAP2_MODULE */ | 145 | #endif /* CONFIG_MTD_NAND_OMAP2 || CONFIG_MTD_NAND_OMAP2_MODULE */ |
| 147 | 146 | ||
| @@ -238,5 +237,6 @@ void __init board_flash_init(struct flash_partitions partition_info[], | |||
| 238 | pr_err("NAND: Unable to find configuration in GPMC\n"); | 237 | pr_err("NAND: Unable to find configuration in GPMC\n"); |
| 239 | else | 238 | else |
| 240 | board_nand_init(partition_info[2].parts, | 239 | board_nand_init(partition_info[2].parts, |
| 241 | partition_info[2].nr_parts, nandcs, nand_type); | 240 | partition_info[2].nr_parts, nandcs, |
| 241 | nand_type, nand_default_timings); | ||
| 242 | } | 242 | } |
diff --git a/arch/arm/mach-omap2/board-flash.h b/arch/arm/mach-omap2/board-flash.h index c44b70d52021..2fb5d41a9fae 100644 --- a/arch/arm/mach-omap2/board-flash.h +++ b/arch/arm/mach-omap2/board-flash.h | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | */ | 12 | */ |
| 13 | #include <linux/mtd/mtd.h> | 13 | #include <linux/mtd/mtd.h> |
| 14 | #include <linux/mtd/partitions.h> | 14 | #include <linux/mtd/partitions.h> |
| 15 | #include <plat/gpmc.h> | 15 | #include "gpmc.h" |
| 16 | 16 | ||
| 17 | #define PDC_NOR 1 | 17 | #define PDC_NOR 1 |
| 18 | #define PDC_NAND 2 | 18 | #define PDC_NAND 2 |
| @@ -40,12 +40,14 @@ static inline void board_flash_init(struct flash_partitions part[], | |||
| 40 | #if defined(CONFIG_MTD_NAND_OMAP2) || \ | 40 | #if defined(CONFIG_MTD_NAND_OMAP2) || \ |
| 41 | defined(CONFIG_MTD_NAND_OMAP2_MODULE) | 41 | defined(CONFIG_MTD_NAND_OMAP2_MODULE) |
| 42 | extern void board_nand_init(struct mtd_partition *nand_parts, | 42 | extern void board_nand_init(struct mtd_partition *nand_parts, |
| 43 | u8 nr_parts, u8 cs, int nand_type); | 43 | u8 nr_parts, u8 cs, int nand_type, struct gpmc_timings *gpmc_t); |
| 44 | extern struct gpmc_timings nand_default_timings[]; | ||
| 44 | #else | 45 | #else |
| 45 | static inline void board_nand_init(struct mtd_partition *nand_parts, | 46 | static inline void board_nand_init(struct mtd_partition *nand_parts, |
| 46 | u8 nr_parts, u8 cs, int nand_type) | 47 | u8 nr_parts, u8 cs, int nand_type, struct gpmc_timings *gpmc_t) |
| 47 | { | 48 | { |
| 48 | } | 49 | } |
| 50 | #define nand_default_timings NULL | ||
| 49 | #endif | 51 | #endif |
| 50 | 52 | ||
| 51 | #if defined(CONFIG_MTD_ONENAND_OMAP2) || \ | 53 | #if defined(CONFIG_MTD_ONENAND_OMAP2) || \ |
diff --git a/arch/arm/mach-omap2/board-h4.c b/arch/arm/mach-omap2/board-h4.c index 8d04bf851af4..8668c72ee810 100644 --- a/arch/arm/mach-omap2/board-h4.c +++ b/arch/arm/mach-omap2/board-h4.c | |||
| @@ -26,15 +26,14 @@ | |||
| 26 | #include <linux/clk.h> | 26 | #include <linux/clk.h> |
| 27 | #include <linux/io.h> | 27 | #include <linux/io.h> |
| 28 | #include <linux/input/matrix_keypad.h> | 28 | #include <linux/input/matrix_keypad.h> |
| 29 | #include <linux/mfd/menelaus.h> | ||
| 29 | 30 | ||
| 30 | #include <asm/mach-types.h> | 31 | #include <asm/mach-types.h> |
| 31 | #include <asm/mach/arch.h> | 32 | #include <asm/mach/arch.h> |
| 32 | #include <asm/mach/map.h> | 33 | #include <asm/mach/map.h> |
| 33 | 34 | ||
| 34 | #include <plat/menelaus.h> | 35 | #include <plat-omap/dma-omap.h> |
| 35 | #include <plat/dma.h> | 36 | #include <plat/debug-devices.h> |
| 36 | #include <plat/gpmc.h> | ||
| 37 | #include "debug-devices.h" | ||
| 38 | 37 | ||
| 39 | #include <video/omapdss.h> | 38 | #include <video/omapdss.h> |
| 40 | #include <video/omap-panel-generic-dpi.h> | 39 | #include <video/omap-panel-generic-dpi.h> |
| @@ -42,6 +41,7 @@ | |||
| 42 | #include "common.h" | 41 | #include "common.h" |
| 43 | #include "mux.h" | 42 | #include "mux.h" |
| 44 | #include "control.h" | 43 | #include "control.h" |
| 44 | #include "gpmc.h" | ||
| 45 | 45 | ||
| 46 | #define H4_FLASH_CS 0 | 46 | #define H4_FLASH_CS 0 |
| 47 | #define H4_SMC91X_CS 1 | 47 | #define H4_SMC91X_CS 1 |
diff --git a/arch/arm/mach-omap2/board-igep0020.c b/arch/arm/mach-omap2/board-igep0020.c index 48d5e41dfbfa..dbc705ac4334 100644 --- a/arch/arm/mach-omap2/board-igep0020.c +++ b/arch/arm/mach-omap2/board-igep0020.c | |||
| @@ -29,20 +29,19 @@ | |||
| 29 | #include <asm/mach-types.h> | 29 | #include <asm/mach-types.h> |
| 30 | #include <asm/mach/arch.h> | 30 | #include <asm/mach/arch.h> |
| 31 | 31 | ||
| 32 | #include "common.h" | ||
| 33 | #include <plat/gpmc.h> | ||
| 34 | #include <plat/usb.h> | ||
| 35 | |||
| 36 | #include <video/omapdss.h> | 32 | #include <video/omapdss.h> |
| 37 | #include <video/omap-panel-tfp410.h> | 33 | #include <video/omap-panel-tfp410.h> |
| 38 | #include <linux/platform_data/mtd-onenand-omap2.h> | 34 | #include <linux/platform_data/mtd-onenand-omap2.h> |
| 39 | 35 | ||
| 36 | #include "common.h" | ||
| 37 | #include "gpmc.h" | ||
| 40 | #include "mux.h" | 38 | #include "mux.h" |
| 41 | #include "hsmmc.h" | 39 | #include "hsmmc.h" |
| 42 | #include "sdram-numonyx-m65kxxxxam.h" | 40 | #include "sdram-numonyx-m65kxxxxam.h" |
| 43 | #include "common-board-devices.h" | 41 | #include "common-board-devices.h" |
| 44 | #include "board-flash.h" | 42 | #include "board-flash.h" |
| 45 | #include "control.h" | 43 | #include "control.h" |
| 44 | #include "gpmc-onenand.h" | ||
| 46 | 45 | ||
| 47 | #define IGEP2_SMSC911X_CS 5 | 46 | #define IGEP2_SMSC911X_CS 5 |
| 48 | #define IGEP2_SMSC911X_GPIO 176 | 47 | #define IGEP2_SMSC911X_GPIO 176 |
| @@ -175,7 +174,7 @@ static void __init igep_flash_init(void) | |||
| 175 | pr_info("IGEP: initializing NAND memory device\n"); | 174 | pr_info("IGEP: initializing NAND memory device\n"); |
| 176 | board_nand_init(igep_flash_partitions, | 175 | board_nand_init(igep_flash_partitions, |
| 177 | ARRAY_SIZE(igep_flash_partitions), | 176 | ARRAY_SIZE(igep_flash_partitions), |
| 178 | 0, NAND_BUSWIDTH_16); | 177 | 0, NAND_BUSWIDTH_16, nand_default_timings); |
| 179 | } else if (mux == IGEP_SYSBOOT_ONENAND) { | 178 | } else if (mux == IGEP_SYSBOOT_ONENAND) { |
| 180 | pr_info("IGEP: initializing OneNAND memory device\n"); | 179 | pr_info("IGEP: initializing OneNAND memory device\n"); |
| 181 | board_onenand_init(igep_flash_partitions, | 180 | board_onenand_init(igep_flash_partitions, |
diff --git a/arch/arm/mach-omap2/board-ldp.c b/arch/arm/mach-omap2/board-ldp.c index ee8c3cfb95b3..1164b1061038 100644 --- a/arch/arm/mach-omap2/board-ldp.c +++ b/arch/arm/mach-omap2/board-ldp.c | |||
| @@ -35,9 +35,8 @@ | |||
| 35 | #include <asm/mach/map.h> | 35 | #include <asm/mach/map.h> |
| 36 | 36 | ||
| 37 | #include "common.h" | 37 | #include "common.h" |
| 38 | #include <plat/gpmc.h> | 38 | #include "board-zoom.h" |
| 39 | #include <mach/board-zoom.h> | 39 | #include "gpmc.h" |
| 40 | #include <plat/usb.h> | ||
| 41 | #include "gpmc-smsc911x.h" | 40 | #include "gpmc-smsc911x.h" |
| 42 | 41 | ||
| 43 | #include <video/omapdss.h> | 42 | #include <video/omapdss.h> |
| @@ -420,8 +419,8 @@ static void __init omap_ldp_init(void) | |||
| 420 | omap_serial_init(); | 419 | omap_serial_init(); |
| 421 | omap_sdrc_init(NULL, NULL); | 420 | omap_sdrc_init(NULL, NULL); |
| 422 | usb_musb_init(NULL); | 421 | usb_musb_init(NULL); |
| 423 | board_nand_init(ldp_nand_partitions, | 422 | board_nand_init(ldp_nand_partitions, ARRAY_SIZE(ldp_nand_partitions), |
| 424 | ARRAY_SIZE(ldp_nand_partitions), ZOOM_NAND_CS, 0); | 423 | ZOOM_NAND_CS, 0, nand_default_timings); |
| 425 | 424 | ||
| 426 | omap_hsmmc_init(mmc); | 425 | omap_hsmmc_init(mmc); |
| 427 | ldp_display_init(); | 426 | ldp_display_init(); |
diff --git a/arch/arm/mach-omap2/board-n8x0.c b/arch/arm/mach-omap2/board-n8x0.c index d95f727ca39a..e3efcb88cb3b 100644 --- a/arch/arm/mach-omap2/board-n8x0.c +++ b/arch/arm/mach-omap2/board-n8x0.c | |||
| @@ -22,16 +22,17 @@ | |||
| 22 | #include <linux/usb/musb.h> | 22 | #include <linux/usb/musb.h> |
| 23 | #include <linux/platform_data/spi-omap2-mcspi.h> | 23 | #include <linux/platform_data/spi-omap2-mcspi.h> |
| 24 | #include <linux/platform_data/mtd-onenand-omap2.h> | 24 | #include <linux/platform_data/mtd-onenand-omap2.h> |
| 25 | #include <linux/mfd/menelaus.h> | ||
| 25 | #include <sound/tlv320aic3x.h> | 26 | #include <sound/tlv320aic3x.h> |
| 26 | 27 | ||
| 27 | #include <asm/mach/arch.h> | 28 | #include <asm/mach/arch.h> |
| 28 | #include <asm/mach-types.h> | 29 | #include <asm/mach-types.h> |
| 29 | 30 | ||
| 30 | #include "common.h" | 31 | #include "common.h" |
| 31 | #include <plat/menelaus.h> | 32 | #include "mmc.h" |
| 32 | #include <plat/mmc.h> | ||
| 33 | 33 | ||
| 34 | #include "mux.h" | 34 | #include "mux.h" |
| 35 | #include "gpmc-onenand.h" | ||
| 35 | 36 | ||
| 36 | #define TUSB6010_ASYNC_CS 1 | 37 | #define TUSB6010_ASYNC_CS 1 |
| 37 | #define TUSB6010_SYNC_CS 4 | 38 | #define TUSB6010_SYNC_CS 4 |
diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index d41ab98890ff..5a3800da903f 100644 --- a/arch/arm/mach-omap2/board-omap3beagle.c +++ b/arch/arm/mach-omap2/board-omap3beagle.c | |||
| @@ -39,19 +39,22 @@ | |||
| 39 | #include <asm/mach/map.h> | 39 | #include <asm/mach/map.h> |
| 40 | #include <asm/mach/flash.h> | 40 | #include <asm/mach/flash.h> |
| 41 | 41 | ||
| 42 | #include "common.h" | ||
| 43 | #include <video/omapdss.h> | 42 | #include <video/omapdss.h> |
| 44 | #include <video/omap-panel-tfp410.h> | 43 | #include <video/omap-panel-tfp410.h> |
| 45 | #include <plat/gpmc.h> | ||
| 46 | #include <linux/platform_data/mtd-nand-omap2.h> | 44 | #include <linux/platform_data/mtd-nand-omap2.h> |
| 47 | #include <plat/usb.h> | ||
| 48 | #include <plat/omap_device.h> | ||
| 49 | 45 | ||
| 46 | #include "common.h" | ||
| 47 | #include "omap_device.h" | ||
| 48 | #include "gpmc.h" | ||
| 49 | #include "soc.h" | ||
| 50 | #include "mux.h" | 50 | #include "mux.h" |
| 51 | #include "hsmmc.h" | 51 | #include "hsmmc.h" |
| 52 | #include "pm.h" | 52 | #include "pm.h" |
| 53 | #include "board-flash.h" | ||
| 53 | #include "common-board-devices.h" | 54 | #include "common-board-devices.h" |
| 54 | 55 | ||
| 56 | #define NAND_CS 0 | ||
| 57 | |||
| 55 | /* | 58 | /* |
| 56 | * OMAP3 Beagle revision | 59 | * OMAP3 Beagle revision |
| 57 | * Run time detection of Beagle revision is done by reading GPIO. | 60 | * Run time detection of Beagle revision is done by reading GPIO. |
| @@ -518,8 +521,9 @@ static void __init omap3_beagle_init(void) | |||
| 518 | 521 | ||
| 519 | usb_musb_init(NULL); | 522 | usb_musb_init(NULL); |
| 520 | usbhs_init(&usbhs_bdata); | 523 | usbhs_init(&usbhs_bdata); |
| 521 | omap_nand_flash_init(NAND_BUSWIDTH_16, omap3beagle_nand_partitions, | 524 | board_nand_init(omap3beagle_nand_partitions, |
| 522 | ARRAY_SIZE(omap3beagle_nand_partitions)); | 525 | ARRAY_SIZE(omap3beagle_nand_partitions), NAND_CS, |
| 526 | NAND_BUSWIDTH_16, NULL); | ||
| 523 | omap_twl4030_audio_init("omap3beagle"); | 527 | omap_twl4030_audio_init("omap3beagle"); |
| 524 | 528 | ||
| 525 | /* Ensure msecure is mux'd to be able to set the RTC. */ | 529 | /* Ensure msecure is mux'd to be able to set the RTC. */ |
diff --git a/arch/arm/mach-omap2/board-omap3evm.c b/arch/arm/mach-omap2/board-omap3evm.c index b9b776b6c954..3c0b9a90f3b3 100644 --- a/arch/arm/mach-omap2/board-omap3evm.c +++ b/arch/arm/mach-omap2/board-omap3evm.c | |||
| @@ -32,6 +32,7 @@ | |||
| 32 | #include <linux/spi/ads7846.h> | 32 | #include <linux/spi/ads7846.h> |
| 33 | #include <linux/i2c/twl.h> | 33 | #include <linux/i2c/twl.h> |
| 34 | #include <linux/usb/otg.h> | 34 | #include <linux/usb/otg.h> |
| 35 | #include <linux/usb/musb.h> | ||
| 35 | #include <linux/usb/nop-usb-xceiv.h> | 36 | #include <linux/usb/nop-usb-xceiv.h> |
| 36 | #include <linux/smsc911x.h> | 37 | #include <linux/smsc911x.h> |
| 37 | 38 | ||
| @@ -45,17 +46,20 @@ | |||
| 45 | #include <asm/mach/arch.h> | 46 | #include <asm/mach/arch.h> |
| 46 | #include <asm/mach/map.h> | 47 | #include <asm/mach/map.h> |
| 47 | 48 | ||
| 48 | #include <plat/usb.h> | ||
| 49 | #include <linux/platform_data/mtd-nand-omap2.h> | 49 | #include <linux/platform_data/mtd-nand-omap2.h> |
| 50 | #include "common.h" | 50 | #include "common.h" |
| 51 | #include <linux/platform_data/spi-omap2-mcspi.h> | 51 | #include <linux/platform_data/spi-omap2-mcspi.h> |
| 52 | #include <video/omapdss.h> | 52 | #include <video/omapdss.h> |
| 53 | #include <video/omap-panel-tfp410.h> | 53 | #include <video/omap-panel-tfp410.h> |
| 54 | 54 | ||
| 55 | #include "soc.h" | ||
| 55 | #include "mux.h" | 56 | #include "mux.h" |
| 56 | #include "sdram-micron-mt46h32m32lf-6.h" | 57 | #include "sdram-micron-mt46h32m32lf-6.h" |
| 57 | #include "hsmmc.h" | 58 | #include "hsmmc.h" |
| 58 | #include "common-board-devices.h" | 59 | #include "common-board-devices.h" |
| 60 | #include "board-flash.h" | ||
| 61 | |||
| 62 | #define NAND_CS 0 | ||
| 59 | 63 | ||
| 60 | #define OMAP3_EVM_TS_GPIO 175 | 64 | #define OMAP3_EVM_TS_GPIO 175 |
| 61 | #define OMAP3_EVM_EHCI_VBUS 22 | 65 | #define OMAP3_EVM_EHCI_VBUS 22 |
| @@ -731,8 +735,9 @@ static void __init omap3_evm_init(void) | |||
| 731 | } | 735 | } |
| 732 | usb_musb_init(&musb_board_data); | 736 | usb_musb_init(&musb_board_data); |
| 733 | usbhs_init(&usbhs_bdata); | 737 | usbhs_init(&usbhs_bdata); |
| 734 | omap_nand_flash_init(NAND_BUSWIDTH_16, omap3evm_nand_partitions, | 738 | board_nand_init(omap3evm_nand_partitions, |
| 735 | ARRAY_SIZE(omap3evm_nand_partitions)); | 739 | ARRAY_SIZE(omap3evm_nand_partitions), NAND_CS, |
| 740 | NAND_BUSWIDTH_16, NULL); | ||
| 736 | 741 | ||
| 737 | omap_ads7846_init(1, OMAP3_EVM_TS_GPIO, 310, NULL); | 742 | omap_ads7846_init(1, OMAP3_EVM_TS_GPIO, 310, NULL); |
| 738 | omap3evm_init_smsc911x(); | 743 | omap3evm_init_smsc911x(); |
diff --git a/arch/arm/mach-omap2/board-omap3logic.c b/arch/arm/mach-omap2/board-omap3logic.c index 7bd8253b5d1d..e84e2a875378 100644 --- a/arch/arm/mach-omap2/board-omap3logic.c +++ b/arch/arm/mach-omap2/board-omap3logic.c | |||
| @@ -34,16 +34,13 @@ | |||
| 34 | #include <asm/mach/arch.h> | 34 | #include <asm/mach/arch.h> |
| 35 | #include <asm/mach/map.h> | 35 | #include <asm/mach/map.h> |
| 36 | 36 | ||
| 37 | #include "gpmc-smsc911x.h" | ||
| 38 | #include <plat/gpmc.h> | ||
| 39 | #include <plat/sdrc.h> | ||
| 40 | #include <plat/usb.h> | ||
| 41 | |||
| 42 | #include "common.h" | 37 | #include "common.h" |
| 43 | #include "mux.h" | 38 | #include "mux.h" |
| 44 | #include "hsmmc.h" | 39 | #include "hsmmc.h" |
| 45 | #include "control.h" | 40 | #include "control.h" |
| 46 | #include "common-board-devices.h" | 41 | #include "common-board-devices.h" |
| 42 | #include "gpmc.h" | ||
| 43 | #include "gpmc-smsc911x.h" | ||
| 47 | 44 | ||
| 48 | #define OMAP3LOGIC_SMSC911X_CS 1 | 45 | #define OMAP3LOGIC_SMSC911X_CS 1 |
| 49 | 46 | ||
diff --git a/arch/arm/mach-omap2/board-omap3pandora.c b/arch/arm/mach-omap2/board-omap3pandora.c index 00a1f4ae6e44..ce31bd329f38 100644 --- a/arch/arm/mach-omap2/board-omap3pandora.c +++ b/arch/arm/mach-omap2/board-omap3pandora.c | |||
| @@ -42,7 +42,6 @@ | |||
| 42 | #include <asm/mach/map.h> | 42 | #include <asm/mach/map.h> |
| 43 | 43 | ||
| 44 | #include "common.h" | 44 | #include "common.h" |
| 45 | #include <plat/usb.h> | ||
| 46 | #include <video/omapdss.h> | 45 | #include <video/omapdss.h> |
| 47 | #include <linux/platform_data/mtd-nand-omap2.h> | 46 | #include <linux/platform_data/mtd-nand-omap2.h> |
| 48 | 47 | ||
| @@ -50,6 +49,7 @@ | |||
| 50 | #include "sdram-micron-mt46h32m32lf-6.h" | 49 | #include "sdram-micron-mt46h32m32lf-6.h" |
| 51 | #include "hsmmc.h" | 50 | #include "hsmmc.h" |
| 52 | #include "common-board-devices.h" | 51 | #include "common-board-devices.h" |
| 52 | #include "gpmc-nand.h" | ||
| 53 | 53 | ||
| 54 | #define PANDORA_WIFI_IRQ_GPIO 21 | 54 | #define PANDORA_WIFI_IRQ_GPIO 21 |
| 55 | #define PANDORA_WIFI_NRESET_GPIO 23 | 55 | #define PANDORA_WIFI_NRESET_GPIO 23 |
| @@ -602,7 +602,7 @@ static void __init omap3pandora_init(void) | |||
| 602 | omap_ads7846_init(1, OMAP3_PANDORA_TS_GPIO, 0, NULL); | 602 | omap_ads7846_init(1, OMAP3_PANDORA_TS_GPIO, 0, NULL); |
| 603 | usbhs_init(&usbhs_bdata); | 603 | usbhs_init(&usbhs_bdata); |
| 604 | usb_musb_init(NULL); | 604 | usb_musb_init(NULL); |
| 605 | gpmc_nand_init(&pandora_nand_data); | 605 | gpmc_nand_init(&pandora_nand_data, NULL); |
| 606 | 606 | ||
| 607 | /* Ensure SDRC pins are mux'd for self-refresh */ | 607 | /* Ensure SDRC pins are mux'd for self-refresh */ |
| 608 | omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT); | 608 | omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT); |
diff --git a/arch/arm/mach-omap2/board-omap3stalker.c b/arch/arm/mach-omap2/board-omap3stalker.c index 731235eb319e..ba1124538b9c 100644 --- a/arch/arm/mach-omap2/board-omap3stalker.c +++ b/arch/arm/mach-omap2/board-omap3stalker.c | |||
| @@ -40,9 +40,8 @@ | |||
| 40 | #include <asm/mach/flash.h> | 40 | #include <asm/mach/flash.h> |
| 41 | 41 | ||
| 42 | #include "common.h" | 42 | #include "common.h" |
| 43 | #include <plat/gpmc.h> | 43 | #include "gpmc.h" |
| 44 | #include <linux/platform_data/mtd-nand-omap2.h> | 44 | #include <linux/platform_data/mtd-nand-omap2.h> |
| 45 | #include <plat/usb.h> | ||
| 46 | #include <video/omapdss.h> | 45 | #include <video/omapdss.h> |
| 47 | #include <video/omap-panel-generic-dpi.h> | 46 | #include <video/omap-panel-generic-dpi.h> |
| 48 | #include <video/omap-panel-tfp410.h> | 47 | #include <video/omap-panel-tfp410.h> |
diff --git a/arch/arm/mach-omap2/board-omap3touchbook.c b/arch/arm/mach-omap2/board-omap3touchbook.c index 944ffc436577..a225d819633f 100644 --- a/arch/arm/mach-omap2/board-omap3touchbook.c +++ b/arch/arm/mach-omap2/board-omap3touchbook.c | |||
| @@ -44,12 +44,12 @@ | |||
| 44 | #include <asm/system_info.h> | 44 | #include <asm/system_info.h> |
| 45 | 45 | ||
| 46 | #include "common.h" | 46 | #include "common.h" |
| 47 | #include <plat/gpmc.h> | 47 | #include "gpmc.h" |
| 48 | #include <linux/platform_data/mtd-nand-omap2.h> | 48 | #include <linux/platform_data/mtd-nand-omap2.h> |
| 49 | #include <plat/usb.h> | ||
| 50 | 49 | ||
| 51 | #include "mux.h" | 50 | #include "mux.h" |
| 52 | #include "hsmmc.h" | 51 | #include "hsmmc.h" |
| 52 | #include "board-flash.h" | ||
| 53 | #include "common-board-devices.h" | 53 | #include "common-board-devices.h" |
| 54 | 54 | ||
| 55 | #include <asm/setup.h> | 55 | #include <asm/setup.h> |
| @@ -59,6 +59,8 @@ | |||
| 59 | #define TB_BL_PWM_TIMER 9 | 59 | #define TB_BL_PWM_TIMER 9 |
| 60 | #define TB_KILL_POWER_GPIO 168 | 60 | #define TB_KILL_POWER_GPIO 168 |
| 61 | 61 | ||
| 62 | #define NAND_CS 0 | ||
| 63 | |||
| 62 | static unsigned long touchbook_revision; | 64 | static unsigned long touchbook_revision; |
| 63 | 65 | ||
| 64 | static struct mtd_partition omap3touchbook_nand_partitions[] = { | 66 | static struct mtd_partition omap3touchbook_nand_partitions[] = { |
| @@ -365,8 +367,9 @@ static void __init omap3_touchbook_init(void) | |||
| 365 | omap_ads7846_init(4, OMAP3_TS_GPIO, 310, &ads7846_pdata); | 367 | omap_ads7846_init(4, OMAP3_TS_GPIO, 310, &ads7846_pdata); |
| 366 | usb_musb_init(NULL); | 368 | usb_musb_init(NULL); |
| 367 | usbhs_init(&usbhs_bdata); | 369 | usbhs_init(&usbhs_bdata); |
| 368 | omap_nand_flash_init(NAND_BUSWIDTH_16, omap3touchbook_nand_partitions, | 370 | board_nand_init(omap3touchbook_nand_partitions, |
| 369 | ARRAY_SIZE(omap3touchbook_nand_partitions)); | 371 | ARRAY_SIZE(omap3touchbook_nand_partitions), NAND_CS, |
| 372 | NAND_BUSWIDTH_16, NULL); | ||
| 370 | 373 | ||
| 371 | /* Ensure SDRC pins are mux'd for self-refresh */ | 374 | /* Ensure SDRC pins are mux'd for self-refresh */ |
| 372 | omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT); | 375 | omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT); |
diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c index bfcd397e233c..8c00b99cd2a3 100644 --- a/arch/arm/mach-omap2/board-omap4panda.c +++ b/arch/arm/mach-omap2/board-omap4panda.c | |||
| @@ -29,6 +29,7 @@ | |||
| 29 | #include <linux/regulator/machine.h> | 29 | #include <linux/regulator/machine.h> |
| 30 | #include <linux/regulator/fixed.h> | 30 | #include <linux/regulator/fixed.h> |
| 31 | #include <linux/ti_wilink_st.h> | 31 | #include <linux/ti_wilink_st.h> |
| 32 | #include <linux/usb/musb.h> | ||
| 32 | #include <linux/wl12xx.h> | 33 | #include <linux/wl12xx.h> |
| 33 | #include <linux/platform_data/omap-abe-twl6040.h> | 34 | #include <linux/platform_data/omap-abe-twl6040.h> |
| 34 | 35 | ||
| @@ -38,12 +39,11 @@ | |||
| 38 | #include <asm/mach/map.h> | 39 | #include <asm/mach/map.h> |
| 39 | #include <video/omapdss.h> | 40 | #include <video/omapdss.h> |
| 40 | 41 | ||
| 41 | #include "common.h" | ||
| 42 | #include <plat/usb.h> | ||
| 43 | #include <plat/mmc.h> | ||
| 44 | #include <video/omap-panel-tfp410.h> | 42 | #include <video/omap-panel-tfp410.h> |
| 45 | 43 | ||
| 44 | #include "common.h" | ||
| 46 | #include "soc.h" | 45 | #include "soc.h" |
| 46 | #include "mmc.h" | ||
| 47 | #include "hsmmc.h" | 47 | #include "hsmmc.h" |
| 48 | #include "control.h" | 48 | #include "control.h" |
| 49 | #include "mux.h" | 49 | #include "mux.h" |
diff --git a/arch/arm/mach-omap2/board-overo.c b/arch/arm/mach-omap2/board-overo.c index b700685762b5..1cfb0374f5e2 100644 --- a/arch/arm/mach-omap2/board-overo.c +++ b/arch/arm/mach-omap2/board-overo.c | |||
| @@ -49,14 +49,17 @@ | |||
| 49 | #include <video/omapdss.h> | 49 | #include <video/omapdss.h> |
| 50 | #include <video/omap-panel-generic-dpi.h> | 50 | #include <video/omap-panel-generic-dpi.h> |
| 51 | #include <video/omap-panel-tfp410.h> | 51 | #include <video/omap-panel-tfp410.h> |
| 52 | #include <plat/gpmc.h> | ||
| 53 | #include <plat/usb.h> | ||
| 54 | 52 | ||
| 53 | #include "common.h" | ||
| 55 | #include "mux.h" | 54 | #include "mux.h" |
| 56 | #include "sdram-micron-mt46h32m32lf-6.h" | 55 | #include "sdram-micron-mt46h32m32lf-6.h" |
| 56 | #include "gpmc.h" | ||
| 57 | #include "hsmmc.h" | 57 | #include "hsmmc.h" |
| 58 | #include "board-flash.h" | ||
| 58 | #include "common-board-devices.h" | 59 | #include "common-board-devices.h" |
| 59 | 60 | ||
| 61 | #define NAND_CS 0 | ||
| 62 | |||
| 60 | #define OVERO_GPIO_BT_XGATE 15 | 63 | #define OVERO_GPIO_BT_XGATE 15 |
| 61 | #define OVERO_GPIO_W2W_NRESET 16 | 64 | #define OVERO_GPIO_W2W_NRESET 16 |
| 62 | #define OVERO_GPIO_PENDOWN 114 | 65 | #define OVERO_GPIO_PENDOWN 114 |
| @@ -495,8 +498,8 @@ static void __init overo_init(void) | |||
| 495 | omap_serial_init(); | 498 | omap_serial_init(); |
| 496 | omap_sdrc_init(mt46h32m32lf6_sdrc_params, | 499 | omap_sdrc_init(mt46h32m32lf6_sdrc_params, |
| 497 | mt46h32m32lf6_sdrc_params); | 500 | mt46h32m32lf6_sdrc_params); |
| 498 | omap_nand_flash_init(0, overo_nand_partitions, | 501 | board_nand_init(overo_nand_partitions, |
| 499 | ARRAY_SIZE(overo_nand_partitions)); | 502 | ARRAY_SIZE(overo_nand_partitions), NAND_CS, 0, NULL); |
| 500 | usb_musb_init(NULL); | 503 | usb_musb_init(NULL); |
| 501 | usbhs_init(&usbhs_bdata); | 504 | usbhs_init(&usbhs_bdata); |
| 502 | overo_spi_init(); | 505 | overo_spi_init(); |
diff --git a/arch/arm/mach-omap2/board-rm680.c b/arch/arm/mach-omap2/board-rm680.c index 45997bfbcbd2..1997e0e722a1 100644 --- a/arch/arm/mach-omap2/board-rm680.c +++ b/arch/arm/mach-omap2/board-rm680.c | |||
| @@ -22,17 +22,14 @@ | |||
| 22 | #include <asm/mach/arch.h> | 22 | #include <asm/mach/arch.h> |
| 23 | #include <asm/mach-types.h> | 23 | #include <asm/mach-types.h> |
| 24 | 24 | ||
| 25 | #include <plat/i2c.h> | ||
| 26 | #include <plat/mmc.h> | ||
| 27 | #include <plat/usb.h> | ||
| 28 | #include <plat/gpmc.h> | ||
| 29 | #include "common.h" | 25 | #include "common.h" |
| 30 | #include <plat/serial.h> | ||
| 31 | |||
| 32 | #include "mux.h" | 26 | #include "mux.h" |
| 27 | #include "gpmc.h" | ||
| 28 | #include "mmc.h" | ||
| 33 | #include "hsmmc.h" | 29 | #include "hsmmc.h" |
| 34 | #include "sdram-nokia.h" | 30 | #include "sdram-nokia.h" |
| 35 | #include "common-board-devices.h" | 31 | #include "common-board-devices.h" |
| 32 | #include "gpmc-onenand.h" | ||
| 36 | 33 | ||
| 37 | static struct regulator_consumer_supply rm680_vemmc_consumers[] = { | 34 | static struct regulator_consumer_supply rm680_vemmc_consumers[] = { |
| 38 | REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1"), | 35 | REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1"), |
diff --git a/arch/arm/mach-omap2/board-rx51-peripherals.c b/arch/arm/mach-omap2/board-rx51-peripherals.c index 020e03c95bfe..07005fe40a2a 100644 --- a/arch/arm/mach-omap2/board-rx51-peripherals.c +++ b/arch/arm/mach-omap2/board-rx51-peripherals.c | |||
| @@ -31,9 +31,7 @@ | |||
| 31 | #include <asm/system_info.h> | 31 | #include <asm/system_info.h> |
| 32 | 32 | ||
| 33 | #include "common.h" | 33 | #include "common.h" |
| 34 | #include <plat/dma.h> | 34 | #include <plat-omap/dma-omap.h> |
| 35 | #include <plat/gpmc.h> | ||
| 36 | #include <plat/omap-pm.h> | ||
| 37 | #include "gpmc-smc91x.h" | 35 | #include "gpmc-smc91x.h" |
| 38 | 36 | ||
| 39 | #include "board-rx51.h" | 37 | #include "board-rx51.h" |
| @@ -52,8 +50,11 @@ | |||
| 52 | #endif | 50 | #endif |
| 53 | 51 | ||
| 54 | #include "mux.h" | 52 | #include "mux.h" |
| 53 | #include "omap-pm.h" | ||
| 55 | #include "hsmmc.h" | 54 | #include "hsmmc.h" |
| 56 | #include "common-board-devices.h" | 55 | #include "common-board-devices.h" |
| 56 | #include "gpmc.h" | ||
| 57 | #include "gpmc-onenand.h" | ||
| 57 | 58 | ||
| 58 | #define SYSTEM_REV_B_USES_VAUX3 0x1699 | 59 | #define SYSTEM_REV_B_USES_VAUX3 0x1699 |
| 59 | #define SYSTEM_REV_S_USES_VAUX3 0x8 | 60 | #define SYSTEM_REV_S_USES_VAUX3 0x8 |
diff --git a/arch/arm/mach-omap2/board-rx51.c b/arch/arm/mach-omap2/board-rx51.c index 7bbb05d9689b..c388aec14799 100644 --- a/arch/arm/mach-omap2/board-rx51.c +++ b/arch/arm/mach-omap2/board-rx51.c | |||
| @@ -17,18 +17,18 @@ | |||
| 17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
| 18 | #include <linux/gpio.h> | 18 | #include <linux/gpio.h> |
| 19 | #include <linux/leds.h> | 19 | #include <linux/leds.h> |
| 20 | #include <linux/usb/musb.h> | ||
| 20 | #include <linux/platform_data/spi-omap2-mcspi.h> | 21 | #include <linux/platform_data/spi-omap2-mcspi.h> |
| 21 | 22 | ||
| 22 | #include <asm/mach-types.h> | 23 | #include <asm/mach-types.h> |
| 23 | #include <asm/mach/arch.h> | 24 | #include <asm/mach/arch.h> |
| 24 | #include <asm/mach/map.h> | 25 | #include <asm/mach/map.h> |
| 25 | 26 | ||
| 26 | #include "common.h" | 27 | #include <plat-omap/dma-omap.h> |
| 27 | #include <plat/dma.h> | ||
| 28 | #include <plat/gpmc.h> | ||
| 29 | #include <plat/usb.h> | ||
| 30 | 28 | ||
| 29 | #include "common.h" | ||
| 31 | #include "mux.h" | 30 | #include "mux.h" |
| 31 | #include "gpmc.h" | ||
| 32 | #include "pm.h" | 32 | #include "pm.h" |
| 33 | #include "sdram-nokia.h" | 33 | #include "sdram-nokia.h" |
| 34 | 34 | ||
diff --git a/arch/arm/mach-omap2/board-ti8168evm.c b/arch/arm/mach-omap2/board-ti8168evm.c index c4f8833b4c3c..5e672c2b6a43 100644 --- a/arch/arm/mach-omap2/board-ti8168evm.c +++ b/arch/arm/mach-omap2/board-ti8168evm.c | |||
| @@ -14,13 +14,14 @@ | |||
| 14 | */ | 14 | */ |
| 15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
| 16 | #include <linux/init.h> | 16 | #include <linux/init.h> |
| 17 | #include <linux/platform_device.h> | ||
| 18 | #include <linux/usb/musb.h> | ||
| 17 | 19 | ||
| 18 | #include <asm/mach-types.h> | 20 | #include <asm/mach-types.h> |
| 19 | #include <asm/mach/arch.h> | 21 | #include <asm/mach/arch.h> |
| 20 | #include <asm/mach/map.h> | 22 | #include <asm/mach/map.h> |
| 21 | 23 | ||
| 22 | #include "common.h" | 24 | #include "common.h" |
| 23 | #include <plat/usb.h> | ||
| 24 | 25 | ||
| 25 | static struct omap_musb_board_data musb_board_data = { | 26 | static struct omap_musb_board_data musb_board_data = { |
| 26 | .set_phy_power = ti81xx_musb_phy_power, | 27 | .set_phy_power = ti81xx_musb_phy_power, |
diff --git a/arch/arm/mach-omap2/board-zoom-debugboard.c b/arch/arm/mach-omap2/board-zoom-debugboard.c index afb2278a29f6..42e5f231a799 100644 --- a/arch/arm/mach-omap2/board-zoom-debugboard.c +++ b/arch/arm/mach-omap2/board-zoom-debugboard.c | |||
| @@ -17,10 +17,10 @@ | |||
| 17 | #include <linux/regulator/fixed.h> | 17 | #include <linux/regulator/fixed.h> |
| 18 | #include <linux/regulator/machine.h> | 18 | #include <linux/regulator/machine.h> |
| 19 | 19 | ||
| 20 | #include <plat/gpmc.h> | 20 | #include "gpmc.h" |
| 21 | #include "gpmc-smsc911x.h" | 21 | #include "gpmc-smsc911x.h" |
| 22 | 22 | ||
| 23 | #include <mach/board-zoom.h> | 23 | #include "board-zoom.h" |
| 24 | 24 | ||
| 25 | #include "soc.h" | 25 | #include "soc.h" |
| 26 | #include "common.h" | 26 | #include "common.h" |
diff --git a/arch/arm/mach-omap2/board-zoom-display.c b/arch/arm/mach-omap2/board-zoom-display.c index b940ab2259fb..1c7c834a5b5f 100644 --- a/arch/arm/mach-omap2/board-zoom-display.c +++ b/arch/arm/mach-omap2/board-zoom-display.c | |||
| @@ -16,8 +16,9 @@ | |||
| 16 | #include <linux/spi/spi.h> | 16 | #include <linux/spi/spi.h> |
| 17 | #include <linux/platform_data/spi-omap2-mcspi.h> | 17 | #include <linux/platform_data/spi-omap2-mcspi.h> |
| 18 | #include <video/omapdss.h> | 18 | #include <video/omapdss.h> |
| 19 | #include <mach/board-zoom.h> | 19 | #include "board-zoom.h" |
| 20 | 20 | ||
| 21 | #include "soc.h" | ||
| 21 | #include "common.h" | 22 | #include "common.h" |
| 22 | 23 | ||
| 23 | #define LCD_PANEL_RESET_GPIO_PROD 96 | 24 | #define LCD_PANEL_RESET_GPIO_PROD 96 |
diff --git a/arch/arm/mach-omap2/board-zoom-peripherals.c b/arch/arm/mach-omap2/board-zoom-peripherals.c index c166fe1fdff9..26e07addc9d7 100644 --- a/arch/arm/mach-omap2/board-zoom-peripherals.c +++ b/arch/arm/mach-omap2/board-zoom-peripherals.c | |||
| @@ -26,9 +26,8 @@ | |||
| 26 | #include <asm/mach/map.h> | 26 | #include <asm/mach/map.h> |
| 27 | 27 | ||
| 28 | #include "common.h" | 28 | #include "common.h" |
| 29 | #include <plat/usb.h> | ||
| 30 | 29 | ||
| 31 | #include <mach/board-zoom.h> | 30 | #include "board-zoom.h" |
| 32 | 31 | ||
| 33 | #include "mux.h" | 32 | #include "mux.h" |
| 34 | #include "hsmmc.h" | 33 | #include "hsmmc.h" |
diff --git a/arch/arm/mach-omap2/board-zoom.c b/arch/arm/mach-omap2/board-zoom.c index 4994438e1f46..8feb4d99b96d 100644 --- a/arch/arm/mach-omap2/board-zoom.c +++ b/arch/arm/mach-omap2/board-zoom.c | |||
| @@ -22,9 +22,8 @@ | |||
| 22 | #include <asm/mach/arch.h> | 22 | #include <asm/mach/arch.h> |
| 23 | 23 | ||
| 24 | #include "common.h" | 24 | #include "common.h" |
| 25 | #include <plat/usb.h> | ||
| 26 | 25 | ||
| 27 | #include <mach/board-zoom.h> | 26 | #include "board-zoom.h" |
| 28 | 27 | ||
| 29 | #include "board-flash.h" | 28 | #include "board-flash.h" |
| 30 | #include "mux.h" | 29 | #include "mux.h" |
| @@ -113,8 +112,9 @@ static void __init omap_zoom_init(void) | |||
| 113 | usbhs_init(&usbhs_bdata); | 112 | usbhs_init(&usbhs_bdata); |
| 114 | } | 113 | } |
| 115 | 114 | ||
| 116 | board_nand_init(zoom_nand_partitions, ARRAY_SIZE(zoom_nand_partitions), | 115 | board_nand_init(zoom_nand_partitions, |
| 117 | ZOOM_NAND_CS, NAND_BUSWIDTH_16); | 116 | ARRAY_SIZE(zoom_nand_partitions), ZOOM_NAND_CS, |
| 117 | NAND_BUSWIDTH_16, nand_default_timings); | ||
| 118 | zoom_debugboard_init(); | 118 | zoom_debugboard_init(); |
| 119 | zoom_peripherals_init(); | 119 | zoom_peripherals_init(); |
| 120 | 120 | ||
diff --git a/arch/arm/mach-omap2/include/mach/board-zoom.h b/arch/arm/mach-omap2/board-zoom.h index 2e9486940ead..2e9486940ead 100644 --- a/arch/arm/mach-omap2/include/mach/board-zoom.h +++ b/arch/arm/mach-omap2/board-zoom.h | |||
diff --git a/arch/arm/mach-omap2/clkt2xxx_apll.c b/arch/arm/mach-omap2/clkt2xxx_apll.c index c2d15212d64d..e3f0c1e262a7 100644 --- a/arch/arm/mach-omap2/clkt2xxx_apll.c +++ b/arch/arm/mach-omap2/clkt2xxx_apll.c | |||
| @@ -21,12 +21,11 @@ | |||
| 21 | #include <linux/clk.h> | 21 | #include <linux/clk.h> |
| 22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
| 23 | 23 | ||
| 24 | #include <plat/clock.h> | ||
| 25 | #include <plat/prcm.h> | 24 | #include <plat/prcm.h> |
| 26 | 25 | ||
| 27 | #include "clock.h" | 26 | #include "clock.h" |
| 28 | #include "clock2xxx.h" | 27 | #include "clock2xxx.h" |
| 29 | #include "cm2xxx_3xxx.h" | 28 | #include "cm2xxx.h" |
| 30 | #include "cm-regbits-24xx.h" | 29 | #include "cm-regbits-24xx.h" |
| 31 | 30 | ||
| 32 | /* CM_CLKEN_PLL.EN_{54,96}M_PLL options (24XX) */ | 31 | /* CM_CLKEN_PLL.EN_{54,96}M_PLL options (24XX) */ |
diff --git a/arch/arm/mach-omap2/clkt2xxx_dpll.c b/arch/arm/mach-omap2/clkt2xxx_dpll.c index 1502a7bc20bb..399534c7843b 100644 --- a/arch/arm/mach-omap2/clkt2xxx_dpll.c +++ b/arch/arm/mach-omap2/clkt2xxx_dpll.c | |||
| @@ -14,10 +14,8 @@ | |||
| 14 | #include <linux/clk.h> | 14 | #include <linux/clk.h> |
| 15 | #include <linux/io.h> | 15 | #include <linux/io.h> |
| 16 | 16 | ||
| 17 | #include <plat/clock.h> | ||
| 18 | |||
| 19 | #include "clock.h" | 17 | #include "clock.h" |
| 20 | #include "cm2xxx_3xxx.h" | 18 | #include "cm2xxx.h" |
| 21 | #include "cm-regbits-24xx.h" | 19 | #include "cm-regbits-24xx.h" |
| 22 | 20 | ||
| 23 | /* Private functions */ | 21 | /* Private functions */ |
diff --git a/arch/arm/mach-omap2/clkt2xxx_dpllcore.c b/arch/arm/mach-omap2/clkt2xxx_dpllcore.c index 4ae439222085..0d2f14c2dcce 100644 --- a/arch/arm/mach-omap2/clkt2xxx_dpllcore.c +++ b/arch/arm/mach-omap2/clkt2xxx_dpllcore.c | |||
| @@ -25,15 +25,13 @@ | |||
| 25 | #include <linux/clk.h> | 25 | #include <linux/clk.h> |
| 26 | #include <linux/io.h> | 26 | #include <linux/io.h> |
| 27 | 27 | ||
| 28 | #include <plat/clock.h> | ||
| 29 | #include <plat/sram.h> | ||
| 30 | #include <plat/sdrc.h> | ||
| 31 | |||
| 32 | #include "clock.h" | 28 | #include "clock.h" |
| 33 | #include "clock2xxx.h" | 29 | #include "clock2xxx.h" |
| 34 | #include "opp2xxx.h" | 30 | #include "opp2xxx.h" |
| 35 | #include "cm2xxx_3xxx.h" | 31 | #include "cm2xxx_3xxx.h" |
| 36 | #include "cm-regbits-24xx.h" | 32 | #include "cm-regbits-24xx.h" |
| 33 | #include "sdrc.h" | ||
| 34 | #include "sram.h" | ||
| 37 | 35 | ||
| 38 | /* #define DOWN_VARIABLE_DPLL 1 */ /* Experimental */ | 36 | /* #define DOWN_VARIABLE_DPLL 1 */ /* Experimental */ |
| 39 | 37 | ||
diff --git a/arch/arm/mach-omap2/clkt2xxx_osc.c b/arch/arm/mach-omap2/clkt2xxx_osc.c index c3460928b5e0..e1777371bb5e 100644 --- a/arch/arm/mach-omap2/clkt2xxx_osc.c +++ b/arch/arm/mach-omap2/clkt2xxx_osc.c | |||
| @@ -23,8 +23,6 @@ | |||
| 23 | #include <linux/clk.h> | 23 | #include <linux/clk.h> |
| 24 | #include <linux/io.h> | 24 | #include <linux/io.h> |
| 25 | 25 | ||
| 26 | #include <plat/clock.h> | ||
| 27 | |||
| 28 | #include "clock.h" | 26 | #include "clock.h" |
| 29 | #include "clock2xxx.h" | 27 | #include "clock2xxx.h" |
| 30 | #include "prm2xxx_3xxx.h" | 28 | #include "prm2xxx_3xxx.h" |
diff --git a/arch/arm/mach-omap2/clkt2xxx_sys.c b/arch/arm/mach-omap2/clkt2xxx_sys.c index 8693cfdac49a..46683b3c2461 100644 --- a/arch/arm/mach-omap2/clkt2xxx_sys.c +++ b/arch/arm/mach-omap2/clkt2xxx_sys.c | |||
| @@ -22,8 +22,6 @@ | |||
| 22 | #include <linux/clk.h> | 22 | #include <linux/clk.h> |
| 23 | #include <linux/io.h> | 23 | #include <linux/io.h> |
| 24 | 24 | ||
| 25 | #include <plat/clock.h> | ||
| 26 | |||
| 27 | #include "clock.h" | 25 | #include "clock.h" |
| 28 | #include "clock2xxx.h" | 26 | #include "clock2xxx.h" |
| 29 | #include "prm2xxx_3xxx.h" | 27 | #include "prm2xxx_3xxx.h" |
diff --git a/arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c b/arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c index 3524f0e7b6d5..a38ebb209721 100644 --- a/arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c +++ b/arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c | |||
| @@ -33,16 +33,14 @@ | |||
| 33 | #include <linux/cpufreq.h> | 33 | #include <linux/cpufreq.h> |
| 34 | #include <linux/slab.h> | 34 | #include <linux/slab.h> |
| 35 | 35 | ||
| 36 | #include <plat/clock.h> | ||
| 37 | #include <plat/sram.h> | ||
| 38 | #include <plat/sdrc.h> | ||
| 39 | |||
| 40 | #include "soc.h" | 36 | #include "soc.h" |
| 41 | #include "clock.h" | 37 | #include "clock.h" |
| 42 | #include "clock2xxx.h" | 38 | #include "clock2xxx.h" |
| 43 | #include "opp2xxx.h" | 39 | #include "opp2xxx.h" |
| 44 | #include "cm2xxx_3xxx.h" | 40 | #include "cm2xxx_3xxx.h" |
| 45 | #include "cm-regbits-24xx.h" | 41 | #include "cm-regbits-24xx.h" |
| 42 | #include "sdrc.h" | ||
| 43 | #include "sram.h" | ||
| 46 | 44 | ||
| 47 | const struct prcm_config *curr_prcm_set; | 45 | const struct prcm_config *curr_prcm_set; |
| 48 | const struct prcm_config *rate_table; | 46 | const struct prcm_config *rate_table; |
diff --git a/arch/arm/mach-omap2/clkt34xx_dpll3m2.c b/arch/arm/mach-omap2/clkt34xx_dpll3m2.c index 7c6da2f731dc..6cf298e262f6 100644 --- a/arch/arm/mach-omap2/clkt34xx_dpll3m2.c +++ b/arch/arm/mach-omap2/clkt34xx_dpll3m2.c | |||
| @@ -21,14 +21,11 @@ | |||
| 21 | #include <linux/clk.h> | 21 | #include <linux/clk.h> |
| 22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
| 23 | 23 | ||
| 24 | #include <plat/clock.h> | ||
| 25 | #include <plat/sram.h> | ||
| 26 | #include <plat/sdrc.h> | ||
| 27 | |||
| 28 | #include "clock.h" | 24 | #include "clock.h" |
| 29 | #include "clock3xxx.h" | 25 | #include "clock3xxx.h" |
| 30 | #include "clock34xx.h" | 26 | #include "clock34xx.h" |
| 31 | #include "sdrc.h" | 27 | #include "sdrc.h" |
| 28 | #include "sram.h" | ||
| 32 | 29 | ||
| 33 | #define CYCLES_PER_MHZ 1000000 | 30 | #define CYCLES_PER_MHZ 1000000 |
| 34 | 31 | ||
diff --git a/arch/arm/mach-omap2/clkt_clksel.c b/arch/arm/mach-omap2/clkt_clksel.c index 3ff22114d702..53646facda45 100644 --- a/arch/arm/mach-omap2/clkt_clksel.c +++ b/arch/arm/mach-omap2/clkt_clksel.c | |||
| @@ -45,8 +45,6 @@ | |||
| 45 | #include <linux/io.h> | 45 | #include <linux/io.h> |
| 46 | #include <linux/bug.h> | 46 | #include <linux/bug.h> |
| 47 | 47 | ||
| 48 | #include <plat/clock.h> | ||
| 49 | |||
| 50 | #include "clock.h" | 48 | #include "clock.h" |
| 51 | 49 | ||
| 52 | /* Private functions */ | 50 | /* Private functions */ |
diff --git a/arch/arm/mach-omap2/clkt_dpll.c b/arch/arm/mach-omap2/clkt_dpll.c index 80411142f482..8463cc356245 100644 --- a/arch/arm/mach-omap2/clkt_dpll.c +++ b/arch/arm/mach-omap2/clkt_dpll.c | |||
| @@ -21,8 +21,6 @@ | |||
| 21 | 21 | ||
| 22 | #include <asm/div64.h> | 22 | #include <asm/div64.h> |
| 23 | 23 | ||
| 24 | #include <plat/clock.h> | ||
| 25 | |||
| 26 | #include "soc.h" | 24 | #include "soc.h" |
| 27 | #include "clock.h" | 25 | #include "clock.h" |
| 28 | #include "cm-regbits-24xx.h" | 26 | #include "cm-regbits-24xx.h" |
diff --git a/arch/arm/mach-omap2/clkt_iclk.c b/arch/arm/mach-omap2/clkt_iclk.c index 3d43fba2542f..7c8d41e49834 100644 --- a/arch/arm/mach-omap2/clkt_iclk.c +++ b/arch/arm/mach-omap2/clkt_iclk.c | |||
| @@ -14,7 +14,6 @@ | |||
| 14 | #include <linux/clk.h> | 14 | #include <linux/clk.h> |
| 15 | #include <linux/io.h> | 15 | #include <linux/io.h> |
| 16 | 16 | ||
| 17 | #include <plat/clock.h> | ||
| 18 | #include <plat/prcm.h> | 17 | #include <plat/prcm.h> |
| 19 | 18 | ||
| 20 | #include "clock.h" | 19 | #include "clock.h" |
diff --git a/arch/arm/mach-omap2/clock.c b/arch/arm/mach-omap2/clock.c index 961ac8f7e13d..9205ea7d8dde 100644 --- a/arch/arm/mach-omap2/clock.c +++ b/arch/arm/mach-omap2/clock.c | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | #undef DEBUG | 15 | #undef DEBUG |
| 16 | 16 | ||
| 17 | #include <linux/kernel.h> | 17 | #include <linux/kernel.h> |
| 18 | #include <linux/export.h> | ||
| 18 | #include <linux/list.h> | 19 | #include <linux/list.h> |
| 19 | #include <linux/errno.h> | 20 | #include <linux/errno.h> |
| 20 | #include <linux/err.h> | 21 | #include <linux/err.h> |
| @@ -25,7 +26,6 @@ | |||
| 25 | 26 | ||
| 26 | #include <asm/cpu.h> | 27 | #include <asm/cpu.h> |
| 27 | 28 | ||
| 28 | #include <plat/clock.h> | ||
| 29 | #include <plat/prcm.h> | 29 | #include <plat/prcm.h> |
| 30 | 30 | ||
| 31 | #include <trace/events/power.h> | 31 | #include <trace/events/power.h> |
| @@ -33,7 +33,8 @@ | |||
| 33 | #include "soc.h" | 33 | #include "soc.h" |
| 34 | #include "clockdomain.h" | 34 | #include "clockdomain.h" |
| 35 | #include "clock.h" | 35 | #include "clock.h" |
| 36 | #include "cm2xxx_3xxx.h" | 36 | #include "cm2xxx.h" |
| 37 | #include "cm3xxx.h" | ||
| 37 | #include "cm-regbits-24xx.h" | 38 | #include "cm-regbits-24xx.h" |
| 38 | #include "cm-regbits-34xx.h" | 39 | #include "cm-regbits-34xx.h" |
| 39 | 40 | ||
| @@ -47,6 +48,10 @@ u16 cpu_mask; | |||
| 47 | */ | 48 | */ |
| 48 | static bool clkdm_control = true; | 49 | static bool clkdm_control = true; |
| 49 | 50 | ||
| 51 | static LIST_HEAD(clocks); | ||
| 52 | static DEFINE_MUTEX(clocks_mutex); | ||
| 53 | static DEFINE_SPINLOCK(clockfw_lock); | ||
| 54 | |||
| 50 | /* | 55 | /* |
| 51 | * OMAP2+ specific clock functions | 56 | * OMAP2+ specific clock functions |
| 52 | */ | 57 | */ |
| @@ -512,12 +517,510 @@ void __init omap2_clk_print_new_rates(const char *hfclkin_ck_name, | |||
| 512 | 517 | ||
| 513 | /* Common data */ | 518 | /* Common data */ |
| 514 | 519 | ||
| 515 | struct clk_functions omap2_clk_functions = { | 520 | int clk_enable(struct clk *clk) |
| 516 | .clk_enable = omap2_clk_enable, | 521 | { |
| 517 | .clk_disable = omap2_clk_disable, | 522 | unsigned long flags; |
| 518 | .clk_round_rate = omap2_clk_round_rate, | 523 | int ret; |
| 519 | .clk_set_rate = omap2_clk_set_rate, | 524 | |
| 520 | .clk_set_parent = omap2_clk_set_parent, | 525 | if (clk == NULL || IS_ERR(clk)) |
| 521 | .clk_disable_unused = omap2_clk_disable_unused, | 526 | return -EINVAL; |
| 527 | |||
| 528 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 529 | ret = omap2_clk_enable(clk); | ||
| 530 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 531 | |||
| 532 | return ret; | ||
| 533 | } | ||
| 534 | EXPORT_SYMBOL(clk_enable); | ||
| 535 | |||
| 536 | void clk_disable(struct clk *clk) | ||
| 537 | { | ||
| 538 | unsigned long flags; | ||
| 539 | |||
| 540 | if (clk == NULL || IS_ERR(clk)) | ||
| 541 | return; | ||
| 542 | |||
| 543 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 544 | if (clk->usecount == 0) { | ||
| 545 | pr_err("Trying disable clock %s with 0 usecount\n", | ||
| 546 | clk->name); | ||
| 547 | WARN_ON(1); | ||
| 548 | goto out; | ||
| 549 | } | ||
| 550 | |||
| 551 | omap2_clk_disable(clk); | ||
| 552 | |||
| 553 | out: | ||
| 554 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 555 | } | ||
| 556 | EXPORT_SYMBOL(clk_disable); | ||
| 557 | |||
| 558 | unsigned long clk_get_rate(struct clk *clk) | ||
| 559 | { | ||
| 560 | unsigned long flags; | ||
| 561 | unsigned long ret; | ||
| 562 | |||
| 563 | if (clk == NULL || IS_ERR(clk)) | ||
| 564 | return 0; | ||
| 565 | |||
| 566 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 567 | ret = clk->rate; | ||
| 568 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 569 | |||
| 570 | return ret; | ||
| 571 | } | ||
| 572 | EXPORT_SYMBOL(clk_get_rate); | ||
| 573 | |||
| 574 | /* | ||
| 575 | * Optional clock functions defined in include/linux/clk.h | ||
| 576 | */ | ||
| 577 | |||
| 578 | long clk_round_rate(struct clk *clk, unsigned long rate) | ||
| 579 | { | ||
| 580 | unsigned long flags; | ||
| 581 | long ret; | ||
| 582 | |||
| 583 | if (clk == NULL || IS_ERR(clk)) | ||
| 584 | return 0; | ||
| 585 | |||
| 586 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 587 | ret = omap2_clk_round_rate(clk, rate); | ||
| 588 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 589 | |||
| 590 | return ret; | ||
| 591 | } | ||
| 592 | EXPORT_SYMBOL(clk_round_rate); | ||
| 593 | |||
| 594 | int clk_set_rate(struct clk *clk, unsigned long rate) | ||
| 595 | { | ||
| 596 | unsigned long flags; | ||
| 597 | int ret = -EINVAL; | ||
| 598 | |||
| 599 | if (clk == NULL || IS_ERR(clk)) | ||
| 600 | return ret; | ||
| 601 | |||
| 602 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 603 | ret = omap2_clk_set_rate(clk, rate); | ||
| 604 | if (ret == 0) | ||
| 605 | propagate_rate(clk); | ||
| 606 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 607 | |||
| 608 | return ret; | ||
| 609 | } | ||
| 610 | EXPORT_SYMBOL(clk_set_rate); | ||
| 611 | |||
| 612 | int clk_set_parent(struct clk *clk, struct clk *parent) | ||
| 613 | { | ||
| 614 | unsigned long flags; | ||
| 615 | int ret = -EINVAL; | ||
| 616 | |||
| 617 | if (clk == NULL || IS_ERR(clk) || parent == NULL || IS_ERR(parent)) | ||
| 618 | return ret; | ||
| 619 | |||
| 620 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 621 | if (clk->usecount == 0) { | ||
| 622 | ret = omap2_clk_set_parent(clk, parent); | ||
| 623 | if (ret == 0) | ||
| 624 | propagate_rate(clk); | ||
| 625 | } else { | ||
| 626 | ret = -EBUSY; | ||
| 627 | } | ||
| 628 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 629 | |||
| 630 | return ret; | ||
| 631 | } | ||
| 632 | EXPORT_SYMBOL(clk_set_parent); | ||
| 633 | |||
| 634 | struct clk *clk_get_parent(struct clk *clk) | ||
| 635 | { | ||
| 636 | return clk->parent; | ||
| 637 | } | ||
| 638 | EXPORT_SYMBOL(clk_get_parent); | ||
| 639 | |||
| 640 | /* | ||
| 641 | * OMAP specific clock functions shared between omap1 and omap2 | ||
| 642 | */ | ||
| 643 | |||
| 644 | int __initdata mpurate; | ||
| 645 | |||
| 646 | /* | ||
| 647 | * By default we use the rate set by the bootloader. | ||
| 648 | * You can override this with mpurate= cmdline option. | ||
| 649 | */ | ||
| 650 | static int __init omap_clk_setup(char *str) | ||
| 651 | { | ||
| 652 | get_option(&str, &mpurate); | ||
| 653 | |||
| 654 | if (!mpurate) | ||
| 655 | return 1; | ||
| 656 | |||
| 657 | if (mpurate < 1000) | ||
| 658 | mpurate *= 1000000; | ||
| 659 | |||
| 660 | return 1; | ||
| 661 | } | ||
| 662 | __setup("mpurate=", omap_clk_setup); | ||
| 663 | |||
| 664 | /* Used for clocks that always have same value as the parent clock */ | ||
| 665 | unsigned long followparent_recalc(struct clk *clk) | ||
| 666 | { | ||
| 667 | return clk->parent->rate; | ||
| 668 | } | ||
| 669 | |||
| 670 | /* | ||
| 671 | * Used for clocks that have the same value as the parent clock, | ||
| 672 | * divided by some factor | ||
| 673 | */ | ||
| 674 | unsigned long omap_fixed_divisor_recalc(struct clk *clk) | ||
| 675 | { | ||
| 676 | WARN_ON(!clk->fixed_div); | ||
| 677 | |||
| 678 | return clk->parent->rate / clk->fixed_div; | ||
| 679 | } | ||
| 680 | |||
| 681 | void clk_reparent(struct clk *child, struct clk *parent) | ||
| 682 | { | ||
| 683 | list_del_init(&child->sibling); | ||
| 684 | if (parent) | ||
| 685 | list_add(&child->sibling, &parent->children); | ||
| 686 | child->parent = parent; | ||
| 687 | |||
| 688 | /* now do the debugfs renaming to reattach the child | ||
| 689 | to the proper parent */ | ||
| 690 | } | ||
| 691 | |||
| 692 | /* Propagate rate to children */ | ||
| 693 | void propagate_rate(struct clk *tclk) | ||
| 694 | { | ||
| 695 | struct clk *clkp; | ||
| 696 | |||
| 697 | list_for_each_entry(clkp, &tclk->children, sibling) { | ||
| 698 | if (clkp->recalc) | ||
| 699 | clkp->rate = clkp->recalc(clkp); | ||
| 700 | propagate_rate(clkp); | ||
| 701 | } | ||
| 702 | } | ||
| 703 | |||
| 704 | static LIST_HEAD(root_clks); | ||
| 705 | |||
| 706 | /** | ||
| 707 | * recalculate_root_clocks - recalculate and propagate all root clocks | ||
| 708 | * | ||
| 709 | * Recalculates all root clocks (clocks with no parent), which if the | ||
| 710 | * clock's .recalc is set correctly, should also propagate their rates. | ||
| 711 | * Called at init. | ||
| 712 | */ | ||
| 713 | void recalculate_root_clocks(void) | ||
| 714 | { | ||
| 715 | struct clk *clkp; | ||
| 716 | |||
| 717 | list_for_each_entry(clkp, &root_clks, sibling) { | ||
| 718 | if (clkp->recalc) | ||
| 719 | clkp->rate = clkp->recalc(clkp); | ||
| 720 | propagate_rate(clkp); | ||
| 721 | } | ||
| 722 | } | ||
| 723 | |||
| 724 | /** | ||
| 725 | * clk_preinit - initialize any fields in the struct clk before clk init | ||
| 726 | * @clk: struct clk * to initialize | ||
| 727 | * | ||
| 728 | * Initialize any struct clk fields needed before normal clk initialization | ||
| 729 | * can run. No return value. | ||
| 730 | */ | ||
| 731 | void clk_preinit(struct clk *clk) | ||
| 732 | { | ||
| 733 | INIT_LIST_HEAD(&clk->children); | ||
| 734 | } | ||
| 735 | |||
| 736 | int clk_register(struct clk *clk) | ||
| 737 | { | ||
| 738 | if (clk == NULL || IS_ERR(clk)) | ||
| 739 | return -EINVAL; | ||
| 740 | |||
| 741 | /* | ||
| 742 | * trap out already registered clocks | ||
| 743 | */ | ||
| 744 | if (clk->node.next || clk->node.prev) | ||
| 745 | return 0; | ||
| 746 | |||
| 747 | mutex_lock(&clocks_mutex); | ||
| 748 | if (clk->parent) | ||
| 749 | list_add(&clk->sibling, &clk->parent->children); | ||
| 750 | else | ||
| 751 | list_add(&clk->sibling, &root_clks); | ||
| 752 | |||
| 753 | list_add(&clk->node, &clocks); | ||
| 754 | if (clk->init) | ||
| 755 | clk->init(clk); | ||
| 756 | mutex_unlock(&clocks_mutex); | ||
| 757 | |||
| 758 | return 0; | ||
| 759 | } | ||
| 760 | EXPORT_SYMBOL(clk_register); | ||
| 761 | |||
| 762 | void clk_unregister(struct clk *clk) | ||
| 763 | { | ||
| 764 | if (clk == NULL || IS_ERR(clk)) | ||
| 765 | return; | ||
| 766 | |||
| 767 | mutex_lock(&clocks_mutex); | ||
| 768 | list_del(&clk->sibling); | ||
| 769 | list_del(&clk->node); | ||
| 770 | mutex_unlock(&clocks_mutex); | ||
| 771 | } | ||
| 772 | EXPORT_SYMBOL(clk_unregister); | ||
| 773 | |||
| 774 | void clk_enable_init_clocks(void) | ||
| 775 | { | ||
| 776 | struct clk *clkp; | ||
| 777 | |||
| 778 | list_for_each_entry(clkp, &clocks, node) | ||
| 779 | if (clkp->flags & ENABLE_ON_INIT) | ||
| 780 | clk_enable(clkp); | ||
| 781 | } | ||
| 782 | |||
| 783 | /** | ||
| 784 | * omap_clk_get_by_name - locate OMAP struct clk by its name | ||
| 785 | * @name: name of the struct clk to locate | ||
| 786 | * | ||
| 787 | * Locate an OMAP struct clk by its name. Assumes that struct clk | ||
| 788 | * names are unique. Returns NULL if not found or a pointer to the | ||
| 789 | * struct clk if found. | ||
| 790 | */ | ||
| 791 | struct clk *omap_clk_get_by_name(const char *name) | ||
| 792 | { | ||
| 793 | struct clk *c; | ||
| 794 | struct clk *ret = NULL; | ||
| 795 | |||
| 796 | mutex_lock(&clocks_mutex); | ||
| 797 | |||
| 798 | list_for_each_entry(c, &clocks, node) { | ||
| 799 | if (!strcmp(c->name, name)) { | ||
| 800 | ret = c; | ||
| 801 | break; | ||
| 802 | } | ||
| 803 | } | ||
| 804 | |||
| 805 | mutex_unlock(&clocks_mutex); | ||
| 806 | |||
| 807 | return ret; | ||
| 808 | } | ||
| 809 | |||
| 810 | int omap_clk_enable_autoidle_all(void) | ||
| 811 | { | ||
| 812 | struct clk *c; | ||
| 813 | unsigned long flags; | ||
| 814 | |||
| 815 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 816 | |||
| 817 | list_for_each_entry(c, &clocks, node) | ||
| 818 | if (c->ops->allow_idle) | ||
| 819 | c->ops->allow_idle(c); | ||
| 820 | |||
| 821 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 822 | |||
| 823 | return 0; | ||
| 824 | } | ||
| 825 | |||
| 826 | int omap_clk_disable_autoidle_all(void) | ||
| 827 | { | ||
| 828 | struct clk *c; | ||
| 829 | unsigned long flags; | ||
| 830 | |||
| 831 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 832 | |||
| 833 | list_for_each_entry(c, &clocks, node) | ||
| 834 | if (c->ops->deny_idle) | ||
| 835 | c->ops->deny_idle(c); | ||
| 836 | |||
| 837 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 838 | |||
| 839 | return 0; | ||
| 840 | } | ||
| 841 | |||
| 842 | /* | ||
| 843 | * Low level helpers | ||
| 844 | */ | ||
| 845 | static int clkll_enable_null(struct clk *clk) | ||
| 846 | { | ||
| 847 | return 0; | ||
| 848 | } | ||
| 849 | |||
| 850 | static void clkll_disable_null(struct clk *clk) | ||
| 851 | { | ||
| 852 | } | ||
| 853 | |||
| 854 | const struct clkops clkops_null = { | ||
| 855 | .enable = clkll_enable_null, | ||
| 856 | .disable = clkll_disable_null, | ||
| 857 | }; | ||
| 858 | |||
| 859 | /* | ||
| 860 | * Dummy clock | ||
| 861 | * | ||
| 862 | * Used for clock aliases that are needed on some OMAPs, but not others | ||
| 863 | */ | ||
| 864 | struct clk dummy_ck = { | ||
| 865 | .name = "dummy", | ||
| 866 | .ops = &clkops_null, | ||
| 867 | }; | ||
| 868 | |||
| 869 | /* | ||
| 870 | * | ||
| 871 | */ | ||
| 872 | |||
| 873 | #ifdef CONFIG_OMAP_RESET_CLOCKS | ||
| 874 | /* | ||
| 875 | * Disable any unused clocks left on by the bootloader | ||
| 876 | */ | ||
| 877 | static int __init clk_disable_unused(void) | ||
| 878 | { | ||
| 879 | struct clk *ck; | ||
| 880 | unsigned long flags; | ||
| 881 | |||
| 882 | pr_info("clock: disabling unused clocks to save power\n"); | ||
| 883 | |||
| 884 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 885 | list_for_each_entry(ck, &clocks, node) { | ||
| 886 | if (ck->ops == &clkops_null) | ||
| 887 | continue; | ||
| 888 | |||
| 889 | if (ck->usecount > 0 || !ck->enable_reg) | ||
| 890 | continue; | ||
| 891 | |||
| 892 | omap2_clk_disable_unused(ck); | ||
| 893 | } | ||
| 894 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 895 | |||
| 896 | return 0; | ||
| 897 | } | ||
| 898 | late_initcall(clk_disable_unused); | ||
| 899 | late_initcall(omap_clk_enable_autoidle_all); | ||
| 900 | #endif | ||
| 901 | |||
| 902 | #if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) | ||
| 903 | /* | ||
| 904 | * debugfs support to trace clock tree hierarchy and attributes | ||
| 905 | */ | ||
| 906 | |||
| 907 | #include <linux/debugfs.h> | ||
| 908 | #include <linux/seq_file.h> | ||
| 909 | |||
| 910 | static struct dentry *clk_debugfs_root; | ||
| 911 | |||
| 912 | static int clk_dbg_show_summary(struct seq_file *s, void *unused) | ||
| 913 | { | ||
| 914 | struct clk *c; | ||
| 915 | struct clk *pa; | ||
| 916 | |||
| 917 | mutex_lock(&clocks_mutex); | ||
| 918 | seq_printf(s, "%-30s %-30s %-10s %s\n", | ||
| 919 | "clock-name", "parent-name", "rate", "use-count"); | ||
| 920 | |||
| 921 | list_for_each_entry(c, &clocks, node) { | ||
| 922 | pa = c->parent; | ||
| 923 | seq_printf(s, "%-30s %-30s %-10lu %d\n", | ||
| 924 | c->name, pa ? pa->name : "none", c->rate, | ||
| 925 | c->usecount); | ||
| 926 | } | ||
| 927 | mutex_unlock(&clocks_mutex); | ||
| 928 | |||
| 929 | return 0; | ||
| 930 | } | ||
| 931 | |||
| 932 | static int clk_dbg_open(struct inode *inode, struct file *file) | ||
| 933 | { | ||
| 934 | return single_open(file, clk_dbg_show_summary, inode->i_private); | ||
| 935 | } | ||
| 936 | |||
| 937 | static const struct file_operations debug_clock_fops = { | ||
| 938 | .open = clk_dbg_open, | ||
| 939 | .read = seq_read, | ||
| 940 | .llseek = seq_lseek, | ||
| 941 | .release = single_release, | ||
| 522 | }; | 942 | }; |
| 523 | 943 | ||
| 944 | static int clk_debugfs_register_one(struct clk *c) | ||
| 945 | { | ||
| 946 | int err; | ||
| 947 | struct dentry *d; | ||
| 948 | struct clk *pa = c->parent; | ||
| 949 | |||
| 950 | d = debugfs_create_dir(c->name, pa ? pa->dent : clk_debugfs_root); | ||
| 951 | if (!d) | ||
| 952 | return -ENOMEM; | ||
| 953 | c->dent = d; | ||
| 954 | |||
| 955 | d = debugfs_create_u8("usecount", S_IRUGO, c->dent, (u8 *)&c->usecount); | ||
| 956 | if (!d) { | ||
| 957 | err = -ENOMEM; | ||
| 958 | goto err_out; | ||
| 959 | } | ||
| 960 | d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate); | ||
| 961 | if (!d) { | ||
| 962 | err = -ENOMEM; | ||
| 963 | goto err_out; | ||
| 964 | } | ||
| 965 | d = debugfs_create_x32("flags", S_IRUGO, c->dent, (u32 *)&c->flags); | ||
| 966 | if (!d) { | ||
| 967 | err = -ENOMEM; | ||
| 968 | goto err_out; | ||
| 969 | } | ||
| 970 | return 0; | ||
| 971 | |||
| 972 | err_out: | ||
| 973 | debugfs_remove_recursive(c->dent); | ||
| 974 | return err; | ||
| 975 | } | ||
| 976 | |||
| 977 | static int clk_debugfs_register(struct clk *c) | ||
| 978 | { | ||
| 979 | int err; | ||
| 980 | struct clk *pa = c->parent; | ||
| 981 | |||
| 982 | if (pa && !pa->dent) { | ||
| 983 | err = clk_debugfs_register(pa); | ||
| 984 | if (err) | ||
| 985 | return err; | ||
| 986 | } | ||
| 987 | |||
| 988 | if (!c->dent) { | ||
| 989 | err = clk_debugfs_register_one(c); | ||
| 990 | if (err) | ||
| 991 | return err; | ||
| 992 | } | ||
| 993 | return 0; | ||
| 994 | } | ||
| 995 | |||
| 996 | static int __init clk_debugfs_init(void) | ||
| 997 | { | ||
| 998 | struct clk *c; | ||
| 999 | struct dentry *d; | ||
| 1000 | int err; | ||
| 1001 | |||
| 1002 | d = debugfs_create_dir("clock", NULL); | ||
| 1003 | if (!d) | ||
| 1004 | return -ENOMEM; | ||
| 1005 | clk_debugfs_root = d; | ||
| 1006 | |||
| 1007 | list_for_each_entry(c, &clocks, node) { | ||
| 1008 | err = clk_debugfs_register(c); | ||
| 1009 | if (err) | ||
| 1010 | goto err_out; | ||
| 1011 | } | ||
| 1012 | |||
| 1013 | d = debugfs_create_file("summary", S_IRUGO, | ||
| 1014 | d, NULL, &debug_clock_fops); | ||
| 1015 | if (!d) | ||
| 1016 | return -ENOMEM; | ||
| 1017 | |||
| 1018 | return 0; | ||
| 1019 | err_out: | ||
| 1020 | debugfs_remove_recursive(clk_debugfs_root); | ||
| 1021 | return err; | ||
| 1022 | } | ||
| 1023 | late_initcall(clk_debugfs_init); | ||
| 1024 | |||
| 1025 | #endif /* defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) */ | ||
| 1026 | |||
diff --git a/arch/arm/mach-omap2/clock.h b/arch/arm/mach-omap2/clock.h index 35ec5f3d9a73..cfba1ffe5cc2 100644 --- a/arch/arm/mach-omap2/clock.h +++ b/arch/arm/mach-omap2/clock.h | |||
| @@ -17,8 +17,323 @@ | |||
| 17 | #define __ARCH_ARM_MACH_OMAP2_CLOCK_H | 17 | #define __ARCH_ARM_MACH_OMAP2_CLOCK_H |
| 18 | 18 | ||
| 19 | #include <linux/kernel.h> | 19 | #include <linux/kernel.h> |
| 20 | #include <linux/list.h> | ||
| 21 | |||
| 22 | #include <linux/clkdev.h> | ||
| 23 | |||
| 24 | struct omap_clk { | ||
| 25 | u16 cpu; | ||
| 26 | struct clk_lookup lk; | ||
| 27 | }; | ||
| 28 | |||
| 29 | #define CLK(dev, con, ck, cp) \ | ||
| 30 | { \ | ||
| 31 | .cpu = cp, \ | ||
| 32 | .lk = { \ | ||
| 33 | .dev_id = dev, \ | ||
| 34 | .con_id = con, \ | ||
| 35 | .clk = ck, \ | ||
| 36 | }, \ | ||
| 37 | } | ||
| 38 | |||
| 39 | /* Platform flags for the clkdev-OMAP integration code */ | ||
| 40 | #define CK_242X (1 << 0) | ||
| 41 | #define CK_243X (1 << 1) /* 243x, 253x */ | ||
| 42 | #define CK_3430ES1 (1 << 2) /* 34xxES1 only */ | ||
| 43 | #define CK_3430ES2PLUS (1 << 3) /* 34xxES2, ES3, non-Sitara 35xx only */ | ||
| 44 | #define CK_AM35XX (1 << 4) /* Sitara AM35xx */ | ||
| 45 | #define CK_36XX (1 << 5) /* 36xx/37xx-specific clocks */ | ||
| 46 | #define CK_443X (1 << 6) | ||
| 47 | #define CK_TI816X (1 << 7) | ||
| 48 | #define CK_446X (1 << 8) | ||
| 49 | #define CK_AM33XX (1 << 9) /* AM33xx specific clocks */ | ||
| 50 | |||
| 51 | |||
| 52 | #define CK_34XX (CK_3430ES1 | CK_3430ES2PLUS) | ||
| 53 | #define CK_3XXX (CK_34XX | CK_AM35XX | CK_36XX) | ||
| 54 | |||
| 55 | struct module; | ||
| 56 | struct clk; | ||
| 57 | struct clockdomain; | ||
| 58 | |||
| 59 | /* Temporary, needed during the common clock framework conversion */ | ||
| 60 | #define __clk_get_name(clk) (clk->name) | ||
| 61 | #define __clk_get_parent(clk) (clk->parent) | ||
| 62 | #define __clk_get_rate(clk) (clk->rate) | ||
| 63 | |||
| 64 | /** | ||
| 65 | * struct clkops - some clock function pointers | ||
| 66 | * @enable: fn ptr that enables the current clock in hardware | ||
| 67 | * @disable: fn ptr that enables the current clock in hardware | ||
| 68 | * @find_idlest: function returning the IDLEST register for the clock's IP blk | ||
| 69 | * @find_companion: function returning the "companion" clk reg for the clock | ||
| 70 | * @allow_idle: fn ptr that enables autoidle for the current clock in hardware | ||
| 71 | * @deny_idle: fn ptr that disables autoidle for the current clock in hardware | ||
| 72 | * | ||
| 73 | * A "companion" clk is an accompanying clock to the one being queried | ||
| 74 | * that must be enabled for the IP module connected to the clock to | ||
| 75 | * become accessible by the hardware. Neither @find_idlest nor | ||
| 76 | * @find_companion should be needed; that information is IP | ||
| 77 | * block-specific; the hwmod code has been created to handle this, but | ||
| 78 | * until hwmod data is ready and drivers have been converted to use PM | ||
| 79 | * runtime calls in place of clk_enable()/clk_disable(), @find_idlest and | ||
| 80 | * @find_companion must, unfortunately, remain. | ||
| 81 | */ | ||
| 82 | struct clkops { | ||
| 83 | int (*enable)(struct clk *); | ||
| 84 | void (*disable)(struct clk *); | ||
| 85 | void (*find_idlest)(struct clk *, void __iomem **, | ||
| 86 | u8 *, u8 *); | ||
| 87 | void (*find_companion)(struct clk *, void __iomem **, | ||
| 88 | u8 *); | ||
| 89 | void (*allow_idle)(struct clk *); | ||
| 90 | void (*deny_idle)(struct clk *); | ||
| 91 | }; | ||
| 92 | |||
| 93 | /* struct clksel_rate.flags possibilities */ | ||
| 94 | #define RATE_IN_242X (1 << 0) | ||
| 95 | #define RATE_IN_243X (1 << 1) | ||
| 96 | #define RATE_IN_3430ES1 (1 << 2) /* 3430ES1 rates only */ | ||
| 97 | #define RATE_IN_3430ES2PLUS (1 << 3) /* 3430 ES >= 2 rates only */ | ||
| 98 | #define RATE_IN_36XX (1 << 4) | ||
| 99 | #define RATE_IN_4430 (1 << 5) | ||
| 100 | #define RATE_IN_TI816X (1 << 6) | ||
| 101 | #define RATE_IN_4460 (1 << 7) | ||
| 102 | #define RATE_IN_AM33XX (1 << 8) | ||
| 103 | #define RATE_IN_TI814X (1 << 9) | ||
| 104 | |||
| 105 | #define RATE_IN_24XX (RATE_IN_242X | RATE_IN_243X) | ||
| 106 | #define RATE_IN_34XX (RATE_IN_3430ES1 | RATE_IN_3430ES2PLUS) | ||
| 107 | #define RATE_IN_3XXX (RATE_IN_34XX | RATE_IN_36XX) | ||
| 108 | #define RATE_IN_44XX (RATE_IN_4430 | RATE_IN_4460) | ||
| 109 | |||
| 110 | /* RATE_IN_3430ES2PLUS_36XX includes 34xx/35xx with ES >=2, and all 36xx/37xx */ | ||
| 111 | #define RATE_IN_3430ES2PLUS_36XX (RATE_IN_3430ES2PLUS | RATE_IN_36XX) | ||
| 112 | |||
| 113 | |||
| 114 | /** | ||
| 115 | * struct clksel_rate - register bitfield values corresponding to clk divisors | ||
| 116 | * @val: register bitfield value (shifted to bit 0) | ||
| 117 | * @div: clock divisor corresponding to @val | ||
| 118 | * @flags: (see "struct clksel_rate.flags possibilities" above) | ||
| 119 | * | ||
| 120 | * @val should match the value of a read from struct clk.clksel_reg | ||
| 121 | * AND'ed with struct clk.clksel_mask, shifted right to bit 0. | ||
| 122 | * | ||
| 123 | * @div is the divisor that should be applied to the parent clock's rate | ||
| 124 | * to produce the current clock's rate. | ||
| 125 | */ | ||
| 126 | struct clksel_rate { | ||
| 127 | u32 val; | ||
| 128 | u8 div; | ||
| 129 | u16 flags; | ||
| 130 | }; | ||
| 131 | |||
| 132 | /** | ||
| 133 | * struct clksel - available parent clocks, and a pointer to their divisors | ||
| 134 | * @parent: struct clk * to a possible parent clock | ||
| 135 | * @rates: available divisors for this parent clock | ||
| 136 | * | ||
| 137 | * A struct clksel is always associated with one or more struct clks | ||
| 138 | * and one or more struct clksel_rates. | ||
| 139 | */ | ||
| 140 | struct clksel { | ||
| 141 | struct clk *parent; | ||
| 142 | const struct clksel_rate *rates; | ||
| 143 | }; | ||
| 144 | |||
| 145 | /** | ||
| 146 | * struct dpll_data - DPLL registers and integration data | ||
| 147 | * @mult_div1_reg: register containing the DPLL M and N bitfields | ||
| 148 | * @mult_mask: mask of the DPLL M bitfield in @mult_div1_reg | ||
| 149 | * @div1_mask: mask of the DPLL N bitfield in @mult_div1_reg | ||
| 150 | * @clk_bypass: struct clk pointer to the clock's bypass clock input | ||
| 151 | * @clk_ref: struct clk pointer to the clock's reference clock input | ||
| 152 | * @control_reg: register containing the DPLL mode bitfield | ||
| 153 | * @enable_mask: mask of the DPLL mode bitfield in @control_reg | ||
| 154 | * @last_rounded_rate: cache of the last rate result of omap2_dpll_round_rate() | ||
| 155 | * @last_rounded_m: cache of the last M result of omap2_dpll_round_rate() | ||
| 156 | * @max_multiplier: maximum valid non-bypass multiplier value (actual) | ||
| 157 | * @last_rounded_n: cache of the last N result of omap2_dpll_round_rate() | ||
| 158 | * @min_divider: minimum valid non-bypass divider value (actual) | ||
| 159 | * @max_divider: maximum valid non-bypass divider value (actual) | ||
| 160 | * @modes: possible values of @enable_mask | ||
| 161 | * @autoidle_reg: register containing the DPLL autoidle mode bitfield | ||
| 162 | * @idlest_reg: register containing the DPLL idle status bitfield | ||
| 163 | * @autoidle_mask: mask of the DPLL autoidle mode bitfield in @autoidle_reg | ||
| 164 | * @freqsel_mask: mask of the DPLL jitter correction bitfield in @control_reg | ||
| 165 | * @idlest_mask: mask of the DPLL idle status bitfield in @idlest_reg | ||
| 166 | * @auto_recal_bit: bitshift of the driftguard enable bit in @control_reg | ||
| 167 | * @recal_en_bit: bitshift of the PRM_IRQENABLE_* bit for recalibration IRQs | ||
| 168 | * @recal_st_bit: bitshift of the PRM_IRQSTATUS_* bit for recalibration IRQs | ||
| 169 | * @flags: DPLL type/features (see below) | ||
| 170 | * | ||
| 171 | * Possible values for @flags: | ||
| 172 | * DPLL_J_TYPE: "J-type DPLL" (only some 36xx, 4xxx DPLLs) | ||
| 173 | * | ||
| 174 | * @freqsel_mask is only used on the OMAP34xx family and AM35xx. | ||
| 175 | * | ||
| 176 | * XXX Some DPLLs have multiple bypass inputs, so it's not technically | ||
| 177 | * correct to only have one @clk_bypass pointer. | ||
| 178 | * | ||
| 179 | * XXX The runtime-variable fields (@last_rounded_rate, @last_rounded_m, | ||
| 180 | * @last_rounded_n) should be separated from the runtime-fixed fields | ||
| 181 | * and placed into a different structure, so that the runtime-fixed data | ||
| 182 | * can be placed into read-only space. | ||
| 183 | */ | ||
| 184 | struct dpll_data { | ||
| 185 | void __iomem *mult_div1_reg; | ||
| 186 | u32 mult_mask; | ||
| 187 | u32 div1_mask; | ||
| 188 | struct clk *clk_bypass; | ||
| 189 | struct clk *clk_ref; | ||
| 190 | void __iomem *control_reg; | ||
| 191 | u32 enable_mask; | ||
| 192 | unsigned long last_rounded_rate; | ||
| 193 | u16 last_rounded_m; | ||
| 194 | u16 max_multiplier; | ||
| 195 | u8 last_rounded_n; | ||
| 196 | u8 min_divider; | ||
| 197 | u16 max_divider; | ||
| 198 | u8 modes; | ||
| 199 | void __iomem *autoidle_reg; | ||
| 200 | void __iomem *idlest_reg; | ||
| 201 | u32 autoidle_mask; | ||
| 202 | u32 freqsel_mask; | ||
| 203 | u32 idlest_mask; | ||
| 204 | u32 dco_mask; | ||
| 205 | u32 sddiv_mask; | ||
| 206 | u8 auto_recal_bit; | ||
| 207 | u8 recal_en_bit; | ||
| 208 | u8 recal_st_bit; | ||
| 209 | u8 flags; | ||
| 210 | }; | ||
| 211 | |||
| 212 | /* | ||
| 213 | * struct clk.flags possibilities | ||
| 214 | * | ||
| 215 | * XXX document the rest of the clock flags here | ||
| 216 | * | ||
| 217 | * CLOCK_CLKOUTX2: (OMAP4 only) DPLL CLKOUT and CLKOUTX2 GATE_CTRL | ||
| 218 | * bits share the same register. This flag allows the | ||
| 219 | * omap4_dpllmx*() code to determine which GATE_CTRL bit field | ||
| 220 | * should be used. This is a temporary solution - a better approach | ||
| 221 | * would be to associate clock type-specific data with the clock, | ||
| 222 | * similar to the struct dpll_data approach. | ||
| 223 | */ | ||
| 224 | #define ENABLE_REG_32BIT (1 << 0) /* Use 32-bit access */ | ||
| 225 | #define CLOCK_IDLE_CONTROL (1 << 1) | ||
| 226 | #define CLOCK_NO_IDLE_PARENT (1 << 2) | ||
| 227 | #define ENABLE_ON_INIT (1 << 3) /* Enable upon framework init */ | ||
| 228 | #define INVERT_ENABLE (1 << 4) /* 0 enables, 1 disables */ | ||
| 229 | #define CLOCK_CLKOUTX2 (1 << 5) | ||
| 230 | |||
| 231 | /** | ||
| 232 | * struct clk - OMAP struct clk | ||
| 233 | * @node: list_head connecting this clock into the full clock list | ||
| 234 | * @ops: struct clkops * for this clock | ||
| 235 | * @name: the name of the clock in the hardware (used in hwmod data and debug) | ||
| 236 | * @parent: pointer to this clock's parent struct clk | ||
| 237 | * @children: list_head connecting to the child clks' @sibling list_heads | ||
| 238 | * @sibling: list_head connecting this clk to its parent clk's @children | ||
| 239 | * @rate: current clock rate | ||
| 240 | * @enable_reg: register to write to enable the clock (see @enable_bit) | ||
| 241 | * @recalc: fn ptr that returns the clock's current rate | ||
| 242 | * @set_rate: fn ptr that can change the clock's current rate | ||
| 243 | * @round_rate: fn ptr that can round the clock's current rate | ||
| 244 | * @init: fn ptr to do clock-specific initialization | ||
| 245 | * @enable_bit: bitshift to write to enable/disable the clock (see @enable_reg) | ||
| 246 | * @usecount: number of users that have requested this clock to be enabled | ||
| 247 | * @fixed_div: when > 0, this clock's rate is its parent's rate / @fixed_div | ||
| 248 | * @flags: see "struct clk.flags possibilities" above | ||
| 249 | * @clksel_reg: for clksel clks, register va containing src/divisor select | ||
| 250 | * @clksel_mask: bitmask in @clksel_reg for the src/divisor selector | ||
| 251 | * @clksel: for clksel clks, pointer to struct clksel for this clock | ||
| 252 | * @dpll_data: for DPLLs, pointer to struct dpll_data for this clock | ||
| 253 | * @clkdm_name: clockdomain name that this clock is contained in | ||
| 254 | * @clkdm: pointer to struct clockdomain, resolved from @clkdm_name at runtime | ||
| 255 | * @rate_offset: bitshift for rate selection bitfield (OMAP1 only) | ||
| 256 | * @src_offset: bitshift for source selection bitfield (OMAP1 only) | ||
| 257 | * | ||
| 258 | * XXX @rate_offset, @src_offset should probably be removed and OMAP1 | ||
| 259 | * clock code converted to use clksel. | ||
| 260 | * | ||
| 261 | * XXX @usecount is poorly named. It should be "enable_count" or | ||
| 262 | * something similar. "users" in the description refers to kernel | ||
| 263 | * code (core code or drivers) that have called clk_enable() and not | ||
| 264 | * yet called clk_disable(); the usecount of parent clocks is also | ||
| 265 | * incremented by the clock code when clk_enable() is called on child | ||
| 266 | * clocks and decremented by the clock code when clk_disable() is | ||
| 267 | * called on child clocks. | ||
| 268 | * | ||
| 269 | * XXX @clkdm, @usecount, @children, @sibling should be marked for | ||
| 270 | * internal use only. | ||
| 271 | * | ||
| 272 | * @children and @sibling are used to optimize parent-to-child clock | ||
| 273 | * tree traversals. (child-to-parent traversals use @parent.) | ||
| 274 | * | ||
| 275 | * XXX The notion of the clock's current rate probably needs to be | ||
| 276 | * separated from the clock's target rate. | ||
| 277 | */ | ||
| 278 | struct clk { | ||
| 279 | struct list_head node; | ||
| 280 | const struct clkops *ops; | ||
| 281 | const char *name; | ||
| 282 | struct clk *parent; | ||
| 283 | struct list_head children; | ||
| 284 | struct list_head sibling; /* node for children */ | ||
| 285 | unsigned long rate; | ||
| 286 | void __iomem *enable_reg; | ||
| 287 | unsigned long (*recalc)(struct clk *); | ||
| 288 | int (*set_rate)(struct clk *, unsigned long); | ||
| 289 | long (*round_rate)(struct clk *, unsigned long); | ||
| 290 | void (*init)(struct clk *); | ||
| 291 | u8 enable_bit; | ||
| 292 | s8 usecount; | ||
| 293 | u8 fixed_div; | ||
| 294 | u8 flags; | ||
| 295 | void __iomem *clksel_reg; | ||
| 296 | u32 clksel_mask; | ||
| 297 | const struct clksel *clksel; | ||
| 298 | struct dpll_data *dpll_data; | ||
| 299 | const char *clkdm_name; | ||
| 300 | struct clockdomain *clkdm; | ||
| 301 | #if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) | ||
| 302 | struct dentry *dent; /* For visible tree hierarchy */ | ||
| 303 | #endif | ||
| 304 | }; | ||
| 305 | |||
| 306 | struct clk_functions { | ||
| 307 | int (*clk_enable)(struct clk *clk); | ||
| 308 | void (*clk_disable)(struct clk *clk); | ||
| 309 | long (*clk_round_rate)(struct clk *clk, unsigned long rate); | ||
| 310 | int (*clk_set_rate)(struct clk *clk, unsigned long rate); | ||
| 311 | int (*clk_set_parent)(struct clk *clk, struct clk *parent); | ||
| 312 | void (*clk_allow_idle)(struct clk *clk); | ||
| 313 | void (*clk_deny_idle)(struct clk *clk); | ||
| 314 | void (*clk_disable_unused)(struct clk *clk); | ||
| 315 | }; | ||
| 316 | |||
| 317 | extern int mpurate; | ||
| 318 | |||
| 319 | extern int clk_init(struct clk_functions *custom_clocks); | ||
| 320 | extern void clk_preinit(struct clk *clk); | ||
| 321 | extern int clk_register(struct clk *clk); | ||
| 322 | extern void clk_reparent(struct clk *child, struct clk *parent); | ||
| 323 | extern void clk_unregister(struct clk *clk); | ||
| 324 | extern void propagate_rate(struct clk *clk); | ||
| 325 | extern void recalculate_root_clocks(void); | ||
| 326 | extern unsigned long followparent_recalc(struct clk *clk); | ||
| 327 | extern void clk_enable_init_clocks(void); | ||
| 328 | unsigned long omap_fixed_divisor_recalc(struct clk *clk); | ||
| 329 | extern struct clk *omap_clk_get_by_name(const char *name); | ||
| 330 | extern int omap_clk_enable_autoidle_all(void); | ||
| 331 | extern int omap_clk_disable_autoidle_all(void); | ||
| 332 | |||
| 333 | extern const struct clkops clkops_null; | ||
| 334 | |||
| 335 | extern struct clk dummy_ck; | ||
| 20 | 336 | ||
| 21 | #include <plat/clock.h> | ||
| 22 | 337 | ||
| 23 | /* CM_CLKSEL2_PLL.CORE_CLK_SRC bits (2XXX) */ | 338 | /* CM_CLKSEL2_PLL.CORE_CLK_SRC bits (2XXX) */ |
| 24 | #define CORE_CLK_SRC_32K 0x0 | 339 | #define CORE_CLK_SRC_32K 0x0 |
diff --git a/arch/arm/mach-omap2/clock2420_data.c b/arch/arm/mach-omap2/clock2420_data.c index c3cde1a2b6de..da1e388f22f7 100644 --- a/arch/arm/mach-omap2/clock2420_data.c +++ b/arch/arm/mach-omap2/clock2420_data.c | |||
| @@ -18,14 +18,12 @@ | |||
| 18 | #include <linux/clk.h> | 18 | #include <linux/clk.h> |
| 19 | #include <linux/list.h> | 19 | #include <linux/list.h> |
| 20 | 20 | ||
| 21 | #include <plat/clkdev_omap.h> | ||
| 22 | |||
| 23 | #include "soc.h" | 21 | #include "soc.h" |
| 24 | #include "iomap.h" | 22 | #include "iomap.h" |
| 25 | #include "clock.h" | 23 | #include "clock.h" |
| 26 | #include "clock2xxx.h" | 24 | #include "clock2xxx.h" |
| 27 | #include "opp2xxx.h" | 25 | #include "opp2xxx.h" |
| 28 | #include "cm2xxx_3xxx.h" | 26 | #include "cm2xxx.h" |
| 29 | #include "prm2xxx_3xxx.h" | 27 | #include "prm2xxx_3xxx.h" |
| 30 | #include "prm-regbits-24xx.h" | 28 | #include "prm-regbits-24xx.h" |
| 31 | #include "cm-regbits-24xx.h" | 29 | #include "cm-regbits-24xx.h" |
| @@ -1935,8 +1933,6 @@ int __init omap2420_clk_init(void) | |||
| 1935 | cpu_mask = RATE_IN_242X; | 1933 | cpu_mask = RATE_IN_242X; |
| 1936 | rate_table = omap2420_rate_table; | 1934 | rate_table = omap2420_rate_table; |
| 1937 | 1935 | ||
| 1938 | clk_init(&omap2_clk_functions); | ||
| 1939 | |||
| 1940 | for (c = omap2420_clks; c < omap2420_clks + ARRAY_SIZE(omap2420_clks); | 1936 | for (c = omap2420_clks; c < omap2420_clks + ARRAY_SIZE(omap2420_clks); |
| 1941 | c++) | 1937 | c++) |
| 1942 | clk_preinit(c->lk.clk); | 1938 | clk_preinit(c->lk.clk); |
diff --git a/arch/arm/mach-omap2/clock2430.c b/arch/arm/mach-omap2/clock2430.c index a8e326177466..e37df538bcd3 100644 --- a/arch/arm/mach-omap2/clock2430.c +++ b/arch/arm/mach-omap2/clock2430.c | |||
| @@ -21,13 +21,11 @@ | |||
| 21 | #include <linux/clk.h> | 21 | #include <linux/clk.h> |
| 22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
| 23 | 23 | ||
| 24 | #include <plat/clock.h> | ||
| 25 | |||
| 26 | #include "soc.h" | 24 | #include "soc.h" |
| 27 | #include "iomap.h" | 25 | #include "iomap.h" |
| 28 | #include "clock.h" | 26 | #include "clock.h" |
| 29 | #include "clock2xxx.h" | 27 | #include "clock2xxx.h" |
| 30 | #include "cm2xxx_3xxx.h" | 28 | #include "cm2xxx.h" |
| 31 | #include "cm-regbits-24xx.h" | 29 | #include "cm-regbits-24xx.h" |
| 32 | 30 | ||
| 33 | /** | 31 | /** |
diff --git a/arch/arm/mach-omap2/clock2430_data.c b/arch/arm/mach-omap2/clock2430_data.c index 22404fe435e7..c97dafef894d 100644 --- a/arch/arm/mach-omap2/clock2430_data.c +++ b/arch/arm/mach-omap2/clock2430_data.c | |||
| @@ -17,14 +17,12 @@ | |||
| 17 | #include <linux/clk.h> | 17 | #include <linux/clk.h> |
| 18 | #include <linux/list.h> | 18 | #include <linux/list.h> |
| 19 | 19 | ||
| 20 | #include <plat/clkdev_omap.h> | ||
| 21 | |||
| 22 | #include "soc.h" | 20 | #include "soc.h" |
| 23 | #include "iomap.h" | 21 | #include "iomap.h" |
| 24 | #include "clock.h" | 22 | #include "clock.h" |
| 25 | #include "clock2xxx.h" | 23 | #include "clock2xxx.h" |
| 26 | #include "opp2xxx.h" | 24 | #include "opp2xxx.h" |
| 27 | #include "cm2xxx_3xxx.h" | 25 | #include "cm2xxx.h" |
| 28 | #include "prm2xxx_3xxx.h" | 26 | #include "prm2xxx_3xxx.h" |
| 29 | #include "prm-regbits-24xx.h" | 27 | #include "prm-regbits-24xx.h" |
| 30 | #include "cm-regbits-24xx.h" | 28 | #include "cm-regbits-24xx.h" |
| @@ -2034,8 +2032,6 @@ int __init omap2430_clk_init(void) | |||
| 2034 | cpu_mask = RATE_IN_243X; | 2032 | cpu_mask = RATE_IN_243X; |
| 2035 | rate_table = omap2430_rate_table; | 2033 | rate_table = omap2430_rate_table; |
| 2036 | 2034 | ||
| 2037 | clk_init(&omap2_clk_functions); | ||
| 2038 | |||
| 2039 | for (c = omap2430_clks; c < omap2430_clks + ARRAY_SIZE(omap2430_clks); | 2035 | for (c = omap2430_clks; c < omap2430_clks + ARRAY_SIZE(omap2430_clks); |
| 2040 | c++) | 2036 | c++) |
| 2041 | clk_preinit(c->lk.clk); | 2037 | clk_preinit(c->lk.clk); |
diff --git a/arch/arm/mach-omap2/clock2xxx.c b/arch/arm/mach-omap2/clock2xxx.c index e92be1fc1a00..5feee16fee0e 100644 --- a/arch/arm/mach-omap2/clock2xxx.c +++ b/arch/arm/mach-omap2/clock2xxx.c | |||
| @@ -22,8 +22,6 @@ | |||
| 22 | #include <linux/clk.h> | 22 | #include <linux/clk.h> |
| 23 | #include <linux/io.h> | 23 | #include <linux/io.h> |
| 24 | 24 | ||
| 25 | #include <plat/clock.h> | ||
| 26 | |||
| 27 | #include "soc.h" | 25 | #include "soc.h" |
| 28 | #include "clock.h" | 26 | #include "clock.h" |
| 29 | #include "clock2xxx.h" | 27 | #include "clock2xxx.h" |
diff --git a/arch/arm/mach-omap2/clock33xx_data.c b/arch/arm/mach-omap2/clock33xx_data.c index 1a45d6bd2539..17e3de51bcba 100644 --- a/arch/arm/mach-omap2/clock33xx_data.c +++ b/arch/arm/mach-omap2/clock33xx_data.c | |||
| @@ -17,9 +17,8 @@ | |||
| 17 | #include <linux/kernel.h> | 17 | #include <linux/kernel.h> |
| 18 | #include <linux/list.h> | 18 | #include <linux/list.h> |
| 19 | #include <linux/clk.h> | 19 | #include <linux/clk.h> |
| 20 | #include <plat/clkdev_omap.h> | ||
| 21 | 20 | ||
| 22 | #include "am33xx.h" | 21 | #include "soc.h" |
| 23 | #include "iomap.h" | 22 | #include "iomap.h" |
| 24 | #include "control.h" | 23 | #include "control.h" |
| 25 | #include "clock.h" | 24 | #include "clock.h" |
| @@ -1087,8 +1086,6 @@ int __init am33xx_clk_init(void) | |||
| 1087 | cpu_clkflg = CK_AM33XX; | 1086 | cpu_clkflg = CK_AM33XX; |
| 1088 | } | 1087 | } |
| 1089 | 1088 | ||
| 1090 | clk_init(&omap2_clk_functions); | ||
| 1091 | |||
| 1092 | for (c = am33xx_clks; c < am33xx_clks + ARRAY_SIZE(am33xx_clks); c++) | 1089 | for (c = am33xx_clks; c < am33xx_clks + ARRAY_SIZE(am33xx_clks); c++) |
| 1093 | clk_preinit(c->lk.clk); | 1090 | clk_preinit(c->lk.clk); |
| 1094 | 1091 | ||
diff --git a/arch/arm/mach-omap2/clock34xx.c b/arch/arm/mach-omap2/clock34xx.c index 1fc96b9ee330..e41819ba7482 100644 --- a/arch/arm/mach-omap2/clock34xx.c +++ b/arch/arm/mach-omap2/clock34xx.c | |||
| @@ -21,11 +21,9 @@ | |||
| 21 | #include <linux/clk.h> | 21 | #include <linux/clk.h> |
| 22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
| 23 | 23 | ||
| 24 | #include <plat/clock.h> | ||
| 25 | |||
| 26 | #include "clock.h" | 24 | #include "clock.h" |
| 27 | #include "clock34xx.h" | 25 | #include "clock34xx.h" |
| 28 | #include "cm2xxx_3xxx.h" | 26 | #include "cm3xxx.h" |
| 29 | #include "cm-regbits-34xx.h" | 27 | #include "cm-regbits-34xx.h" |
| 30 | 28 | ||
| 31 | /** | 29 | /** |
diff --git a/arch/arm/mach-omap2/clock3517.c b/arch/arm/mach-omap2/clock3517.c index 2e97d08f0e56..622ea0502610 100644 --- a/arch/arm/mach-omap2/clock3517.c +++ b/arch/arm/mach-omap2/clock3517.c | |||
| @@ -21,11 +21,9 @@ | |||
| 21 | #include <linux/clk.h> | 21 | #include <linux/clk.h> |
| 22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
| 23 | 23 | ||
| 24 | #include <plat/clock.h> | ||
| 25 | |||
| 26 | #include "clock.h" | 24 | #include "clock.h" |
| 27 | #include "clock3517.h" | 25 | #include "clock3517.h" |
| 28 | #include "cm2xxx_3xxx.h" | 26 | #include "cm3xxx.h" |
| 29 | #include "cm-regbits-34xx.h" | 27 | #include "cm-regbits-34xx.h" |
| 30 | 28 | ||
| 31 | /* | 29 | /* |
diff --git a/arch/arm/mach-omap2/clock36xx.c b/arch/arm/mach-omap2/clock36xx.c index 0c5e25ed8879..0e1e9e4e2fa4 100644 --- a/arch/arm/mach-omap2/clock36xx.c +++ b/arch/arm/mach-omap2/clock36xx.c | |||
| @@ -22,8 +22,6 @@ | |||
| 22 | #include <linux/clk.h> | 22 | #include <linux/clk.h> |
| 23 | #include <linux/io.h> | 23 | #include <linux/io.h> |
| 24 | 24 | ||
| 25 | #include <plat/clock.h> | ||
| 26 | |||
| 27 | #include "clock.h" | 25 | #include "clock.h" |
| 28 | #include "clock36xx.h" | 26 | #include "clock36xx.h" |
| 29 | 27 | ||
diff --git a/arch/arm/mach-omap2/clock3xxx.c b/arch/arm/mach-omap2/clock3xxx.c index 83bb01427d40..3e8aca2b1b61 100644 --- a/arch/arm/mach-omap2/clock3xxx.c +++ b/arch/arm/mach-omap2/clock3xxx.c | |||
| @@ -21,8 +21,6 @@ | |||
| 21 | #include <linux/clk.h> | 21 | #include <linux/clk.h> |
| 22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
| 23 | 23 | ||
| 24 | #include <plat/clock.h> | ||
| 25 | |||
| 26 | #include "soc.h" | 24 | #include "soc.h" |
| 27 | #include "clock.h" | 25 | #include "clock.h" |
| 28 | #include "clock3xxx.h" | 26 | #include "clock3xxx.h" |
diff --git a/arch/arm/mach-omap2/clock3xxx_data.c b/arch/arm/mach-omap2/clock3xxx_data.c index 1f42c9d5ecf3..6cca19953950 100644 --- a/arch/arm/mach-omap2/clock3xxx_data.c +++ b/arch/arm/mach-omap2/clock3xxx_data.c | |||
| @@ -21,8 +21,6 @@ | |||
| 21 | #include <linux/list.h> | 21 | #include <linux/list.h> |
| 22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
| 23 | 23 | ||
| 24 | #include <plat/clkdev_omap.h> | ||
| 25 | |||
| 26 | #include "soc.h" | 24 | #include "soc.h" |
| 27 | #include "iomap.h" | 25 | #include "iomap.h" |
| 28 | #include "clock.h" | 26 | #include "clock.h" |
| @@ -30,7 +28,7 @@ | |||
| 30 | #include "clock34xx.h" | 28 | #include "clock34xx.h" |
| 31 | #include "clock36xx.h" | 29 | #include "clock36xx.h" |
| 32 | #include "clock3517.h" | 30 | #include "clock3517.h" |
| 33 | #include "cm2xxx_3xxx.h" | 31 | #include "cm3xxx.h" |
| 34 | #include "cm-regbits-34xx.h" | 32 | #include "cm-regbits-34xx.h" |
| 35 | #include "prm2xxx_3xxx.h" | 33 | #include "prm2xxx_3xxx.h" |
| 36 | #include "prm-regbits-34xx.h" | 34 | #include "prm-regbits-34xx.h" |
| @@ -3573,8 +3571,6 @@ int __init omap3xxx_clk_init(void) | |||
| 3573 | else | 3571 | else |
| 3574 | dpll4_dd = dpll4_dd_34xx; | 3572 | dpll4_dd = dpll4_dd_34xx; |
| 3575 | 3573 | ||
| 3576 | clk_init(&omap2_clk_functions); | ||
| 3577 | |||
| 3578 | for (c = omap3xxx_clks; c < omap3xxx_clks + ARRAY_SIZE(omap3xxx_clks); | 3574 | for (c = omap3xxx_clks; c < omap3xxx_clks + ARRAY_SIZE(omap3xxx_clks); |
| 3579 | c++) | 3575 | c++) |
| 3580 | clk_preinit(c->lk.clk); | 3576 | clk_preinit(c->lk.clk); |
diff --git a/arch/arm/mach-omap2/clock44xx_data.c b/arch/arm/mach-omap2/clock44xx_data.c index 6efc30c961a5..2a450c9b9a7b 100644 --- a/arch/arm/mach-omap2/clock44xx_data.c +++ b/arch/arm/mach-omap2/clock44xx_data.c | |||
| @@ -28,8 +28,6 @@ | |||
| 28 | #include <linux/clk.h> | 28 | #include <linux/clk.h> |
| 29 | #include <linux/io.h> | 29 | #include <linux/io.h> |
| 30 | 30 | ||
| 31 | #include <plat/clkdev_omap.h> | ||
| 32 | |||
| 33 | #include "soc.h" | 31 | #include "soc.h" |
| 34 | #include "iomap.h" | 32 | #include "iomap.h" |
| 35 | #include "clock.h" | 33 | #include "clock.h" |
| @@ -3366,8 +3364,6 @@ int __init omap4xxx_clk_init(void) | |||
| 3366 | return 0; | 3364 | return 0; |
| 3367 | } | 3365 | } |
| 3368 | 3366 | ||
| 3369 | clk_init(&omap2_clk_functions); | ||
| 3370 | |||
| 3371 | /* | 3367 | /* |
| 3372 | * Must stay commented until all OMAP SoC drivers are | 3368 | * Must stay commented until all OMAP SoC drivers are |
| 3373 | * converted to runtime PM, or drivers may start crashing | 3369 | * converted to runtime PM, or drivers may start crashing |
diff --git a/arch/arm/mach-omap2/clockdomain.c b/arch/arm/mach-omap2/clockdomain.c index 512e79a842cb..64e50465a4b5 100644 --- a/arch/arm/mach-omap2/clockdomain.c +++ b/arch/arm/mach-omap2/clockdomain.c | |||
| @@ -27,7 +27,8 @@ | |||
| 27 | 27 | ||
| 28 | #include <linux/bitops.h> | 28 | #include <linux/bitops.h> |
| 29 | 29 | ||
| 30 | #include <plat/clock.h> | 30 | #include "soc.h" |
| 31 | #include "clock.h" | ||
| 31 | #include "clockdomain.h" | 32 | #include "clockdomain.h" |
| 32 | 33 | ||
| 33 | /* clkdm_list contains all registered struct clockdomains */ | 34 | /* clkdm_list contains all registered struct clockdomains */ |
diff --git a/arch/arm/mach-omap2/clockdomain.h b/arch/arm/mach-omap2/clockdomain.h index 629576be7444..bc42446e23ab 100644 --- a/arch/arm/mach-omap2/clockdomain.h +++ b/arch/arm/mach-omap2/clockdomain.h | |||
| @@ -18,9 +18,8 @@ | |||
| 18 | #include <linux/spinlock.h> | 18 | #include <linux/spinlock.h> |
| 19 | 19 | ||
| 20 | #include "powerdomain.h" | 20 | #include "powerdomain.h" |
| 21 | #include <plat/clock.h> | 21 | #include "clock.h" |
| 22 | #include <plat/omap_hwmod.h> | 22 | #include "omap_hwmod.h" |
| 23 | #include <plat/cpu.h> | ||
| 24 | 23 | ||
| 25 | /* | 24 | /* |
| 26 | * Clockdomain flags | 25 | * Clockdomain flags |
diff --git a/arch/arm/mach-omap2/clockdomain2xxx_3xxx.c b/arch/arm/mach-omap2/clockdomain2xxx_3xxx.c deleted file mode 100644 index 70294f54e35a..000000000000 --- a/arch/arm/mach-omap2/clockdomain2xxx_3xxx.c +++ /dev/null | |||
| @@ -1,339 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * OMAP2 and OMAP3 clockdomain control | ||
| 3 | * | ||
| 4 | * Copyright (C) 2008-2010 Texas Instruments, Inc. | ||
| 5 | * Copyright (C) 2008-2010 Nokia Corporation | ||
| 6 | * | ||
| 7 | * Derived from mach-omap2/clockdomain.c written by Paul Walmsley | ||
| 8 | * Rajendra Nayak <rnayak@ti.com> | ||
| 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/types.h> | ||
| 16 | #include <plat/prcm.h> | ||
| 17 | #include "prm.h" | ||
| 18 | #include "prm2xxx_3xxx.h" | ||
| 19 | #include "cm.h" | ||
| 20 | #include "cm2xxx_3xxx.h" | ||
| 21 | #include "cm-regbits-24xx.h" | ||
| 22 | #include "cm-regbits-34xx.h" | ||
| 23 | #include "prm-regbits-24xx.h" | ||
| 24 | #include "clockdomain.h" | ||
| 25 | |||
| 26 | static int omap2_clkdm_add_wkdep(struct clockdomain *clkdm1, | ||
| 27 | struct clockdomain *clkdm2) | ||
| 28 | { | ||
| 29 | omap2_prm_set_mod_reg_bits((1 << clkdm2->dep_bit), | ||
| 30 | clkdm1->pwrdm.ptr->prcm_offs, PM_WKDEP); | ||
| 31 | return 0; | ||
| 32 | } | ||
| 33 | |||
| 34 | static int omap2_clkdm_del_wkdep(struct clockdomain *clkdm1, | ||
| 35 | struct clockdomain *clkdm2) | ||
| 36 | { | ||
| 37 | omap2_prm_clear_mod_reg_bits((1 << clkdm2->dep_bit), | ||
| 38 | clkdm1->pwrdm.ptr->prcm_offs, PM_WKDEP); | ||
| 39 | return 0; | ||
| 40 | } | ||
| 41 | |||
| 42 | static int omap2_clkdm_read_wkdep(struct clockdomain *clkdm1, | ||
| 43 | struct clockdomain *clkdm2) | ||
| 44 | { | ||
| 45 | return omap2_prm_read_mod_bits_shift(clkdm1->pwrdm.ptr->prcm_offs, | ||
| 46 | PM_WKDEP, (1 << clkdm2->dep_bit)); | ||
| 47 | } | ||
| 48 | |||
| 49 | static int omap2_clkdm_clear_all_wkdeps(struct clockdomain *clkdm) | ||
| 50 | { | ||
| 51 | struct clkdm_dep *cd; | ||
| 52 | u32 mask = 0; | ||
| 53 | |||
| 54 | for (cd = clkdm->wkdep_srcs; cd && cd->clkdm_name; cd++) { | ||
| 55 | if (!cd->clkdm) | ||
| 56 | continue; /* only happens if data is erroneous */ | ||
| 57 | |||
| 58 | /* PRM accesses are slow, so minimize them */ | ||
| 59 | mask |= 1 << cd->clkdm->dep_bit; | ||
| 60 | atomic_set(&cd->wkdep_usecount, 0); | ||
| 61 | } | ||
| 62 | |||
| 63 | omap2_prm_clear_mod_reg_bits(mask, clkdm->pwrdm.ptr->prcm_offs, | ||
| 64 | PM_WKDEP); | ||
| 65 | return 0; | ||
| 66 | } | ||
| 67 | |||
| 68 | static int omap3_clkdm_add_sleepdep(struct clockdomain *clkdm1, | ||
| 69 | struct clockdomain *clkdm2) | ||
| 70 | { | ||
| 71 | omap2_cm_set_mod_reg_bits((1 << clkdm2->dep_bit), | ||
| 72 | clkdm1->pwrdm.ptr->prcm_offs, | ||
| 73 | OMAP3430_CM_SLEEPDEP); | ||
| 74 | return 0; | ||
| 75 | } | ||
| 76 | |||
| 77 | static int omap3_clkdm_del_sleepdep(struct clockdomain *clkdm1, | ||
| 78 | struct clockdomain *clkdm2) | ||
| 79 | { | ||
| 80 | omap2_cm_clear_mod_reg_bits((1 << clkdm2->dep_bit), | ||
| 81 | clkdm1->pwrdm.ptr->prcm_offs, | ||
| 82 | OMAP3430_CM_SLEEPDEP); | ||
| 83 | return 0; | ||
| 84 | } | ||
| 85 | |||
| 86 | static int omap3_clkdm_read_sleepdep(struct clockdomain *clkdm1, | ||
| 87 | struct clockdomain *clkdm2) | ||
| 88 | { | ||
| 89 | return omap2_prm_read_mod_bits_shift(clkdm1->pwrdm.ptr->prcm_offs, | ||
| 90 | OMAP3430_CM_SLEEPDEP, (1 << clkdm2->dep_bit)); | ||
| 91 | } | ||
| 92 | |||
| 93 | static int omap3_clkdm_clear_all_sleepdeps(struct clockdomain *clkdm) | ||
| 94 | { | ||
| 95 | struct clkdm_dep *cd; | ||
| 96 | u32 mask = 0; | ||
| 97 | |||
| 98 | for (cd = clkdm->sleepdep_srcs; cd && cd->clkdm_name; cd++) { | ||
| 99 | if (!cd->clkdm) | ||
| 100 | continue; /* only happens if data is erroneous */ | ||
| 101 | |||
| 102 | /* PRM accesses are slow, so minimize them */ | ||
| 103 | mask |= 1 << cd->clkdm->dep_bit; | ||
| 104 | atomic_set(&cd->sleepdep_usecount, 0); | ||
| 105 | } | ||
| 106 | omap2_prm_clear_mod_reg_bits(mask, clkdm->pwrdm.ptr->prcm_offs, | ||
| 107 | OMAP3430_CM_SLEEPDEP); | ||
| 108 | return 0; | ||
| 109 | } | ||
| 110 | |||
| 111 | static int omap2_clkdm_sleep(struct clockdomain *clkdm) | ||
| 112 | { | ||
| 113 | omap2_cm_set_mod_reg_bits(OMAP24XX_FORCESTATE_MASK, | ||
| 114 | clkdm->pwrdm.ptr->prcm_offs, | ||
| 115 | OMAP2_PM_PWSTCTRL); | ||
| 116 | return 0; | ||
| 117 | } | ||
| 118 | |||
| 119 | static int omap2_clkdm_wakeup(struct clockdomain *clkdm) | ||
| 120 | { | ||
| 121 | omap2_cm_clear_mod_reg_bits(OMAP24XX_FORCESTATE_MASK, | ||
| 122 | clkdm->pwrdm.ptr->prcm_offs, | ||
| 123 | OMAP2_PM_PWSTCTRL); | ||
| 124 | return 0; | ||
| 125 | } | ||
| 126 | |||
| 127 | static void omap2_clkdm_allow_idle(struct clockdomain *clkdm) | ||
| 128 | { | ||
| 129 | if (atomic_read(&clkdm->usecount) > 0) | ||
| 130 | _clkdm_add_autodeps(clkdm); | ||
| 131 | |||
| 132 | omap2xxx_cm_clkdm_enable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 133 | clkdm->clktrctrl_mask); | ||
| 134 | } | ||
| 135 | |||
| 136 | static void omap2_clkdm_deny_idle(struct clockdomain *clkdm) | ||
| 137 | { | ||
| 138 | omap2xxx_cm_clkdm_disable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 139 | clkdm->clktrctrl_mask); | ||
| 140 | |||
| 141 | if (atomic_read(&clkdm->usecount) > 0) | ||
| 142 | _clkdm_del_autodeps(clkdm); | ||
| 143 | } | ||
| 144 | |||
| 145 | static void _enable_hwsup(struct clockdomain *clkdm) | ||
| 146 | { | ||
| 147 | if (cpu_is_omap24xx()) | ||
| 148 | omap2xxx_cm_clkdm_enable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 149 | clkdm->clktrctrl_mask); | ||
| 150 | else if (cpu_is_omap34xx()) | ||
| 151 | omap3xxx_cm_clkdm_enable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 152 | clkdm->clktrctrl_mask); | ||
| 153 | } | ||
| 154 | |||
| 155 | static void _disable_hwsup(struct clockdomain *clkdm) | ||
| 156 | { | ||
| 157 | if (cpu_is_omap24xx()) | ||
| 158 | omap2xxx_cm_clkdm_disable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 159 | clkdm->clktrctrl_mask); | ||
| 160 | else if (cpu_is_omap34xx()) | ||
| 161 | omap3xxx_cm_clkdm_disable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 162 | clkdm->clktrctrl_mask); | ||
| 163 | } | ||
| 164 | |||
| 165 | static int omap3_clkdm_sleep(struct clockdomain *clkdm) | ||
| 166 | { | ||
| 167 | omap3xxx_cm_clkdm_force_sleep(clkdm->pwrdm.ptr->prcm_offs, | ||
| 168 | clkdm->clktrctrl_mask); | ||
| 169 | return 0; | ||
| 170 | } | ||
| 171 | |||
| 172 | static int omap3_clkdm_wakeup(struct clockdomain *clkdm) | ||
| 173 | { | ||
| 174 | omap3xxx_cm_clkdm_force_wakeup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 175 | clkdm->clktrctrl_mask); | ||
| 176 | return 0; | ||
| 177 | } | ||
| 178 | |||
| 179 | static int omap2_clkdm_clk_enable(struct clockdomain *clkdm) | ||
| 180 | { | ||
| 181 | bool hwsup = false; | ||
| 182 | |||
| 183 | if (!clkdm->clktrctrl_mask) | ||
| 184 | return 0; | ||
| 185 | |||
| 186 | hwsup = omap2_cm_is_clkdm_in_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 187 | clkdm->clktrctrl_mask); | ||
| 188 | |||
| 189 | if (hwsup) { | ||
| 190 | /* Disable HW transitions when we are changing deps */ | ||
| 191 | _disable_hwsup(clkdm); | ||
| 192 | _clkdm_add_autodeps(clkdm); | ||
| 193 | _enable_hwsup(clkdm); | ||
| 194 | } else { | ||
| 195 | if (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP) | ||
| 196 | omap2_clkdm_wakeup(clkdm); | ||
| 197 | } | ||
| 198 | |||
| 199 | return 0; | ||
| 200 | } | ||
| 201 | |||
| 202 | static int omap2_clkdm_clk_disable(struct clockdomain *clkdm) | ||
| 203 | { | ||
| 204 | bool hwsup = false; | ||
| 205 | |||
| 206 | if (!clkdm->clktrctrl_mask) | ||
| 207 | return 0; | ||
| 208 | |||
| 209 | hwsup = omap2_cm_is_clkdm_in_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 210 | clkdm->clktrctrl_mask); | ||
| 211 | |||
| 212 | if (hwsup) { | ||
| 213 | /* Disable HW transitions when we are changing deps */ | ||
| 214 | _disable_hwsup(clkdm); | ||
| 215 | _clkdm_del_autodeps(clkdm); | ||
| 216 | _enable_hwsup(clkdm); | ||
| 217 | } else { | ||
| 218 | if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP) | ||
| 219 | omap2_clkdm_sleep(clkdm); | ||
| 220 | } | ||
| 221 | |||
| 222 | return 0; | ||
| 223 | } | ||
| 224 | |||
| 225 | static void omap3_clkdm_allow_idle(struct clockdomain *clkdm) | ||
| 226 | { | ||
| 227 | if (atomic_read(&clkdm->usecount) > 0) | ||
| 228 | _clkdm_add_autodeps(clkdm); | ||
| 229 | |||
| 230 | omap3xxx_cm_clkdm_enable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 231 | clkdm->clktrctrl_mask); | ||
| 232 | } | ||
| 233 | |||
| 234 | static void omap3_clkdm_deny_idle(struct clockdomain *clkdm) | ||
| 235 | { | ||
| 236 | omap3xxx_cm_clkdm_disable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 237 | clkdm->clktrctrl_mask); | ||
| 238 | |||
| 239 | if (atomic_read(&clkdm->usecount) > 0) | ||
| 240 | _clkdm_del_autodeps(clkdm); | ||
| 241 | } | ||
| 242 | |||
| 243 | static int omap3xxx_clkdm_clk_enable(struct clockdomain *clkdm) | ||
| 244 | { | ||
| 245 | bool hwsup = false; | ||
| 246 | |||
| 247 | if (!clkdm->clktrctrl_mask) | ||
| 248 | return 0; | ||
| 249 | |||
| 250 | /* | ||
| 251 | * The CLKDM_MISSING_IDLE_REPORTING flag documentation has | ||
| 252 | * more details on the unpleasant problem this is working | ||
| 253 | * around | ||
| 254 | */ | ||
| 255 | if ((clkdm->flags & CLKDM_MISSING_IDLE_REPORTING) && | ||
| 256 | (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP)) { | ||
| 257 | omap3_clkdm_wakeup(clkdm); | ||
| 258 | return 0; | ||
| 259 | } | ||
| 260 | |||
| 261 | hwsup = omap2_cm_is_clkdm_in_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 262 | clkdm->clktrctrl_mask); | ||
| 263 | |||
| 264 | if (hwsup) { | ||
| 265 | /* Disable HW transitions when we are changing deps */ | ||
| 266 | _disable_hwsup(clkdm); | ||
| 267 | _clkdm_add_autodeps(clkdm); | ||
| 268 | _enable_hwsup(clkdm); | ||
| 269 | } else { | ||
| 270 | if (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP) | ||
| 271 | omap3_clkdm_wakeup(clkdm); | ||
| 272 | } | ||
| 273 | |||
| 274 | return 0; | ||
| 275 | } | ||
| 276 | |||
| 277 | static int omap3xxx_clkdm_clk_disable(struct clockdomain *clkdm) | ||
| 278 | { | ||
| 279 | bool hwsup = false; | ||
| 280 | |||
| 281 | if (!clkdm->clktrctrl_mask) | ||
| 282 | return 0; | ||
| 283 | |||
| 284 | /* | ||
| 285 | * The CLKDM_MISSING_IDLE_REPORTING flag documentation has | ||
| 286 | * more details on the unpleasant problem this is working | ||
| 287 | * around | ||
| 288 | */ | ||
| 289 | if (clkdm->flags & CLKDM_MISSING_IDLE_REPORTING && | ||
| 290 | !(clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) { | ||
| 291 | _enable_hwsup(clkdm); | ||
| 292 | return 0; | ||
| 293 | } | ||
| 294 | |||
| 295 | hwsup = omap2_cm_is_clkdm_in_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 296 | clkdm->clktrctrl_mask); | ||
| 297 | |||
| 298 | if (hwsup) { | ||
| 299 | /* Disable HW transitions when we are changing deps */ | ||
| 300 | _disable_hwsup(clkdm); | ||
| 301 | _clkdm_del_autodeps(clkdm); | ||
| 302 | _enable_hwsup(clkdm); | ||
| 303 | } else { | ||
| 304 | if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP) | ||
| 305 | omap3_clkdm_sleep(clkdm); | ||
| 306 | } | ||
| 307 | |||
| 308 | return 0; | ||
| 309 | } | ||
| 310 | |||
| 311 | struct clkdm_ops omap2_clkdm_operations = { | ||
| 312 | .clkdm_add_wkdep = omap2_clkdm_add_wkdep, | ||
| 313 | .clkdm_del_wkdep = omap2_clkdm_del_wkdep, | ||
| 314 | .clkdm_read_wkdep = omap2_clkdm_read_wkdep, | ||
| 315 | .clkdm_clear_all_wkdeps = omap2_clkdm_clear_all_wkdeps, | ||
| 316 | .clkdm_sleep = omap2_clkdm_sleep, | ||
| 317 | .clkdm_wakeup = omap2_clkdm_wakeup, | ||
| 318 | .clkdm_allow_idle = omap2_clkdm_allow_idle, | ||
| 319 | .clkdm_deny_idle = omap2_clkdm_deny_idle, | ||
| 320 | .clkdm_clk_enable = omap2_clkdm_clk_enable, | ||
| 321 | .clkdm_clk_disable = omap2_clkdm_clk_disable, | ||
| 322 | }; | ||
| 323 | |||
| 324 | struct clkdm_ops omap3_clkdm_operations = { | ||
| 325 | .clkdm_add_wkdep = omap2_clkdm_add_wkdep, | ||
| 326 | .clkdm_del_wkdep = omap2_clkdm_del_wkdep, | ||
| 327 | .clkdm_read_wkdep = omap2_clkdm_read_wkdep, | ||
| 328 | .clkdm_clear_all_wkdeps = omap2_clkdm_clear_all_wkdeps, | ||
| 329 | .clkdm_add_sleepdep = omap3_clkdm_add_sleepdep, | ||
| 330 | .clkdm_del_sleepdep = omap3_clkdm_del_sleepdep, | ||
| 331 | .clkdm_read_sleepdep = omap3_clkdm_read_sleepdep, | ||
| 332 | .clkdm_clear_all_sleepdeps = omap3_clkdm_clear_all_sleepdeps, | ||
| 333 | .clkdm_sleep = omap3_clkdm_sleep, | ||
| 334 | .clkdm_wakeup = omap3_clkdm_wakeup, | ||
| 335 | .clkdm_allow_idle = omap3_clkdm_allow_idle, | ||
| 336 | .clkdm_deny_idle = omap3_clkdm_deny_idle, | ||
| 337 | .clkdm_clk_enable = omap3xxx_clkdm_clk_enable, | ||
| 338 | .clkdm_clk_disable = omap3xxx_clkdm_clk_disable, | ||
| 339 | }; | ||
diff --git a/arch/arm/mach-omap2/clockdomain33xx.c b/arch/arm/mach-omap2/clockdomain33xx.c deleted file mode 100644 index aca6388fad76..000000000000 --- a/arch/arm/mach-omap2/clockdomain33xx.c +++ /dev/null | |||
| @@ -1,74 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * AM33XX clockdomain control | ||
| 3 | * | ||
| 4 | * Copyright (C) 2011-2012 Texas Instruments Incorporated - http://www.ti.com/ | ||
| 5 | * Vaibhav Hiremath <hvaibhav@ti.com> | ||
| 6 | * | ||
| 7 | * Derived from mach-omap2/clockdomain44xx.c written by Rajendra Nayak | ||
| 8 | * | ||
| 9 | * This program is free software; you can redistribute it and/or | ||
| 10 | * modify it under the terms of the GNU General Public License as | ||
| 11 | * published by the Free Software Foundation version 2. | ||
| 12 | * | ||
| 13 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any | ||
| 14 | * kind, whether express or implied; without even the implied warranty | ||
| 15 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | * GNU General Public License for more details. | ||
| 17 | */ | ||
| 18 | |||
| 19 | #include <linux/kernel.h> | ||
| 20 | |||
| 21 | #include "clockdomain.h" | ||
| 22 | #include "cm33xx.h" | ||
| 23 | |||
| 24 | |||
| 25 | static int am33xx_clkdm_sleep(struct clockdomain *clkdm) | ||
| 26 | { | ||
| 27 | am33xx_cm_clkdm_force_sleep(clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 28 | return 0; | ||
| 29 | } | ||
| 30 | |||
| 31 | static int am33xx_clkdm_wakeup(struct clockdomain *clkdm) | ||
| 32 | { | ||
| 33 | am33xx_cm_clkdm_force_wakeup(clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 34 | return 0; | ||
| 35 | } | ||
| 36 | |||
| 37 | static void am33xx_clkdm_allow_idle(struct clockdomain *clkdm) | ||
| 38 | { | ||
| 39 | am33xx_cm_clkdm_enable_hwsup(clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 40 | } | ||
| 41 | |||
| 42 | static void am33xx_clkdm_deny_idle(struct clockdomain *clkdm) | ||
| 43 | { | ||
| 44 | am33xx_cm_clkdm_disable_hwsup(clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 45 | } | ||
| 46 | |||
| 47 | static int am33xx_clkdm_clk_enable(struct clockdomain *clkdm) | ||
| 48 | { | ||
| 49 | if (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP) | ||
| 50 | return am33xx_clkdm_wakeup(clkdm); | ||
| 51 | |||
| 52 | return 0; | ||
| 53 | } | ||
| 54 | |||
| 55 | static int am33xx_clkdm_clk_disable(struct clockdomain *clkdm) | ||
| 56 | { | ||
| 57 | bool hwsup = false; | ||
| 58 | |||
| 59 | hwsup = am33xx_cm_is_clkdm_in_hwsup(clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 60 | |||
| 61 | if (!hwsup && (clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) | ||
| 62 | am33xx_clkdm_sleep(clkdm); | ||
| 63 | |||
| 64 | return 0; | ||
| 65 | } | ||
| 66 | |||
| 67 | struct clkdm_ops am33xx_clkdm_operations = { | ||
| 68 | .clkdm_sleep = am33xx_clkdm_sleep, | ||
| 69 | .clkdm_wakeup = am33xx_clkdm_wakeup, | ||
| 70 | .clkdm_allow_idle = am33xx_clkdm_allow_idle, | ||
| 71 | .clkdm_deny_idle = am33xx_clkdm_deny_idle, | ||
| 72 | .clkdm_clk_enable = am33xx_clkdm_clk_enable, | ||
| 73 | .clkdm_clk_disable = am33xx_clkdm_clk_disable, | ||
| 74 | }; | ||
diff --git a/arch/arm/mach-omap2/clockdomain44xx.c b/arch/arm/mach-omap2/clockdomain44xx.c deleted file mode 100644 index 6fc6155625bc..000000000000 --- a/arch/arm/mach-omap2/clockdomain44xx.c +++ /dev/null | |||
| @@ -1,151 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * OMAP4 clockdomain control | ||
| 3 | * | ||
| 4 | * Copyright (C) 2008-2010 Texas Instruments, Inc. | ||
| 5 | * Copyright (C) 2008-2010 Nokia Corporation | ||
| 6 | * | ||
| 7 | * Derived from mach-omap2/clockdomain.c written by Paul Walmsley | ||
| 8 | * Rajendra Nayak <rnayak@ti.com> | ||
| 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 "clockdomain.h" | ||
| 17 | #include "cminst44xx.h" | ||
| 18 | #include "cm44xx.h" | ||
| 19 | |||
| 20 | static int omap4_clkdm_add_wkup_sleep_dep(struct clockdomain *clkdm1, | ||
| 21 | struct clockdomain *clkdm2) | ||
| 22 | { | ||
| 23 | omap4_cminst_set_inst_reg_bits((1 << clkdm2->dep_bit), | ||
| 24 | clkdm1->prcm_partition, | ||
| 25 | clkdm1->cm_inst, clkdm1->clkdm_offs + | ||
| 26 | OMAP4_CM_STATICDEP); | ||
| 27 | return 0; | ||
| 28 | } | ||
| 29 | |||
| 30 | static int omap4_clkdm_del_wkup_sleep_dep(struct clockdomain *clkdm1, | ||
| 31 | struct clockdomain *clkdm2) | ||
| 32 | { | ||
| 33 | omap4_cminst_clear_inst_reg_bits((1 << clkdm2->dep_bit), | ||
| 34 | clkdm1->prcm_partition, | ||
| 35 | clkdm1->cm_inst, clkdm1->clkdm_offs + | ||
| 36 | OMAP4_CM_STATICDEP); | ||
| 37 | return 0; | ||
| 38 | } | ||
| 39 | |||
| 40 | static int omap4_clkdm_read_wkup_sleep_dep(struct clockdomain *clkdm1, | ||
| 41 | struct clockdomain *clkdm2) | ||
| 42 | { | ||
| 43 | return omap4_cminst_read_inst_reg_bits(clkdm1->prcm_partition, | ||
| 44 | clkdm1->cm_inst, clkdm1->clkdm_offs + | ||
| 45 | OMAP4_CM_STATICDEP, | ||
| 46 | (1 << clkdm2->dep_bit)); | ||
| 47 | } | ||
| 48 | |||
| 49 | static int omap4_clkdm_clear_all_wkup_sleep_deps(struct clockdomain *clkdm) | ||
| 50 | { | ||
| 51 | struct clkdm_dep *cd; | ||
| 52 | u32 mask = 0; | ||
| 53 | |||
| 54 | if (!clkdm->prcm_partition) | ||
| 55 | return 0; | ||
| 56 | |||
| 57 | for (cd = clkdm->wkdep_srcs; cd && cd->clkdm_name; cd++) { | ||
| 58 | if (!cd->clkdm) | ||
| 59 | continue; /* only happens if data is erroneous */ | ||
| 60 | |||
| 61 | mask |= 1 << cd->clkdm->dep_bit; | ||
| 62 | atomic_set(&cd->wkdep_usecount, 0); | ||
| 63 | } | ||
| 64 | |||
| 65 | omap4_cminst_clear_inst_reg_bits(mask, clkdm->prcm_partition, | ||
| 66 | clkdm->cm_inst, clkdm->clkdm_offs + | ||
| 67 | OMAP4_CM_STATICDEP); | ||
| 68 | return 0; | ||
| 69 | } | ||
| 70 | |||
| 71 | static int omap4_clkdm_sleep(struct clockdomain *clkdm) | ||
| 72 | { | ||
| 73 | omap4_cminst_clkdm_enable_hwsup(clkdm->prcm_partition, | ||
| 74 | clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 75 | return 0; | ||
| 76 | } | ||
| 77 | |||
| 78 | static int omap4_clkdm_wakeup(struct clockdomain *clkdm) | ||
| 79 | { | ||
| 80 | omap4_cminst_clkdm_force_wakeup(clkdm->prcm_partition, | ||
| 81 | clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 82 | return 0; | ||
| 83 | } | ||
| 84 | |||
| 85 | static void omap4_clkdm_allow_idle(struct clockdomain *clkdm) | ||
| 86 | { | ||
| 87 | omap4_cminst_clkdm_enable_hwsup(clkdm->prcm_partition, | ||
| 88 | clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 89 | } | ||
| 90 | |||
| 91 | static void omap4_clkdm_deny_idle(struct clockdomain *clkdm) | ||
| 92 | { | ||
| 93 | if (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP) | ||
| 94 | omap4_clkdm_wakeup(clkdm); | ||
| 95 | else | ||
| 96 | omap4_cminst_clkdm_disable_hwsup(clkdm->prcm_partition, | ||
| 97 | clkdm->cm_inst, | ||
| 98 | clkdm->clkdm_offs); | ||
| 99 | } | ||
| 100 | |||
| 101 | static int omap4_clkdm_clk_enable(struct clockdomain *clkdm) | ||
| 102 | { | ||
| 103 | if (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP) | ||
| 104 | return omap4_clkdm_wakeup(clkdm); | ||
| 105 | |||
| 106 | return 0; | ||
| 107 | } | ||
| 108 | |||
| 109 | static int omap4_clkdm_clk_disable(struct clockdomain *clkdm) | ||
| 110 | { | ||
| 111 | bool hwsup = false; | ||
| 112 | |||
| 113 | if (!clkdm->prcm_partition) | ||
| 114 | return 0; | ||
| 115 | |||
| 116 | /* | ||
| 117 | * The CLKDM_MISSING_IDLE_REPORTING flag documentation has | ||
| 118 | * more details on the unpleasant problem this is working | ||
| 119 | * around | ||
| 120 | */ | ||
| 121 | if (clkdm->flags & CLKDM_MISSING_IDLE_REPORTING && | ||
| 122 | !(clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) { | ||
| 123 | omap4_clkdm_allow_idle(clkdm); | ||
| 124 | return 0; | ||
| 125 | } | ||
| 126 | |||
| 127 | hwsup = omap4_cminst_is_clkdm_in_hwsup(clkdm->prcm_partition, | ||
| 128 | clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 129 | |||
| 130 | if (!hwsup && (clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) | ||
| 131 | omap4_clkdm_sleep(clkdm); | ||
| 132 | |||
| 133 | return 0; | ||
| 134 | } | ||
| 135 | |||
| 136 | struct clkdm_ops omap4_clkdm_operations = { | ||
| 137 | .clkdm_add_wkdep = omap4_clkdm_add_wkup_sleep_dep, | ||
| 138 | .clkdm_del_wkdep = omap4_clkdm_del_wkup_sleep_dep, | ||
| 139 | .clkdm_read_wkdep = omap4_clkdm_read_wkup_sleep_dep, | ||
| 140 | .clkdm_clear_all_wkdeps = omap4_clkdm_clear_all_wkup_sleep_deps, | ||
| 141 | .clkdm_add_sleepdep = omap4_clkdm_add_wkup_sleep_dep, | ||
| 142 | .clkdm_del_sleepdep = omap4_clkdm_del_wkup_sleep_dep, | ||
| 143 | .clkdm_read_sleepdep = omap4_clkdm_read_wkup_sleep_dep, | ||
| 144 | .clkdm_clear_all_sleepdeps = omap4_clkdm_clear_all_wkup_sleep_deps, | ||
| 145 | .clkdm_sleep = omap4_clkdm_sleep, | ||
| 146 | .clkdm_wakeup = omap4_clkdm_wakeup, | ||
| 147 | .clkdm_allow_idle = omap4_clkdm_allow_idle, | ||
| 148 | .clkdm_deny_idle = omap4_clkdm_deny_idle, | ||
| 149 | .clkdm_clk_enable = omap4_clkdm_clk_enable, | ||
| 150 | .clkdm_clk_disable = omap4_clkdm_clk_disable, | ||
| 151 | }; | ||
diff --git a/arch/arm/mach-omap2/clockdomains2420_data.c b/arch/arm/mach-omap2/clockdomains2420_data.c index 5c741852fac0..7e76becf3a4a 100644 --- a/arch/arm/mach-omap2/clockdomains2420_data.c +++ b/arch/arm/mach-omap2/clockdomains2420_data.c | |||
| @@ -35,6 +35,7 @@ | |||
| 35 | #include <linux/kernel.h> | 35 | #include <linux/kernel.h> |
| 36 | #include <linux/io.h> | 36 | #include <linux/io.h> |
| 37 | 37 | ||
| 38 | #include "soc.h" | ||
| 38 | #include "clockdomain.h" | 39 | #include "clockdomain.h" |
| 39 | #include "prm2xxx_3xxx.h" | 40 | #include "prm2xxx_3xxx.h" |
| 40 | #include "cm2xxx_3xxx.h" | 41 | #include "cm2xxx_3xxx.h" |
diff --git a/arch/arm/mach-omap2/clockdomains2430_data.c b/arch/arm/mach-omap2/clockdomains2430_data.c index f09617555e15..b923007e45d0 100644 --- a/arch/arm/mach-omap2/clockdomains2430_data.c +++ b/arch/arm/mach-omap2/clockdomains2430_data.c | |||
| @@ -35,6 +35,7 @@ | |||
| 35 | #include <linux/kernel.h> | 35 | #include <linux/kernel.h> |
| 36 | #include <linux/io.h> | 36 | #include <linux/io.h> |
| 37 | 37 | ||
| 38 | #include "soc.h" | ||
| 38 | #include "clockdomain.h" | 39 | #include "clockdomain.h" |
| 39 | #include "prm2xxx_3xxx.h" | 40 | #include "prm2xxx_3xxx.h" |
| 40 | #include "cm2xxx_3xxx.h" | 41 | #include "cm2xxx_3xxx.h" |
diff --git a/arch/arm/mach-omap2/clockdomains3xxx_data.c b/arch/arm/mach-omap2/clockdomains3xxx_data.c index 933a35cd124a..e6b91e552d3d 100644 --- a/arch/arm/mach-omap2/clockdomains3xxx_data.c +++ b/arch/arm/mach-omap2/clockdomains3xxx_data.c | |||
| @@ -33,6 +33,7 @@ | |||
| 33 | #include <linux/kernel.h> | 33 | #include <linux/kernel.h> |
| 34 | #include <linux/io.h> | 34 | #include <linux/io.h> |
| 35 | 35 | ||
| 36 | #include "soc.h" | ||
| 36 | #include "clockdomain.h" | 37 | #include "clockdomain.h" |
| 37 | #include "prm2xxx_3xxx.h" | 38 | #include "prm2xxx_3xxx.h" |
| 38 | #include "cm2xxx_3xxx.h" | 39 | #include "cm2xxx_3xxx.h" |
diff --git a/arch/arm/mach-omap2/cm.h b/arch/arm/mach-omap2/cm.h index f24e3f7a2bbc..b3cee913dd67 100644 --- a/arch/arm/mach-omap2/cm.h +++ b/arch/arm/mach-omap2/cm.h | |||
| @@ -33,4 +33,16 @@ | |||
| 33 | */ | 33 | */ |
| 34 | #define MAX_MODULE_DISABLE_TIME 5000 | 34 | #define MAX_MODULE_DISABLE_TIME 5000 |
| 35 | 35 | ||
| 36 | # ifndef __ASSEMBLER__ | ||
| 37 | |||
| 38 | /** | ||
| 39 | * struct cm_ll_data - fn ptrs to per-SoC CM function implementations | ||
| 40 | */ | ||
| 41 | struct cm_ll_data {}; | ||
| 42 | |||
| 43 | extern int cm_register(struct cm_ll_data *cld); | ||
| 44 | extern int cm_unregister(struct cm_ll_data *cld); | ||
| 45 | |||
| 46 | # endif | ||
| 47 | |||
| 36 | #endif | 48 | #endif |
diff --git a/arch/arm/mach-omap2/cm2xxx.c b/arch/arm/mach-omap2/cm2xxx.c new file mode 100644 index 000000000000..64165013daf9 --- /dev/null +++ b/arch/arm/mach-omap2/cm2xxx.c | |||
| @@ -0,0 +1,255 @@ | |||
| 1 | /* | ||
| 2 | * OMAP2xxx CM module functions | ||
| 3 | * | ||
| 4 | * Copyright (C) 2009 Nokia Corporation | ||
| 5 | * Copyright (C) 2008-2010, 2012 Texas Instruments, Inc. | ||
| 6 | * Paul Walmsley | ||
| 7 | * Rajendra Nayak <rnayak@ti.com> | ||
| 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 version 2 as | ||
| 11 | * published by the Free Software Foundation. | ||
| 12 | */ | ||
| 13 | |||
| 14 | #include <linux/kernel.h> | ||
| 15 | #include <linux/types.h> | ||
| 16 | #include <linux/delay.h> | ||
| 17 | #include <linux/errno.h> | ||
| 18 | #include <linux/err.h> | ||
| 19 | #include <linux/io.h> | ||
| 20 | |||
| 21 | #include "soc.h" | ||
| 22 | #include "iomap.h" | ||
| 23 | #include "common.h" | ||
| 24 | #include "prm2xxx.h" | ||
| 25 | #include "cm.h" | ||
| 26 | #include "cm2xxx.h" | ||
| 27 | #include "cm-regbits-24xx.h" | ||
| 28 | #include "clockdomain.h" | ||
| 29 | |||
| 30 | /* CM_AUTOIDLE_PLL.AUTO_* bit values for DPLLs */ | ||
| 31 | #define DPLL_AUTOIDLE_DISABLE 0x0 | ||
| 32 | #define OMAP2XXX_DPLL_AUTOIDLE_LOW_POWER_STOP 0x3 | ||
| 33 | |||
| 34 | /* CM_AUTOIDLE_PLL.AUTO_* bit values for APLLs (OMAP2xxx only) */ | ||
| 35 | #define OMAP2XXX_APLL_AUTOIDLE_DISABLE 0x0 | ||
| 36 | #define OMAP2XXX_APLL_AUTOIDLE_LOW_POWER_STOP 0x3 | ||
| 37 | |||
| 38 | static const u8 omap2xxx_cm_idlest_offs[] = { | ||
| 39 | CM_IDLEST1, CM_IDLEST2, OMAP2430_CM_IDLEST3, OMAP24XX_CM_IDLEST4 | ||
| 40 | }; | ||
| 41 | |||
| 42 | /* | ||
| 43 | * | ||
| 44 | */ | ||
| 45 | |||
| 46 | static void _write_clktrctrl(u8 c, s16 module, u32 mask) | ||
| 47 | { | ||
| 48 | u32 v; | ||
| 49 | |||
| 50 | v = omap2_cm_read_mod_reg(module, OMAP2_CM_CLKSTCTRL); | ||
| 51 | v &= ~mask; | ||
| 52 | v |= c << __ffs(mask); | ||
| 53 | omap2_cm_write_mod_reg(v, module, OMAP2_CM_CLKSTCTRL); | ||
| 54 | } | ||
| 55 | |||
| 56 | bool omap2xxx_cm_is_clkdm_in_hwsup(s16 module, u32 mask) | ||
| 57 | { | ||
| 58 | u32 v; | ||
| 59 | |||
| 60 | v = omap2_cm_read_mod_reg(module, OMAP2_CM_CLKSTCTRL); | ||
| 61 | v &= mask; | ||
| 62 | v >>= __ffs(mask); | ||
| 63 | |||
| 64 | return (v == OMAP24XX_CLKSTCTRL_ENABLE_AUTO) ? 1 : 0; | ||
| 65 | } | ||
| 66 | |||
| 67 | void omap2xxx_cm_clkdm_enable_hwsup(s16 module, u32 mask) | ||
| 68 | { | ||
| 69 | _write_clktrctrl(OMAP24XX_CLKSTCTRL_ENABLE_AUTO, module, mask); | ||
| 70 | } | ||
| 71 | |||
| 72 | void omap2xxx_cm_clkdm_disable_hwsup(s16 module, u32 mask) | ||
| 73 | { | ||
| 74 | _write_clktrctrl(OMAP24XX_CLKSTCTRL_DISABLE_AUTO, module, mask); | ||
| 75 | } | ||
| 76 | |||
| 77 | /* | ||
| 78 | * DPLL autoidle control | ||
| 79 | */ | ||
| 80 | |||
| 81 | static void _omap2xxx_set_dpll_autoidle(u8 m) | ||
| 82 | { | ||
| 83 | u32 v; | ||
| 84 | |||
| 85 | v = omap2_cm_read_mod_reg(PLL_MOD, CM_AUTOIDLE); | ||
| 86 | v &= ~OMAP24XX_AUTO_DPLL_MASK; | ||
| 87 | v |= m << OMAP24XX_AUTO_DPLL_SHIFT; | ||
| 88 | omap2_cm_write_mod_reg(v, PLL_MOD, CM_AUTOIDLE); | ||
| 89 | } | ||
| 90 | |||
| 91 | void omap2xxx_cm_set_dpll_disable_autoidle(void) | ||
| 92 | { | ||
| 93 | _omap2xxx_set_dpll_autoidle(OMAP2XXX_DPLL_AUTOIDLE_LOW_POWER_STOP); | ||
| 94 | } | ||
| 95 | |||
| 96 | void omap2xxx_cm_set_dpll_auto_low_power_stop(void) | ||
| 97 | { | ||
| 98 | _omap2xxx_set_dpll_autoidle(DPLL_AUTOIDLE_DISABLE); | ||
| 99 | } | ||
| 100 | |||
| 101 | /* | ||
| 102 | * APLL autoidle control | ||
| 103 | */ | ||
| 104 | |||
| 105 | static void _omap2xxx_set_apll_autoidle(u8 m, u32 mask) | ||
| 106 | { | ||
| 107 | u32 v; | ||
| 108 | |||
| 109 | v = omap2_cm_read_mod_reg(PLL_MOD, CM_AUTOIDLE); | ||
| 110 | v &= ~mask; | ||
| 111 | v |= m << __ffs(mask); | ||
| 112 | omap2_cm_write_mod_reg(v, PLL_MOD, CM_AUTOIDLE); | ||
| 113 | } | ||
| 114 | |||
| 115 | void omap2xxx_cm_set_apll54_disable_autoidle(void) | ||
| 116 | { | ||
| 117 | _omap2xxx_set_apll_autoidle(OMAP2XXX_APLL_AUTOIDLE_LOW_POWER_STOP, | ||
| 118 | OMAP24XX_AUTO_54M_MASK); | ||
| 119 | } | ||
| 120 | |||
| 121 | void omap2xxx_cm_set_apll54_auto_low_power_stop(void) | ||
| 122 | { | ||
| 123 | _omap2xxx_set_apll_autoidle(OMAP2XXX_APLL_AUTOIDLE_DISABLE, | ||
| 124 | OMAP24XX_AUTO_54M_MASK); | ||
| 125 | } | ||
| 126 | |||
| 127 | void omap2xxx_cm_set_apll96_disable_autoidle(void) | ||
| 128 | { | ||
| 129 | _omap2xxx_set_apll_autoidle(OMAP2XXX_APLL_AUTOIDLE_LOW_POWER_STOP, | ||
| 130 | OMAP24XX_AUTO_96M_MASK); | ||
| 131 | } | ||
| 132 | |||
| 133 | void omap2xxx_cm_set_apll96_auto_low_power_stop(void) | ||
| 134 | { | ||
| 135 | _omap2xxx_set_apll_autoidle(OMAP2XXX_APLL_AUTOIDLE_DISABLE, | ||
| 136 | OMAP24XX_AUTO_96M_MASK); | ||
| 137 | } | ||
| 138 | |||
| 139 | /* | ||
| 140 | * | ||
| 141 | */ | ||
| 142 | |||
| 143 | /** | ||
| 144 | * omap2xxx_cm_wait_module_ready - wait for a module to leave idle or standby | ||
| 145 | * @prcm_mod: PRCM module offset | ||
| 146 | * @idlest_id: CM_IDLESTx register ID (i.e., x = 1, 2, 3) | ||
| 147 | * @idlest_shift: shift of the bit in the CM_IDLEST* register to check | ||
| 148 | * | ||
| 149 | * Wait for the PRCM to indicate that the module identified by | ||
| 150 | * (@prcm_mod, @idlest_id, @idlest_shift) is clocked. Return 0 upon | ||
| 151 | * success or -EBUSY if the module doesn't enable in time. | ||
| 152 | */ | ||
| 153 | int omap2xxx_cm_wait_module_ready(s16 prcm_mod, u8 idlest_id, u8 idlest_shift) | ||
| 154 | { | ||
| 155 | int ena = 0, i = 0; | ||
| 156 | u8 cm_idlest_reg; | ||
| 157 | u32 mask; | ||
| 158 | |||
| 159 | if (!idlest_id || (idlest_id > ARRAY_SIZE(omap2xxx_cm_idlest_offs))) | ||
| 160 | return -EINVAL; | ||
| 161 | |||
| 162 | cm_idlest_reg = omap2xxx_cm_idlest_offs[idlest_id - 1]; | ||
| 163 | |||
| 164 | mask = 1 << idlest_shift; | ||
| 165 | ena = mask; | ||
| 166 | |||
| 167 | omap_test_timeout(((omap2_cm_read_mod_reg(prcm_mod, cm_idlest_reg) & | ||
| 168 | mask) == ena), MAX_MODULE_READY_TIME, i); | ||
| 169 | |||
| 170 | return (i < MAX_MODULE_READY_TIME) ? 0 : -EBUSY; | ||
| 171 | } | ||
| 172 | |||
| 173 | /* Clockdomain low-level functions */ | ||
| 174 | |||
| 175 | static void omap2xxx_clkdm_allow_idle(struct clockdomain *clkdm) | ||
| 176 | { | ||
| 177 | if (atomic_read(&clkdm->usecount) > 0) | ||
| 178 | _clkdm_add_autodeps(clkdm); | ||
| 179 | |||
| 180 | omap2xxx_cm_clkdm_enable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 181 | clkdm->clktrctrl_mask); | ||
| 182 | } | ||
| 183 | |||
| 184 | static void omap2xxx_clkdm_deny_idle(struct clockdomain *clkdm) | ||
| 185 | { | ||
| 186 | omap2xxx_cm_clkdm_disable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 187 | clkdm->clktrctrl_mask); | ||
| 188 | |||
| 189 | if (atomic_read(&clkdm->usecount) > 0) | ||
| 190 | _clkdm_del_autodeps(clkdm); | ||
| 191 | } | ||
| 192 | |||
| 193 | static int omap2xxx_clkdm_clk_enable(struct clockdomain *clkdm) | ||
| 194 | { | ||
| 195 | bool hwsup = false; | ||
| 196 | |||
| 197 | if (!clkdm->clktrctrl_mask) | ||
| 198 | return 0; | ||
| 199 | |||
| 200 | hwsup = omap2xxx_cm_is_clkdm_in_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 201 | clkdm->clktrctrl_mask); | ||
| 202 | |||
| 203 | if (hwsup) { | ||
| 204 | /* Disable HW transitions when we are changing deps */ | ||
| 205 | omap2xxx_cm_clkdm_disable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 206 | clkdm->clktrctrl_mask); | ||
| 207 | _clkdm_add_autodeps(clkdm); | ||
| 208 | omap2xxx_cm_clkdm_enable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 209 | clkdm->clktrctrl_mask); | ||
| 210 | } else { | ||
| 211 | if (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP) | ||
| 212 | omap2xxx_clkdm_wakeup(clkdm); | ||
| 213 | } | ||
| 214 | |||
| 215 | return 0; | ||
| 216 | } | ||
| 217 | |||
| 218 | static int omap2xxx_clkdm_clk_disable(struct clockdomain *clkdm) | ||
| 219 | { | ||
| 220 | bool hwsup = false; | ||
| 221 | |||
| 222 | if (!clkdm->clktrctrl_mask) | ||
| 223 | return 0; | ||
| 224 | |||
| 225 | hwsup = omap2xxx_cm_is_clkdm_in_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 226 | clkdm->clktrctrl_mask); | ||
| 227 | |||
| 228 | if (hwsup) { | ||
| 229 | /* Disable HW transitions when we are changing deps */ | ||
| 230 | omap2xxx_cm_clkdm_disable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 231 | clkdm->clktrctrl_mask); | ||
| 232 | _clkdm_del_autodeps(clkdm); | ||
| 233 | omap2xxx_cm_clkdm_enable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 234 | clkdm->clktrctrl_mask); | ||
| 235 | } else { | ||
| 236 | if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP) | ||
| 237 | omap2xxx_clkdm_sleep(clkdm); | ||
| 238 | } | ||
| 239 | |||
| 240 | return 0; | ||
| 241 | } | ||
| 242 | |||
| 243 | struct clkdm_ops omap2_clkdm_operations = { | ||
| 244 | .clkdm_add_wkdep = omap2_clkdm_add_wkdep, | ||
| 245 | .clkdm_del_wkdep = omap2_clkdm_del_wkdep, | ||
| 246 | .clkdm_read_wkdep = omap2_clkdm_read_wkdep, | ||
| 247 | .clkdm_clear_all_wkdeps = omap2_clkdm_clear_all_wkdeps, | ||
| 248 | .clkdm_sleep = omap2xxx_clkdm_sleep, | ||
| 249 | .clkdm_wakeup = omap2xxx_clkdm_wakeup, | ||
| 250 | .clkdm_allow_idle = omap2xxx_clkdm_allow_idle, | ||
| 251 | .clkdm_deny_idle = omap2xxx_clkdm_deny_idle, | ||
| 252 | .clkdm_clk_enable = omap2xxx_clkdm_clk_enable, | ||
| 253 | .clkdm_clk_disable = omap2xxx_clkdm_clk_disable, | ||
| 254 | }; | ||
| 255 | |||
diff --git a/arch/arm/mach-omap2/cm2xxx.h b/arch/arm/mach-omap2/cm2xxx.h new file mode 100644 index 000000000000..bce3c4be6d1f --- /dev/null +++ b/arch/arm/mach-omap2/cm2xxx.h | |||
| @@ -0,0 +1,66 @@ | |||
| 1 | /* | ||
| 2 | * OMAP2xxx Clock Management (CM) register definitions | ||
| 3 | * | ||
| 4 | * Copyright (C) 2007-2009, 2012 Texas Instruments, Inc. | ||
| 5 | * Copyright (C) 2007-2010 Nokia Corporation | ||
| 6 | * Paul Walmsley | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License version 2 as | ||
| 10 | * published by the Free Software Foundation. | ||
| 11 | * | ||
| 12 | * The CM hardware modules on the OMAP2/3 are quite similar to each | ||
| 13 | * other. The CM modules/instances on OMAP4 are quite different, so | ||
| 14 | * they are handled in a separate file. | ||
| 15 | */ | ||
| 16 | #ifndef __ARCH_ASM_MACH_OMAP2_CM2XXX_H | ||
| 17 | #define __ARCH_ASM_MACH_OMAP2_CM2XXX_H | ||
| 18 | |||
| 19 | #include "prcm-common.h" | ||
| 20 | #include "cm2xxx_3xxx.h" | ||
| 21 | |||
| 22 | #define OMAP2420_CM_REGADDR(module, reg) \ | ||
| 23 | OMAP2_L4_IO_ADDRESS(OMAP2420_CM_BASE + (module) + (reg)) | ||
| 24 | #define OMAP2430_CM_REGADDR(module, reg) \ | ||
| 25 | OMAP2_L4_IO_ADDRESS(OMAP2430_CM_BASE + (module) + (reg)) | ||
| 26 | |||
| 27 | /* | ||
| 28 | * Module specific CM register offsets from CM_BASE + domain offset | ||
| 29 | * Use cm_{read,write}_mod_reg() with these registers. | ||
| 30 | * These register offsets generally appear in more than one PRCM submodule. | ||
| 31 | */ | ||
| 32 | |||
| 33 | /* OMAP2-specific register offsets */ | ||
| 34 | |||
| 35 | #define OMAP24XX_CM_FCLKEN2 0x0004 | ||
| 36 | #define OMAP24XX_CM_ICLKEN4 0x001c | ||
| 37 | #define OMAP24XX_CM_AUTOIDLE4 0x003c | ||
| 38 | #define OMAP24XX_CM_IDLEST4 0x002c | ||
| 39 | |||
| 40 | /* CM_IDLEST bit field values to indicate deasserted IdleReq */ | ||
| 41 | |||
| 42 | #define OMAP24XX_CM_IDLEST_VAL 0 | ||
| 43 | |||
| 44 | |||
| 45 | /* Clock management domain register get/set */ | ||
| 46 | |||
| 47 | #ifndef __ASSEMBLER__ | ||
| 48 | |||
| 49 | extern void omap2xxx_cm_clkdm_enable_hwsup(s16 module, u32 mask); | ||
| 50 | extern void omap2xxx_cm_clkdm_disable_hwsup(s16 module, u32 mask); | ||
| 51 | |||
| 52 | extern void omap2xxx_cm_set_dpll_disable_autoidle(void); | ||
| 53 | extern void omap2xxx_cm_set_dpll_auto_low_power_stop(void); | ||
| 54 | |||
| 55 | extern void omap2xxx_cm_set_apll54_disable_autoidle(void); | ||
| 56 | extern void omap2xxx_cm_set_apll54_auto_low_power_stop(void); | ||
| 57 | extern void omap2xxx_cm_set_apll96_disable_autoidle(void); | ||
| 58 | extern void omap2xxx_cm_set_apll96_auto_low_power_stop(void); | ||
| 59 | |||
| 60 | extern bool omap2xxx_cm_is_clkdm_in_hwsup(s16 module, u32 mask); | ||
| 61 | extern int omap2xxx_cm_wait_module_ready(s16 prcm_mod, u8 idlest_id, | ||
| 62 | u8 idlest_shift); | ||
| 63 | |||
| 64 | #endif | ||
| 65 | |||
| 66 | #endif | ||
diff --git a/arch/arm/mach-omap2/cm2xxx_3xxx.h b/arch/arm/mach-omap2/cm2xxx_3xxx.h index 57b2f3c2fbf3..0e26bb1bf7e2 100644 --- a/arch/arm/mach-omap2/cm2xxx_3xxx.h +++ b/arch/arm/mach-omap2/cm2xxx_3xxx.h | |||
| @@ -18,27 +18,6 @@ | |||
| 18 | 18 | ||
| 19 | #include "prcm-common.h" | 19 | #include "prcm-common.h" |
| 20 | 20 | ||
| 21 | #define OMAP2420_CM_REGADDR(module, reg) \ | ||
| 22 | OMAP2_L4_IO_ADDRESS(OMAP2420_CM_BASE + (module) + (reg)) | ||
| 23 | #define OMAP2430_CM_REGADDR(module, reg) \ | ||
| 24 | OMAP2_L4_IO_ADDRESS(OMAP2430_CM_BASE + (module) + (reg)) | ||
| 25 | #define OMAP34XX_CM_REGADDR(module, reg) \ | ||
| 26 | OMAP2_L4_IO_ADDRESS(OMAP3430_CM_BASE + (module) + (reg)) | ||
| 27 | |||
| 28 | |||
| 29 | /* | ||
| 30 | * OMAP3-specific global CM registers | ||
| 31 | * Use cm_{read,write}_reg() with these registers. | ||
| 32 | * These registers appear once per CM module. | ||
| 33 | */ | ||
| 34 | |||
| 35 | #define OMAP3430_CM_REVISION OMAP34XX_CM_REGADDR(OCP_MOD, 0x0000) | ||
| 36 | #define OMAP3430_CM_SYSCONFIG OMAP34XX_CM_REGADDR(OCP_MOD, 0x0010) | ||
| 37 | #define OMAP3430_CM_POLCTRL OMAP34XX_CM_REGADDR(OCP_MOD, 0x009c) | ||
| 38 | |||
| 39 | #define OMAP3_CM_CLKOUT_CTRL_OFFSET 0x0070 | ||
| 40 | #define OMAP3430_CM_CLKOUT_CTRL OMAP_CM_REGADDR(OMAP3430_CCR_MOD, 0x0070) | ||
| 41 | |||
| 42 | /* | 21 | /* |
| 43 | * Module specific CM register offsets from CM_BASE + domain offset | 22 | * Module specific CM register offsets from CM_BASE + domain offset |
| 44 | * Use cm_{read,write}_mod_reg() with these registers. | 23 | * Use cm_{read,write}_mod_reg() with these registers. |
| @@ -57,6 +36,7 @@ | |||
| 57 | #define CM_IDLEST 0x0020 | 36 | #define CM_IDLEST 0x0020 |
| 58 | #define CM_IDLEST1 CM_IDLEST | 37 | #define CM_IDLEST1 CM_IDLEST |
| 59 | #define CM_IDLEST2 0x0024 | 38 | #define CM_IDLEST2 0x0024 |
| 39 | #define OMAP2430_CM_IDLEST3 0x0028 | ||
| 60 | #define CM_AUTOIDLE 0x0030 | 40 | #define CM_AUTOIDLE 0x0030 |
| 61 | #define CM_AUTOIDLE1 CM_AUTOIDLE | 41 | #define CM_AUTOIDLE1 CM_AUTOIDLE |
| 62 | #define CM_AUTOIDLE2 0x0034 | 42 | #define CM_AUTOIDLE2 0x0034 |
| @@ -66,70 +46,55 @@ | |||
| 66 | #define CM_CLKSEL2 0x0044 | 46 | #define CM_CLKSEL2 0x0044 |
| 67 | #define OMAP2_CM_CLKSTCTRL 0x0048 | 47 | #define OMAP2_CM_CLKSTCTRL 0x0048 |
| 68 | 48 | ||
| 69 | /* OMAP2-specific register offsets */ | 49 | #ifndef __ASSEMBLER__ |
| 70 | |||
| 71 | #define OMAP24XX_CM_FCLKEN2 0x0004 | ||
| 72 | #define OMAP24XX_CM_ICLKEN4 0x001c | ||
| 73 | #define OMAP24XX_CM_AUTOIDLE4 0x003c | ||
| 74 | #define OMAP24XX_CM_IDLEST4 0x002c | ||
| 75 | |||
| 76 | #define OMAP2430_CM_IDLEST3 0x0028 | ||
| 77 | |||
| 78 | /* OMAP3-specific register offsets */ | ||
| 79 | |||
| 80 | #define OMAP3430_CM_CLKEN_PLL 0x0004 | ||
| 81 | #define OMAP3430ES2_CM_CLKEN2 0x0004 | ||
| 82 | #define OMAP3430ES2_CM_FCLKEN3 0x0008 | ||
| 83 | #define OMAP3430_CM_IDLEST_PLL CM_IDLEST2 | ||
| 84 | #define OMAP3430_CM_AUTOIDLE_PLL CM_AUTOIDLE2 | ||
| 85 | #define OMAP3430ES2_CM_AUTOIDLE2_PLL CM_AUTOIDLE2 | ||
| 86 | #define OMAP3430_CM_CLKSEL1 CM_CLKSEL | ||
| 87 | #define OMAP3430_CM_CLKSEL1_PLL CM_CLKSEL | ||
| 88 | #define OMAP3430_CM_CLKSEL2_PLL CM_CLKSEL2 | ||
| 89 | #define OMAP3430_CM_SLEEPDEP CM_CLKSEL2 | ||
| 90 | #define OMAP3430_CM_CLKSEL3 OMAP2_CM_CLKSTCTRL | ||
| 91 | #define OMAP3430_CM_CLKSTST 0x004c | ||
| 92 | #define OMAP3430ES2_CM_CLKSEL4 0x004c | ||
| 93 | #define OMAP3430ES2_CM_CLKSEL5 0x0050 | ||
| 94 | #define OMAP3430_CM_CLKSEL2_EMU 0x0050 | ||
| 95 | #define OMAP3430_CM_CLKSEL3_EMU 0x0054 | ||
| 96 | |||
| 97 | 50 | ||
| 98 | /* CM_IDLEST bit field values to indicate deasserted IdleReq */ | 51 | #include <linux/io.h> |
| 99 | 52 | ||
| 100 | #define OMAP24XX_CM_IDLEST_VAL 0 | 53 | static inline u32 omap2_cm_read_mod_reg(s16 module, u16 idx) |
| 101 | #define OMAP34XX_CM_IDLEST_VAL 1 | 54 | { |
| 55 | return __raw_readl(cm_base + module + idx); | ||
| 56 | } | ||
| 102 | 57 | ||
| 58 | static inline void omap2_cm_write_mod_reg(u32 val, s16 module, u16 idx) | ||
| 59 | { | ||
| 60 | __raw_writel(val, cm_base + module + idx); | ||
| 61 | } | ||
| 103 | 62 | ||
| 104 | /* Clock management domain register get/set */ | 63 | /* Read-modify-write a register in a CM module. Caller must lock */ |
| 64 | static inline u32 omap2_cm_rmw_mod_reg_bits(u32 mask, u32 bits, s16 module, | ||
| 65 | s16 idx) | ||
| 66 | { | ||
| 67 | u32 v; | ||
| 105 | 68 | ||
| 106 | #ifndef __ASSEMBLER__ | 69 | v = omap2_cm_read_mod_reg(module, idx); |
| 70 | v &= ~mask; | ||
| 71 | v |= bits; | ||
| 72 | omap2_cm_write_mod_reg(v, module, idx); | ||
| 107 | 73 | ||
| 108 | extern u32 omap2_cm_read_mod_reg(s16 module, u16 idx); | 74 | return v; |
| 109 | extern void omap2_cm_write_mod_reg(u32 val, s16 module, u16 idx); | 75 | } |
| 110 | extern u32 omap2_cm_rmw_mod_reg_bits(u32 mask, u32 bits, s16 module, s16 idx); | ||
| 111 | 76 | ||
| 112 | extern int omap2_cm_wait_module_ready(s16 prcm_mod, u8 idlest_id, | 77 | /* Read a CM register, AND it, and shift the result down to bit 0 */ |
| 113 | u8 idlest_shift); | 78 | static inline u32 omap2_cm_read_mod_bits_shift(s16 domain, s16 idx, u32 mask) |
| 114 | extern u32 omap2_cm_set_mod_reg_bits(u32 bits, s16 module, s16 idx); | 79 | { |
| 115 | extern u32 omap2_cm_clear_mod_reg_bits(u32 bits, s16 module, s16 idx); | 80 | u32 v; |
| 116 | 81 | ||
| 117 | extern bool omap2_cm_is_clkdm_in_hwsup(s16 module, u32 mask); | 82 | v = omap2_cm_read_mod_reg(domain, idx); |
| 118 | extern void omap2xxx_cm_clkdm_enable_hwsup(s16 module, u32 mask); | 83 | v &= mask; |
| 119 | extern void omap2xxx_cm_clkdm_disable_hwsup(s16 module, u32 mask); | 84 | v >>= __ffs(mask); |
| 120 | 85 | ||
| 121 | extern void omap3xxx_cm_clkdm_enable_hwsup(s16 module, u32 mask); | 86 | return v; |
| 122 | extern void omap3xxx_cm_clkdm_disable_hwsup(s16 module, u32 mask); | 87 | } |
| 123 | extern void omap3xxx_cm_clkdm_force_sleep(s16 module, u32 mask); | ||
| 124 | extern void omap3xxx_cm_clkdm_force_wakeup(s16 module, u32 mask); | ||
| 125 | 88 | ||
| 126 | extern void omap2xxx_cm_set_dpll_disable_autoidle(void); | 89 | static inline u32 omap2_cm_set_mod_reg_bits(u32 bits, s16 module, s16 idx) |
| 127 | extern void omap2xxx_cm_set_dpll_auto_low_power_stop(void); | 90 | { |
| 91 | return omap2_cm_rmw_mod_reg_bits(bits, bits, module, idx); | ||
| 92 | } | ||
| 128 | 93 | ||
| 129 | extern void omap2xxx_cm_set_apll54_disable_autoidle(void); | 94 | static inline u32 omap2_cm_clear_mod_reg_bits(u32 bits, s16 module, s16 idx) |
| 130 | extern void omap2xxx_cm_set_apll54_auto_low_power_stop(void); | 95 | { |
| 131 | extern void omap2xxx_cm_set_apll96_disable_autoidle(void); | 96 | return omap2_cm_rmw_mod_reg_bits(bits, 0x0, module, idx); |
| 132 | extern void omap2xxx_cm_set_apll96_auto_low_power_stop(void); | 97 | } |
| 133 | 98 | ||
| 134 | #endif | 99 | #endif |
| 135 | 100 | ||
| @@ -147,10 +112,4 @@ extern void omap2xxx_cm_set_apll96_auto_low_power_stop(void); | |||
| 147 | #define OMAP_ST_GFX_MASK (1 << 0) | 112 | #define OMAP_ST_GFX_MASK (1 << 0) |
| 148 | 113 | ||
| 149 | 114 | ||
| 150 | /* Function prototypes */ | ||
| 151 | # ifndef __ASSEMBLER__ | ||
| 152 | extern void omap3_cm_save_context(void); | ||
| 153 | extern void omap3_cm_restore_context(void); | ||
| 154 | # endif | ||
| 155 | |||
| 156 | #endif | 115 | #endif |
diff --git a/arch/arm/mach-omap2/cm33xx.c b/arch/arm/mach-omap2/cm33xx.c index 13f56eafef03..058ce3c0873e 100644 --- a/arch/arm/mach-omap2/cm33xx.c +++ b/arch/arm/mach-omap2/cm33xx.c | |||
| @@ -22,8 +22,7 @@ | |||
| 22 | #include <linux/err.h> | 22 | #include <linux/err.h> |
| 23 | #include <linux/io.h> | 23 | #include <linux/io.h> |
| 24 | 24 | ||
| 25 | #include <plat/common.h> | 25 | #include "clockdomain.h" |
| 26 | |||
| 27 | #include "cm.h" | 26 | #include "cm.h" |
| 28 | #include "cm33xx.h" | 27 | #include "cm33xx.h" |
| 29 | #include "cm-regbits-34xx.h" | 28 | #include "cm-regbits-34xx.h" |
| @@ -311,3 +310,58 @@ void am33xx_cm_module_disable(u16 inst, s16 cdoffs, u16 clkctrl_offs) | |||
| 311 | v &= ~AM33XX_MODULEMODE_MASK; | 310 | v &= ~AM33XX_MODULEMODE_MASK; |
| 312 | am33xx_cm_write_reg(v, inst, clkctrl_offs); | 311 | am33xx_cm_write_reg(v, inst, clkctrl_offs); |
| 313 | } | 312 | } |
| 313 | |||
| 314 | /* | ||
| 315 | * Clockdomain low-level functions | ||
| 316 | */ | ||
| 317 | |||
| 318 | static int am33xx_clkdm_sleep(struct clockdomain *clkdm) | ||
| 319 | { | ||
| 320 | am33xx_cm_clkdm_force_sleep(clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 321 | return 0; | ||
| 322 | } | ||
| 323 | |||
| 324 | static int am33xx_clkdm_wakeup(struct clockdomain *clkdm) | ||
| 325 | { | ||
| 326 | am33xx_cm_clkdm_force_wakeup(clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 327 | return 0; | ||
| 328 | } | ||
| 329 | |||
| 330 | static void am33xx_clkdm_allow_idle(struct clockdomain *clkdm) | ||
| 331 | { | ||
| 332 | am33xx_cm_clkdm_enable_hwsup(clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 333 | } | ||
| 334 | |||
| 335 | static void am33xx_clkdm_deny_idle(struct clockdomain *clkdm) | ||
| 336 | { | ||
| 337 | am33xx_cm_clkdm_disable_hwsup(clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 338 | } | ||
| 339 | |||
| 340 | static int am33xx_clkdm_clk_enable(struct clockdomain *clkdm) | ||
| 341 | { | ||
| 342 | if (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP) | ||
| 343 | return am33xx_clkdm_wakeup(clkdm); | ||
| 344 | |||
| 345 | return 0; | ||
| 346 | } | ||
| 347 | |||
| 348 | static int am33xx_clkdm_clk_disable(struct clockdomain *clkdm) | ||
| 349 | { | ||
| 350 | bool hwsup = false; | ||
| 351 | |||
| 352 | hwsup = am33xx_cm_is_clkdm_in_hwsup(clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 353 | |||
| 354 | if (!hwsup && (clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) | ||
| 355 | am33xx_clkdm_sleep(clkdm); | ||
| 356 | |||
| 357 | return 0; | ||
| 358 | } | ||
| 359 | |||
| 360 | struct clkdm_ops am33xx_clkdm_operations = { | ||
| 361 | .clkdm_sleep = am33xx_clkdm_sleep, | ||
| 362 | .clkdm_wakeup = am33xx_clkdm_wakeup, | ||
| 363 | .clkdm_allow_idle = am33xx_clkdm_allow_idle, | ||
| 364 | .clkdm_deny_idle = am33xx_clkdm_deny_idle, | ||
| 365 | .clkdm_clk_enable = am33xx_clkdm_clk_enable, | ||
| 366 | .clkdm_clk_disable = am33xx_clkdm_clk_disable, | ||
| 367 | }; | ||
diff --git a/arch/arm/mach-omap2/cm2xxx_3xxx.c b/arch/arm/mach-omap2/cm3xxx.c index 7f07ab02a5b3..8b03ec2f4394 100644 --- a/arch/arm/mach-omap2/cm2xxx_3xxx.c +++ b/arch/arm/mach-omap2/cm3xxx.c | |||
| @@ -1,8 +1,10 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * OMAP2/3 CM module functions | 2 | * OMAP3xxx CM module functions |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2009 Nokia Corporation | 4 | * Copyright (C) 2009 Nokia Corporation |
| 5 | * Copyright (C) 2008-2010, 2012 Texas Instruments, Inc. | ||
| 5 | * Paul Walmsley | 6 | * Paul Walmsley |
| 7 | * Rajendra Nayak <rnayak@ti.com> | ||
| 6 | * | 8 | * |
| 7 | * This program is free software; you can redistribute it and/or modify | 9 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as | 10 | * it under the terms of the GNU General Public License version 2 as |
| @@ -12,8 +14,6 @@ | |||
| 12 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
| 13 | #include <linux/types.h> | 15 | #include <linux/types.h> |
| 14 | #include <linux/delay.h> | 16 | #include <linux/delay.h> |
| 15 | #include <linux/spinlock.h> | ||
| 16 | #include <linux/list.h> | ||
| 17 | #include <linux/errno.h> | 17 | #include <linux/errno.h> |
| 18 | #include <linux/err.h> | 18 | #include <linux/err.h> |
| 19 | #include <linux/io.h> | 19 | #include <linux/io.h> |
| @@ -21,56 +21,16 @@ | |||
| 21 | #include "soc.h" | 21 | #include "soc.h" |
| 22 | #include "iomap.h" | 22 | #include "iomap.h" |
| 23 | #include "common.h" | 23 | #include "common.h" |
| 24 | #include "prm2xxx_3xxx.h" | ||
| 24 | #include "cm.h" | 25 | #include "cm.h" |
| 25 | #include "cm2xxx_3xxx.h" | 26 | #include "cm3xxx.h" |
| 26 | #include "cm-regbits-24xx.h" | ||
| 27 | #include "cm-regbits-34xx.h" | 27 | #include "cm-regbits-34xx.h" |
| 28 | #include "clockdomain.h" | ||
| 28 | 29 | ||
| 29 | /* CM_AUTOIDLE_PLL.AUTO_* bit values for DPLLs */ | 30 | static const u8 omap3xxx_cm_idlest_offs[] = { |
| 30 | #define DPLL_AUTOIDLE_DISABLE 0x0 | 31 | CM_IDLEST1, CM_IDLEST2, OMAP2430_CM_IDLEST3 |
| 31 | #define OMAP2XXX_DPLL_AUTOIDLE_LOW_POWER_STOP 0x3 | ||
| 32 | |||
| 33 | /* CM_AUTOIDLE_PLL.AUTO_* bit values for APLLs (OMAP2xxx only) */ | ||
| 34 | #define OMAP2XXX_APLL_AUTOIDLE_DISABLE 0x0 | ||
| 35 | #define OMAP2XXX_APLL_AUTOIDLE_LOW_POWER_STOP 0x3 | ||
| 36 | |||
| 37 | static const u8 cm_idlest_offs[] = { | ||
| 38 | CM_IDLEST1, CM_IDLEST2, OMAP2430_CM_IDLEST3, OMAP24XX_CM_IDLEST4 | ||
| 39 | }; | 32 | }; |
| 40 | 33 | ||
| 41 | u32 omap2_cm_read_mod_reg(s16 module, u16 idx) | ||
| 42 | { | ||
| 43 | return __raw_readl(cm_base + module + idx); | ||
| 44 | } | ||
| 45 | |||
| 46 | void omap2_cm_write_mod_reg(u32 val, s16 module, u16 idx) | ||
| 47 | { | ||
| 48 | __raw_writel(val, cm_base + module + idx); | ||
| 49 | } | ||
| 50 | |||
| 51 | /* Read-modify-write a register in a CM module. Caller must lock */ | ||
| 52 | u32 omap2_cm_rmw_mod_reg_bits(u32 mask, u32 bits, s16 module, s16 idx) | ||
| 53 | { | ||
| 54 | u32 v; | ||
| 55 | |||
| 56 | v = omap2_cm_read_mod_reg(module, idx); | ||
| 57 | v &= ~mask; | ||
| 58 | v |= bits; | ||
| 59 | omap2_cm_write_mod_reg(v, module, idx); | ||
| 60 | |||
| 61 | return v; | ||
| 62 | } | ||
| 63 | |||
| 64 | u32 omap2_cm_set_mod_reg_bits(u32 bits, s16 module, s16 idx) | ||
| 65 | { | ||
| 66 | return omap2_cm_rmw_mod_reg_bits(bits, bits, module, idx); | ||
| 67 | } | ||
| 68 | |||
| 69 | u32 omap2_cm_clear_mod_reg_bits(u32 bits, s16 module, s16 idx) | ||
| 70 | { | ||
| 71 | return omap2_cm_rmw_mod_reg_bits(bits, 0x0, module, idx); | ||
| 72 | } | ||
| 73 | |||
| 74 | /* | 34 | /* |
| 75 | * | 35 | * |
| 76 | */ | 36 | */ |
| @@ -85,33 +45,15 @@ static void _write_clktrctrl(u8 c, s16 module, u32 mask) | |||
| 85 | omap2_cm_write_mod_reg(v, module, OMAP2_CM_CLKSTCTRL); | 45 | omap2_cm_write_mod_reg(v, module, OMAP2_CM_CLKSTCTRL); |
| 86 | } | 46 | } |
| 87 | 47 | ||
| 88 | bool omap2_cm_is_clkdm_in_hwsup(s16 module, u32 mask) | 48 | bool omap3xxx_cm_is_clkdm_in_hwsup(s16 module, u32 mask) |
| 89 | { | 49 | { |
| 90 | u32 v; | 50 | u32 v; |
| 91 | bool ret = 0; | ||
| 92 | |||
| 93 | BUG_ON(!cpu_is_omap24xx() && !cpu_is_omap34xx()); | ||
| 94 | 51 | ||
| 95 | v = omap2_cm_read_mod_reg(module, OMAP2_CM_CLKSTCTRL); | 52 | v = omap2_cm_read_mod_reg(module, OMAP2_CM_CLKSTCTRL); |
| 96 | v &= mask; | 53 | v &= mask; |
| 97 | v >>= __ffs(mask); | 54 | v >>= __ffs(mask); |
| 98 | 55 | ||
| 99 | if (cpu_is_omap24xx()) | 56 | return (v == OMAP34XX_CLKSTCTRL_ENABLE_AUTO) ? 1 : 0; |
| 100 | ret = (v == OMAP24XX_CLKSTCTRL_ENABLE_AUTO) ? 1 : 0; | ||
| 101 | else | ||
| 102 | ret = (v == OMAP34XX_CLKSTCTRL_ENABLE_AUTO) ? 1 : 0; | ||
| 103 | |||
| 104 | return ret; | ||
| 105 | } | ||
| 106 | |||
| 107 | void omap2xxx_cm_clkdm_enable_hwsup(s16 module, u32 mask) | ||
| 108 | { | ||
| 109 | _write_clktrctrl(OMAP24XX_CLKSTCTRL_ENABLE_AUTO, module, mask); | ||
| 110 | } | ||
| 111 | |||
| 112 | void omap2xxx_cm_clkdm_disable_hwsup(s16 module, u32 mask) | ||
| 113 | { | ||
| 114 | _write_clktrctrl(OMAP24XX_CLKSTCTRL_DISABLE_AUTO, module, mask); | ||
| 115 | } | 57 | } |
| 116 | 58 | ||
| 117 | void omap3xxx_cm_clkdm_enable_hwsup(s16 module, u32 mask) | 59 | void omap3xxx_cm_clkdm_enable_hwsup(s16 module, u32 mask) |
| @@ -135,109 +77,209 @@ void omap3xxx_cm_clkdm_force_wakeup(s16 module, u32 mask) | |||
| 135 | } | 77 | } |
| 136 | 78 | ||
| 137 | /* | 79 | /* |
| 138 | * DPLL autoidle control | 80 | * |
| 139 | */ | 81 | */ |
| 140 | 82 | ||
| 141 | static void _omap2xxx_set_dpll_autoidle(u8 m) | 83 | /** |
| 84 | * omap3xxx_cm_wait_module_ready - wait for a module to leave idle or standby | ||
| 85 | * @prcm_mod: PRCM module offset | ||
| 86 | * @idlest_id: CM_IDLESTx register ID (i.e., x = 1, 2, 3) | ||
| 87 | * @idlest_shift: shift of the bit in the CM_IDLEST* register to check | ||
| 88 | * | ||
| 89 | * Wait for the PRCM to indicate that the module identified by | ||
| 90 | * (@prcm_mod, @idlest_id, @idlest_shift) is clocked. Return 0 upon | ||
| 91 | * success or -EBUSY if the module doesn't enable in time. | ||
| 92 | */ | ||
| 93 | int omap3xxx_cm_wait_module_ready(s16 prcm_mod, u8 idlest_id, u8 idlest_shift) | ||
| 142 | { | 94 | { |
| 143 | u32 v; | 95 | int ena = 0, i = 0; |
| 96 | u8 cm_idlest_reg; | ||
| 97 | u32 mask; | ||
| 98 | |||
| 99 | if (!idlest_id || (idlest_id > ARRAY_SIZE(omap3xxx_cm_idlest_offs))) | ||
| 100 | return -EINVAL; | ||
| 101 | |||
| 102 | cm_idlest_reg = omap3xxx_cm_idlest_offs[idlest_id - 1]; | ||
| 103 | |||
| 104 | mask = 1 << idlest_shift; | ||
| 105 | ena = 0; | ||
| 106 | |||
| 107 | omap_test_timeout(((omap2_cm_read_mod_reg(prcm_mod, cm_idlest_reg) & | ||
| 108 | mask) == ena), MAX_MODULE_READY_TIME, i); | ||
| 144 | 109 | ||
| 145 | v = omap2_cm_read_mod_reg(PLL_MOD, CM_AUTOIDLE); | 110 | return (i < MAX_MODULE_READY_TIME) ? 0 : -EBUSY; |
| 146 | v &= ~OMAP24XX_AUTO_DPLL_MASK; | ||
| 147 | v |= m << OMAP24XX_AUTO_DPLL_SHIFT; | ||
| 148 | omap2_cm_write_mod_reg(v, PLL_MOD, CM_AUTOIDLE); | ||
| 149 | } | 111 | } |
| 150 | 112 | ||
| 151 | void omap2xxx_cm_set_dpll_disable_autoidle(void) | 113 | /* Clockdomain low-level operations */ |
| 114 | |||
| 115 | static int omap3xxx_clkdm_add_sleepdep(struct clockdomain *clkdm1, | ||
| 116 | struct clockdomain *clkdm2) | ||
| 152 | { | 117 | { |
| 153 | _omap2xxx_set_dpll_autoidle(OMAP2XXX_DPLL_AUTOIDLE_LOW_POWER_STOP); | 118 | omap2_cm_set_mod_reg_bits((1 << clkdm2->dep_bit), |
| 119 | clkdm1->pwrdm.ptr->prcm_offs, | ||
| 120 | OMAP3430_CM_SLEEPDEP); | ||
| 121 | return 0; | ||
| 154 | } | 122 | } |
| 155 | 123 | ||
| 156 | void omap2xxx_cm_set_dpll_auto_low_power_stop(void) | 124 | static int omap3xxx_clkdm_del_sleepdep(struct clockdomain *clkdm1, |
| 125 | struct clockdomain *clkdm2) | ||
| 157 | { | 126 | { |
| 158 | _omap2xxx_set_dpll_autoidle(DPLL_AUTOIDLE_DISABLE); | 127 | omap2_cm_clear_mod_reg_bits((1 << clkdm2->dep_bit), |
| 128 | clkdm1->pwrdm.ptr->prcm_offs, | ||
| 129 | OMAP3430_CM_SLEEPDEP); | ||
| 130 | return 0; | ||
| 159 | } | 131 | } |
| 160 | 132 | ||
| 161 | /* | 133 | static int omap3xxx_clkdm_read_sleepdep(struct clockdomain *clkdm1, |
| 162 | * APLL autoidle control | 134 | struct clockdomain *clkdm2) |
| 163 | */ | ||
| 164 | |||
| 165 | static void _omap2xxx_set_apll_autoidle(u8 m, u32 mask) | ||
| 166 | { | 135 | { |
| 167 | u32 v; | 136 | return omap2_cm_read_mod_bits_shift(clkdm1->pwrdm.ptr->prcm_offs, |
| 168 | 137 | OMAP3430_CM_SLEEPDEP, | |
| 169 | v = omap2_cm_read_mod_reg(PLL_MOD, CM_AUTOIDLE); | 138 | (1 << clkdm2->dep_bit)); |
| 170 | v &= ~mask; | ||
| 171 | v |= m << __ffs(mask); | ||
| 172 | omap2_cm_write_mod_reg(v, PLL_MOD, CM_AUTOIDLE); | ||
| 173 | } | 139 | } |
| 174 | 140 | ||
| 175 | void omap2xxx_cm_set_apll54_disable_autoidle(void) | 141 | static int omap3xxx_clkdm_clear_all_sleepdeps(struct clockdomain *clkdm) |
| 176 | { | 142 | { |
| 177 | _omap2xxx_set_apll_autoidle(OMAP2XXX_APLL_AUTOIDLE_LOW_POWER_STOP, | 143 | struct clkdm_dep *cd; |
| 178 | OMAP24XX_AUTO_54M_MASK); | 144 | u32 mask = 0; |
| 145 | |||
| 146 | for (cd = clkdm->sleepdep_srcs; cd && cd->clkdm_name; cd++) { | ||
| 147 | if (!cd->clkdm) | ||
| 148 | continue; /* only happens if data is erroneous */ | ||
| 149 | |||
| 150 | mask |= 1 << cd->clkdm->dep_bit; | ||
| 151 | atomic_set(&cd->sleepdep_usecount, 0); | ||
| 152 | } | ||
| 153 | omap2_cm_clear_mod_reg_bits(mask, clkdm->pwrdm.ptr->prcm_offs, | ||
| 154 | OMAP3430_CM_SLEEPDEP); | ||
| 155 | return 0; | ||
| 179 | } | 156 | } |
| 180 | 157 | ||
| 181 | void omap2xxx_cm_set_apll54_auto_low_power_stop(void) | 158 | static int omap3xxx_clkdm_sleep(struct clockdomain *clkdm) |
| 182 | { | 159 | { |
| 183 | _omap2xxx_set_apll_autoidle(OMAP2XXX_APLL_AUTOIDLE_DISABLE, | 160 | omap3xxx_cm_clkdm_force_sleep(clkdm->pwrdm.ptr->prcm_offs, |
| 184 | OMAP24XX_AUTO_54M_MASK); | 161 | clkdm->clktrctrl_mask); |
| 162 | return 0; | ||
| 185 | } | 163 | } |
| 186 | 164 | ||
| 187 | void omap2xxx_cm_set_apll96_disable_autoidle(void) | 165 | static int omap3xxx_clkdm_wakeup(struct clockdomain *clkdm) |
| 188 | { | 166 | { |
| 189 | _omap2xxx_set_apll_autoidle(OMAP2XXX_APLL_AUTOIDLE_LOW_POWER_STOP, | 167 | omap3xxx_cm_clkdm_force_wakeup(clkdm->pwrdm.ptr->prcm_offs, |
| 190 | OMAP24XX_AUTO_96M_MASK); | 168 | clkdm->clktrctrl_mask); |
| 169 | return 0; | ||
| 191 | } | 170 | } |
| 192 | 171 | ||
| 193 | void omap2xxx_cm_set_apll96_auto_low_power_stop(void) | 172 | static void omap3xxx_clkdm_allow_idle(struct clockdomain *clkdm) |
| 194 | { | 173 | { |
| 195 | _omap2xxx_set_apll_autoidle(OMAP2XXX_APLL_AUTOIDLE_DISABLE, | 174 | if (atomic_read(&clkdm->usecount) > 0) |
| 196 | OMAP24XX_AUTO_96M_MASK); | 175 | _clkdm_add_autodeps(clkdm); |
| 197 | } | ||
| 198 | 176 | ||
| 199 | /* | 177 | omap3xxx_cm_clkdm_enable_hwsup(clkdm->pwrdm.ptr->prcm_offs, |
| 200 | * | 178 | clkdm->clktrctrl_mask); |
| 201 | */ | 179 | } |
| 202 | 180 | ||
| 203 | /** | 181 | static void omap3xxx_clkdm_deny_idle(struct clockdomain *clkdm) |
| 204 | * omap2_cm_wait_idlest_ready - wait for a module to leave idle or standby | ||
| 205 | * @prcm_mod: PRCM module offset | ||
| 206 | * @idlest_id: CM_IDLESTx register ID (i.e., x = 1, 2, 3) | ||
| 207 | * @idlest_shift: shift of the bit in the CM_IDLEST* register to check | ||
| 208 | * | ||
| 209 | * XXX document | ||
| 210 | */ | ||
| 211 | int omap2_cm_wait_module_ready(s16 prcm_mod, u8 idlest_id, u8 idlest_shift) | ||
| 212 | { | 182 | { |
| 213 | int ena = 0, i = 0; | 183 | omap3xxx_cm_clkdm_disable_hwsup(clkdm->pwrdm.ptr->prcm_offs, |
| 214 | u8 cm_idlest_reg; | 184 | clkdm->clktrctrl_mask); |
| 215 | u32 mask; | ||
| 216 | 185 | ||
| 217 | if (!idlest_id || (idlest_id > ARRAY_SIZE(cm_idlest_offs))) | 186 | if (atomic_read(&clkdm->usecount) > 0) |
| 218 | return -EINVAL; | 187 | _clkdm_del_autodeps(clkdm); |
| 188 | } | ||
| 219 | 189 | ||
| 220 | cm_idlest_reg = cm_idlest_offs[idlest_id - 1]; | 190 | static int omap3xxx_clkdm_clk_enable(struct clockdomain *clkdm) |
| 191 | { | ||
| 192 | bool hwsup = false; | ||
| 221 | 193 | ||
| 222 | mask = 1 << idlest_shift; | 194 | if (!clkdm->clktrctrl_mask) |
| 195 | return 0; | ||
| 223 | 196 | ||
| 224 | if (cpu_is_omap24xx()) | 197 | /* |
| 225 | ena = mask; | 198 | * The CLKDM_MISSING_IDLE_REPORTING flag documentation has |
| 226 | else if (cpu_is_omap34xx()) | 199 | * more details on the unpleasant problem this is working |
| 227 | ena = 0; | 200 | * around |
| 228 | else | 201 | */ |
| 229 | BUG(); | 202 | if ((clkdm->flags & CLKDM_MISSING_IDLE_REPORTING) && |
| 203 | (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP)) { | ||
| 204 | omap3xxx_clkdm_wakeup(clkdm); | ||
| 205 | return 0; | ||
| 206 | } | ||
| 207 | |||
| 208 | hwsup = omap3xxx_cm_is_clkdm_in_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 209 | clkdm->clktrctrl_mask); | ||
| 210 | |||
| 211 | if (hwsup) { | ||
| 212 | /* Disable HW transitions when we are changing deps */ | ||
| 213 | omap3xxx_cm_clkdm_disable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 214 | clkdm->clktrctrl_mask); | ||
| 215 | _clkdm_add_autodeps(clkdm); | ||
| 216 | omap3xxx_cm_clkdm_enable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 217 | clkdm->clktrctrl_mask); | ||
| 218 | } else { | ||
| 219 | if (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP) | ||
| 220 | omap3xxx_clkdm_wakeup(clkdm); | ||
| 221 | } | ||
| 222 | |||
| 223 | return 0; | ||
| 224 | } | ||
| 230 | 225 | ||
| 231 | omap_test_timeout(((omap2_cm_read_mod_reg(prcm_mod, cm_idlest_reg) & mask) == ena), | 226 | static int omap3xxx_clkdm_clk_disable(struct clockdomain *clkdm) |
| 232 | MAX_MODULE_READY_TIME, i); | 227 | { |
| 228 | bool hwsup = false; | ||
| 233 | 229 | ||
| 234 | return (i < MAX_MODULE_READY_TIME) ? 0 : -EBUSY; | 230 | if (!clkdm->clktrctrl_mask) |
| 231 | return 0; | ||
| 232 | |||
| 233 | /* | ||
| 234 | * The CLKDM_MISSING_IDLE_REPORTING flag documentation has | ||
| 235 | * more details on the unpleasant problem this is working | ||
| 236 | * around | ||
| 237 | */ | ||
| 238 | if (clkdm->flags & CLKDM_MISSING_IDLE_REPORTING && | ||
| 239 | !(clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) { | ||
| 240 | omap3xxx_cm_clkdm_enable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 241 | clkdm->clktrctrl_mask); | ||
| 242 | return 0; | ||
| 243 | } | ||
| 244 | |||
| 245 | hwsup = omap3xxx_cm_is_clkdm_in_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 246 | clkdm->clktrctrl_mask); | ||
| 247 | |||
| 248 | if (hwsup) { | ||
| 249 | /* Disable HW transitions when we are changing deps */ | ||
| 250 | omap3xxx_cm_clkdm_disable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 251 | clkdm->clktrctrl_mask); | ||
| 252 | _clkdm_del_autodeps(clkdm); | ||
| 253 | omap3xxx_cm_clkdm_enable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
| 254 | clkdm->clktrctrl_mask); | ||
| 255 | } else { | ||
| 256 | if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP) | ||
| 257 | omap3xxx_clkdm_sleep(clkdm); | ||
| 258 | } | ||
| 259 | |||
| 260 | return 0; | ||
| 235 | } | 261 | } |
| 236 | 262 | ||
| 263 | struct clkdm_ops omap3_clkdm_operations = { | ||
| 264 | .clkdm_add_wkdep = omap2_clkdm_add_wkdep, | ||
| 265 | .clkdm_del_wkdep = omap2_clkdm_del_wkdep, | ||
| 266 | .clkdm_read_wkdep = omap2_clkdm_read_wkdep, | ||
| 267 | .clkdm_clear_all_wkdeps = omap2_clkdm_clear_all_wkdeps, | ||
| 268 | .clkdm_add_sleepdep = omap3xxx_clkdm_add_sleepdep, | ||
| 269 | .clkdm_del_sleepdep = omap3xxx_clkdm_del_sleepdep, | ||
| 270 | .clkdm_read_sleepdep = omap3xxx_clkdm_read_sleepdep, | ||
| 271 | .clkdm_clear_all_sleepdeps = omap3xxx_clkdm_clear_all_sleepdeps, | ||
| 272 | .clkdm_sleep = omap3xxx_clkdm_sleep, | ||
| 273 | .clkdm_wakeup = omap3xxx_clkdm_wakeup, | ||
| 274 | .clkdm_allow_idle = omap3xxx_clkdm_allow_idle, | ||
| 275 | .clkdm_deny_idle = omap3xxx_clkdm_deny_idle, | ||
| 276 | .clkdm_clk_enable = omap3xxx_clkdm_clk_enable, | ||
| 277 | .clkdm_clk_disable = omap3xxx_clkdm_clk_disable, | ||
| 278 | }; | ||
| 279 | |||
| 237 | /* | 280 | /* |
| 238 | * Context save/restore code - OMAP3 only | 281 | * Context save/restore code - OMAP3 only |
| 239 | */ | 282 | */ |
| 240 | #ifdef CONFIG_ARCH_OMAP3 | ||
| 241 | struct omap3_cm_regs { | 283 | struct omap3_cm_regs { |
| 242 | u32 iva2_cm_clksel1; | 284 | u32 iva2_cm_clksel1; |
| 243 | u32 iva2_cm_clksel2; | 285 | u32 iva2_cm_clksel2; |
| @@ -555,4 +597,3 @@ void omap3_cm_restore_context(void) | |||
| 555 | omap2_cm_write_mod_reg(cm_context.cm_clkout_ctrl, OMAP3430_CCR_MOD, | 597 | omap2_cm_write_mod_reg(cm_context.cm_clkout_ctrl, OMAP3430_CCR_MOD, |
| 556 | OMAP3_CM_CLKOUT_CTRL_OFFSET); | 598 | OMAP3_CM_CLKOUT_CTRL_OFFSET); |
| 557 | } | 599 | } |
| 558 | #endif | ||
diff --git a/arch/arm/mach-omap2/cm3xxx.h b/arch/arm/mach-omap2/cm3xxx.h new file mode 100644 index 000000000000..4a6ac812edf4 --- /dev/null +++ b/arch/arm/mach-omap2/cm3xxx.h | |||
| @@ -0,0 +1,86 @@ | |||
| 1 | /* | ||
| 2 | * OMAP2/3 Clock Management (CM) register definitions | ||
| 3 | * | ||
| 4 | * Copyright (C) 2007-2009 Texas Instruments, Inc. | ||
| 5 | * Copyright (C) 2007-2010 Nokia Corporation | ||
| 6 | * Paul Walmsley | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License version 2 as | ||
| 10 | * published by the Free Software Foundation. | ||
| 11 | * | ||
| 12 | * The CM hardware modules on the OMAP2/3 are quite similar to each | ||
| 13 | * other. The CM modules/instances on OMAP4 are quite different, so | ||
| 14 | * they are handled in a separate file. | ||
| 15 | */ | ||
| 16 | #ifndef __ARCH_ASM_MACH_OMAP2_CM3XXX_H | ||
| 17 | #define __ARCH_ASM_MACH_OMAP2_CM3XXX_H | ||
| 18 | |||
| 19 | #include "prcm-common.h" | ||
| 20 | #include "cm2xxx_3xxx.h" | ||
| 21 | |||
| 22 | #define OMAP34XX_CM_REGADDR(module, reg) \ | ||
| 23 | OMAP2_L4_IO_ADDRESS(OMAP3430_CM_BASE + (module) + (reg)) | ||
| 24 | |||
| 25 | |||
| 26 | /* | ||
| 27 | * OMAP3-specific global CM registers | ||
| 28 | * Use cm_{read,write}_reg() with these registers. | ||
| 29 | * These registers appear once per CM module. | ||
| 30 | */ | ||
| 31 | |||
| 32 | #define OMAP3430_CM_REVISION OMAP34XX_CM_REGADDR(OCP_MOD, 0x0000) | ||
| 33 | #define OMAP3430_CM_SYSCONFIG OMAP34XX_CM_REGADDR(OCP_MOD, 0x0010) | ||
| 34 | #define OMAP3430_CM_POLCTRL OMAP34XX_CM_REGADDR(OCP_MOD, 0x009c) | ||
| 35 | |||
| 36 | #define OMAP3_CM_CLKOUT_CTRL_OFFSET 0x0070 | ||
| 37 | #define OMAP3430_CM_CLKOUT_CTRL OMAP_CM_REGADDR(OMAP3430_CCR_MOD, 0x0070) | ||
| 38 | |||
| 39 | /* | ||
| 40 | * Module specific CM register offsets from CM_BASE + domain offset | ||
| 41 | * Use cm_{read,write}_mod_reg() with these registers. | ||
| 42 | * These register offsets generally appear in more than one PRCM submodule. | ||
| 43 | */ | ||
| 44 | |||
| 45 | /* OMAP3-specific register offsets */ | ||
| 46 | |||
| 47 | #define OMAP3430_CM_CLKEN_PLL 0x0004 | ||
| 48 | #define OMAP3430ES2_CM_CLKEN2 0x0004 | ||
| 49 | #define OMAP3430ES2_CM_FCLKEN3 0x0008 | ||
| 50 | #define OMAP3430_CM_IDLEST_PLL CM_IDLEST2 | ||
| 51 | #define OMAP3430_CM_AUTOIDLE_PLL CM_AUTOIDLE2 | ||
| 52 | #define OMAP3430ES2_CM_AUTOIDLE2_PLL CM_AUTOIDLE2 | ||
| 53 | #define OMAP3430_CM_CLKSEL1 CM_CLKSEL | ||
| 54 | #define OMAP3430_CM_CLKSEL1_PLL CM_CLKSEL | ||
| 55 | #define OMAP3430_CM_CLKSEL2_PLL CM_CLKSEL2 | ||
| 56 | #define OMAP3430_CM_SLEEPDEP CM_CLKSEL2 | ||
| 57 | #define OMAP3430_CM_CLKSEL3 OMAP2_CM_CLKSTCTRL | ||
| 58 | #define OMAP3430_CM_CLKSTST 0x004c | ||
| 59 | #define OMAP3430ES2_CM_CLKSEL4 0x004c | ||
| 60 | #define OMAP3430ES2_CM_CLKSEL5 0x0050 | ||
| 61 | #define OMAP3430_CM_CLKSEL2_EMU 0x0050 | ||
| 62 | #define OMAP3430_CM_CLKSEL3_EMU 0x0054 | ||
| 63 | |||
| 64 | |||
| 65 | /* CM_IDLEST bit field values to indicate deasserted IdleReq */ | ||
| 66 | |||
| 67 | #define OMAP34XX_CM_IDLEST_VAL 1 | ||
| 68 | |||
| 69 | |||
| 70 | #ifndef __ASSEMBLER__ | ||
| 71 | |||
| 72 | extern void omap3xxx_cm_clkdm_enable_hwsup(s16 module, u32 mask); | ||
| 73 | extern void omap3xxx_cm_clkdm_disable_hwsup(s16 module, u32 mask); | ||
| 74 | extern void omap3xxx_cm_clkdm_force_sleep(s16 module, u32 mask); | ||
| 75 | extern void omap3xxx_cm_clkdm_force_wakeup(s16 module, u32 mask); | ||
| 76 | |||
| 77 | extern bool omap3xxx_cm_is_clkdm_in_hwsup(s16 module, u32 mask); | ||
| 78 | extern int omap3xxx_cm_wait_module_ready(s16 prcm_mod, u8 idlest_id, | ||
| 79 | u8 idlest_shift); | ||
| 80 | |||
| 81 | extern void omap3_cm_save_context(void); | ||
| 82 | extern void omap3_cm_restore_context(void); | ||
| 83 | |||
| 84 | #endif | ||
| 85 | |||
| 86 | #endif | ||
diff --git a/arch/arm/mach-omap2/cm_common.c b/arch/arm/mach-omap2/cm_common.c new file mode 100644 index 000000000000..3246cef151dc --- /dev/null +++ b/arch/arm/mach-omap2/cm_common.c | |||
| @@ -0,0 +1,71 @@ | |||
| 1 | /* | ||
| 2 | * OMAP2+ common Clock Management (CM) IP block functions | ||
| 3 | * | ||
| 4 | * Copyright (C) 2012 Texas Instruments, Inc. | ||
| 5 | * Paul Walmsley <paul@pwsan.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | * | ||
| 11 | * XXX This code should eventually be moved to a CM driver. | ||
| 12 | */ | ||
| 13 | |||
| 14 | #include <linux/kernel.h> | ||
| 15 | #include <linux/init.h> | ||
| 16 | |||
| 17 | #include "cm2xxx.h" | ||
| 18 | #include "cm3xxx.h" | ||
| 19 | #include "cm44xx.h" | ||
| 20 | |||
| 21 | /* | ||
| 22 | * cm_ll_data: function pointers to SoC-specific implementations of | ||
| 23 | * common CM functions | ||
| 24 | */ | ||
| 25 | static struct cm_ll_data null_cm_ll_data; | ||
| 26 | static struct cm_ll_data *cm_ll_data = &null_cm_ll_data; | ||
| 27 | |||
| 28 | /** | ||
| 29 | * cm_register - register per-SoC low-level data with the CM | ||
| 30 | * @cld: low-level per-SoC OMAP CM data & function pointers to register | ||
| 31 | * | ||
| 32 | * Register per-SoC low-level OMAP CM data and function pointers with | ||
| 33 | * the OMAP CM common interface. The caller must keep the data | ||
| 34 | * pointed to by @cld valid until it calls cm_unregister() and | ||
| 35 | * it returns successfully. Returns 0 upon success, -EINVAL if @cld | ||
| 36 | * is NULL, or -EEXIST if cm_register() has already been called | ||
| 37 | * without an intervening cm_unregister(). | ||
| 38 | */ | ||
| 39 | int cm_register(struct cm_ll_data *cld) | ||
| 40 | { | ||
| 41 | if (!cld) | ||
| 42 | return -EINVAL; | ||
| 43 | |||
| 44 | if (cm_ll_data != &null_cm_ll_data) | ||
| 45 | return -EEXIST; | ||
| 46 | |||
| 47 | cm_ll_data = cld; | ||
| 48 | |||
| 49 | return 0; | ||
| 50 | } | ||
| 51 | |||
| 52 | /** | ||
| 53 | * cm_unregister - unregister per-SoC low-level data & function pointers | ||
| 54 | * @cld: low-level per-SoC OMAP CM data & function pointers to unregister | ||
| 55 | * | ||
| 56 | * Unregister per-SoC low-level OMAP CM data and function pointers | ||
| 57 | * that were previously registered with cm_register(). The | ||
| 58 | * caller may not destroy any of the data pointed to by @cld until | ||
| 59 | * this function returns successfully. Returns 0 upon success, or | ||
| 60 | * -EINVAL if @cld is NULL or if @cld does not match the struct | ||
| 61 | * cm_ll_data * previously registered by cm_register(). | ||
| 62 | */ | ||
| 63 | int cm_unregister(struct cm_ll_data *cld) | ||
| 64 | { | ||
| 65 | if (!cld || cm_ll_data != cld) | ||
| 66 | return -EINVAL; | ||
| 67 | |||
| 68 | cm_ll_data = &null_cm_ll_data; | ||
| 69 | |||
| 70 | return 0; | ||
| 71 | } | ||
diff --git a/arch/arm/mach-omap2/cminst44xx.c b/arch/arm/mach-omap2/cminst44xx.c index 1894015ff04b..7f9a464f01e9 100644 --- a/arch/arm/mach-omap2/cminst44xx.c +++ b/arch/arm/mach-omap2/cminst44xx.c | |||
| @@ -2,8 +2,9 @@ | |||
| 2 | * OMAP4 CM instance functions | 2 | * OMAP4 CM instance functions |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2009 Nokia Corporation | 4 | * Copyright (C) 2009 Nokia Corporation |
| 5 | * Copyright (C) 2011 Texas Instruments, Inc. | 5 | * Copyright (C) 2008-2011 Texas Instruments, Inc. |
| 6 | * Paul Walmsley | 6 | * Paul Walmsley |
| 7 | * Rajendra Nayak <rnayak@ti.com> | ||
| 7 | * | 8 | * |
| 8 | * This program is free software; you can redistribute it and/or modify | 9 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as | 10 | * it under the terms of the GNU General Public License version 2 as |
| @@ -22,6 +23,7 @@ | |||
| 22 | 23 | ||
| 23 | #include "iomap.h" | 24 | #include "iomap.h" |
| 24 | #include "common.h" | 25 | #include "common.h" |
| 26 | #include "clockdomain.h" | ||
| 25 | #include "cm.h" | 27 | #include "cm.h" |
| 26 | #include "cm1_44xx.h" | 28 | #include "cm1_44xx.h" |
| 27 | #include "cm2_44xx.h" | 29 | #include "cm2_44xx.h" |
| @@ -343,3 +345,141 @@ void omap4_cminst_module_disable(u8 part, u16 inst, s16 cdoffs, | |||
| 343 | v &= ~OMAP4430_MODULEMODE_MASK; | 345 | v &= ~OMAP4430_MODULEMODE_MASK; |
| 344 | omap4_cminst_write_inst_reg(v, part, inst, clkctrl_offs); | 346 | omap4_cminst_write_inst_reg(v, part, inst, clkctrl_offs); |
| 345 | } | 347 | } |
| 348 | |||
| 349 | /* | ||
| 350 | * Clockdomain low-level functions | ||
| 351 | */ | ||
| 352 | |||
| 353 | static int omap4_clkdm_add_wkup_sleep_dep(struct clockdomain *clkdm1, | ||
| 354 | struct clockdomain *clkdm2) | ||
| 355 | { | ||
| 356 | omap4_cminst_set_inst_reg_bits((1 << clkdm2->dep_bit), | ||
| 357 | clkdm1->prcm_partition, | ||
| 358 | clkdm1->cm_inst, clkdm1->clkdm_offs + | ||
| 359 | OMAP4_CM_STATICDEP); | ||
| 360 | return 0; | ||
| 361 | } | ||
| 362 | |||
| 363 | static int omap4_clkdm_del_wkup_sleep_dep(struct clockdomain *clkdm1, | ||
| 364 | struct clockdomain *clkdm2) | ||
| 365 | { | ||
| 366 | omap4_cminst_clear_inst_reg_bits((1 << clkdm2->dep_bit), | ||
| 367 | clkdm1->prcm_partition, | ||
| 368 | clkdm1->cm_inst, clkdm1->clkdm_offs + | ||
| 369 | OMAP4_CM_STATICDEP); | ||
| 370 | return 0; | ||
| 371 | } | ||
| 372 | |||
| 373 | static int omap4_clkdm_read_wkup_sleep_dep(struct clockdomain *clkdm1, | ||
| 374 | struct clockdomain *clkdm2) | ||
| 375 | { | ||
| 376 | return omap4_cminst_read_inst_reg_bits(clkdm1->prcm_partition, | ||
| 377 | clkdm1->cm_inst, | ||
| 378 | clkdm1->clkdm_offs + | ||
| 379 | OMAP4_CM_STATICDEP, | ||
| 380 | (1 << clkdm2->dep_bit)); | ||
| 381 | } | ||
| 382 | |||
| 383 | static int omap4_clkdm_clear_all_wkup_sleep_deps(struct clockdomain *clkdm) | ||
| 384 | { | ||
| 385 | struct clkdm_dep *cd; | ||
| 386 | u32 mask = 0; | ||
| 387 | |||
| 388 | if (!clkdm->prcm_partition) | ||
| 389 | return 0; | ||
| 390 | |||
| 391 | for (cd = clkdm->wkdep_srcs; cd && cd->clkdm_name; cd++) { | ||
| 392 | if (!cd->clkdm) | ||
| 393 | continue; /* only happens if data is erroneous */ | ||
| 394 | |||
| 395 | mask |= 1 << cd->clkdm->dep_bit; | ||
| 396 | atomic_set(&cd->wkdep_usecount, 0); | ||
| 397 | } | ||
| 398 | |||
| 399 | omap4_cminst_clear_inst_reg_bits(mask, clkdm->prcm_partition, | ||
| 400 | clkdm->cm_inst, clkdm->clkdm_offs + | ||
| 401 | OMAP4_CM_STATICDEP); | ||
| 402 | return 0; | ||
| 403 | } | ||
| 404 | |||
| 405 | static int omap4_clkdm_sleep(struct clockdomain *clkdm) | ||
| 406 | { | ||
| 407 | omap4_cminst_clkdm_enable_hwsup(clkdm->prcm_partition, | ||
| 408 | clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 409 | return 0; | ||
| 410 | } | ||
| 411 | |||
| 412 | static int omap4_clkdm_wakeup(struct clockdomain *clkdm) | ||
| 413 | { | ||
| 414 | omap4_cminst_clkdm_force_wakeup(clkdm->prcm_partition, | ||
| 415 | clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 416 | return 0; | ||
| 417 | } | ||
| 418 | |||
| 419 | static void omap4_clkdm_allow_idle(struct clockdomain *clkdm) | ||
| 420 | { | ||
| 421 | omap4_cminst_clkdm_enable_hwsup(clkdm->prcm_partition, | ||
| 422 | clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 423 | } | ||
| 424 | |||
| 425 | static void omap4_clkdm_deny_idle(struct clockdomain *clkdm) | ||
| 426 | { | ||
| 427 | if (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP) | ||
| 428 | omap4_clkdm_wakeup(clkdm); | ||
| 429 | else | ||
| 430 | omap4_cminst_clkdm_disable_hwsup(clkdm->prcm_partition, | ||
| 431 | clkdm->cm_inst, | ||
| 432 | clkdm->clkdm_offs); | ||
| 433 | } | ||
| 434 | |||
| 435 | static int omap4_clkdm_clk_enable(struct clockdomain *clkdm) | ||
| 436 | { | ||
| 437 | if (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP) | ||
| 438 | return omap4_clkdm_wakeup(clkdm); | ||
| 439 | |||
| 440 | return 0; | ||
| 441 | } | ||
| 442 | |||
| 443 | static int omap4_clkdm_clk_disable(struct clockdomain *clkdm) | ||
| 444 | { | ||
| 445 | bool hwsup = false; | ||
| 446 | |||
| 447 | if (!clkdm->prcm_partition) | ||
| 448 | return 0; | ||
| 449 | |||
| 450 | /* | ||
| 451 | * The CLKDM_MISSING_IDLE_REPORTING flag documentation has | ||
| 452 | * more details on the unpleasant problem this is working | ||
| 453 | * around | ||
| 454 | */ | ||
| 455 | if (clkdm->flags & CLKDM_MISSING_IDLE_REPORTING && | ||
| 456 | !(clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) { | ||
| 457 | omap4_clkdm_allow_idle(clkdm); | ||
| 458 | return 0; | ||
| 459 | } | ||
| 460 | |||
| 461 | hwsup = omap4_cminst_is_clkdm_in_hwsup(clkdm->prcm_partition, | ||
| 462 | clkdm->cm_inst, clkdm->clkdm_offs); | ||
| 463 | |||
| 464 | if (!hwsup && (clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) | ||
| 465 | omap4_clkdm_sleep(clkdm); | ||
| 466 | |||
| 467 | return 0; | ||
| 468 | } | ||
| 469 | |||
| 470 | struct clkdm_ops omap4_clkdm_operations = { | ||
| 471 | .clkdm_add_wkdep = omap4_clkdm_add_wkup_sleep_dep, | ||
| 472 | .clkdm_del_wkdep = omap4_clkdm_del_wkup_sleep_dep, | ||
| 473 | .clkdm_read_wkdep = omap4_clkdm_read_wkup_sleep_dep, | ||
| 474 | .clkdm_clear_all_wkdeps = omap4_clkdm_clear_all_wkup_sleep_deps, | ||
| 475 | .clkdm_add_sleepdep = omap4_clkdm_add_wkup_sleep_dep, | ||
| 476 | .clkdm_del_sleepdep = omap4_clkdm_del_wkup_sleep_dep, | ||
| 477 | .clkdm_read_sleepdep = omap4_clkdm_read_wkup_sleep_dep, | ||
| 478 | .clkdm_clear_all_sleepdeps = omap4_clkdm_clear_all_wkup_sleep_deps, | ||
| 479 | .clkdm_sleep = omap4_clkdm_sleep, | ||
| 480 | .clkdm_wakeup = omap4_clkdm_wakeup, | ||
| 481 | .clkdm_allow_idle = omap4_clkdm_allow_idle, | ||
| 482 | .clkdm_deny_idle = omap4_clkdm_deny_idle, | ||
| 483 | .clkdm_clk_enable = omap4_clkdm_clk_enable, | ||
| 484 | .clkdm_clk_disable = omap4_clkdm_clk_disable, | ||
| 485 | }; | ||
diff --git a/arch/arm/mach-omap2/common-board-devices.c b/arch/arm/mach-omap2/common-board-devices.c index 48daac2581b4..ad856092c06a 100644 --- a/arch/arm/mach-omap2/common-board-devices.c +++ b/arch/arm/mach-omap2/common-board-devices.c | |||
| @@ -25,7 +25,6 @@ | |||
| 25 | #include <linux/spi/ads7846.h> | 25 | #include <linux/spi/ads7846.h> |
| 26 | 26 | ||
| 27 | #include <linux/platform_data/spi-omap2-mcspi.h> | 27 | #include <linux/platform_data/spi-omap2-mcspi.h> |
| 28 | #include <linux/platform_data/mtd-nand-omap2.h> | ||
| 29 | 28 | ||
| 30 | #include "common.h" | 29 | #include "common.h" |
| 31 | #include "common-board-devices.h" | 30 | #include "common-board-devices.h" |
| @@ -96,48 +95,3 @@ void __init omap_ads7846_init(int bus_num, int gpio_pendown, int gpio_debounce, | |||
| 96 | { | 95 | { |
| 97 | } | 96 | } |
| 98 | #endif | 97 | #endif |
| 99 | |||
| 100 | #if defined(CONFIG_MTD_NAND_OMAP2) || defined(CONFIG_MTD_NAND_OMAP2_MODULE) | ||
| 101 | static struct omap_nand_platform_data nand_data; | ||
| 102 | |||
| 103 | void __init omap_nand_flash_init(int options, struct mtd_partition *parts, | ||
| 104 | int nr_parts) | ||
| 105 | { | ||
| 106 | u8 cs = 0; | ||
| 107 | u8 nandcs = GPMC_CS_NUM + 1; | ||
| 108 | |||
| 109 | /* find out the chip-select on which NAND exists */ | ||
| 110 | while (cs < GPMC_CS_NUM) { | ||
| 111 | u32 ret = 0; | ||
| 112 | ret = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1); | ||
| 113 | |||
| 114 | if ((ret & 0xC00) == 0x800) { | ||
| 115 | printk(KERN_INFO "Found NAND on CS%d\n", cs); | ||
| 116 | if (nandcs > GPMC_CS_NUM) | ||
| 117 | nandcs = cs; | ||
| 118 | } | ||
| 119 | cs++; | ||
| 120 | } | ||
| 121 | |||
| 122 | if (nandcs > GPMC_CS_NUM) { | ||
| 123 | pr_info("NAND: Unable to find configuration in GPMC\n"); | ||
| 124 | return; | ||
| 125 | } | ||
| 126 | |||
| 127 | if (nandcs < GPMC_CS_NUM) { | ||
| 128 | nand_data.cs = nandcs; | ||
| 129 | nand_data.parts = parts; | ||
| 130 | nand_data.nr_parts = nr_parts; | ||
| 131 | nand_data.devsize = options; | ||
| 132 | |||
| 133 | printk(KERN_INFO "Registering NAND on CS%d\n", nandcs); | ||
| 134 | if (gpmc_nand_init(&nand_data) < 0) | ||
| 135 | printk(KERN_ERR "Unable to register NAND device\n"); | ||
| 136 | } | ||
| 137 | } | ||
| 138 | #else | ||
| 139 | void __init omap_nand_flash_init(int options, struct mtd_partition *parts, | ||
| 140 | int nr_parts) | ||
| 141 | { | ||
| 142 | } | ||
| 143 | #endif | ||
diff --git a/arch/arm/mach-omap2/common-board-devices.h b/arch/arm/mach-omap2/common-board-devices.h index a0b4a42836ab..72bb41b3fd25 100644 --- a/arch/arm/mach-omap2/common-board-devices.h +++ b/arch/arm/mach-omap2/common-board-devices.h | |||
| @@ -10,6 +10,5 @@ struct ads7846_platform_data; | |||
| 10 | 10 | ||
| 11 | void omap_ads7846_init(int bus_num, int gpio_pendown, int gpio_debounce, | 11 | void omap_ads7846_init(int bus_num, int gpio_pendown, int gpio_debounce, |
| 12 | struct ads7846_platform_data *board_pdata); | 12 | struct ads7846_platform_data *board_pdata); |
| 13 | void omap_nand_flash_init(int opts, struct mtd_partition *parts, int n_parts); | ||
| 14 | 13 | ||
| 15 | #endif /* __OMAP_COMMON_BOARD_DEVICES__ */ | 14 | #endif /* __OMAP_COMMON_BOARD_DEVICES__ */ |
diff --git a/arch/arm/mach-omap2/common.c b/arch/arm/mach-omap2/common.c index 17950c6e130b..34fb5b95859b 100644 --- a/arch/arm/mach-omap2/common.c +++ b/arch/arm/mach-omap2/common.c | |||
| @@ -16,14 +16,17 @@ | |||
| 16 | #include <linux/init.h> | 16 | #include <linux/init.h> |
| 17 | #include <linux/clk.h> | 17 | #include <linux/clk.h> |
| 18 | #include <linux/io.h> | 18 | #include <linux/io.h> |
| 19 | #include <linux/platform_data/dsp-omap.h> | ||
| 19 | 20 | ||
| 20 | #include <plat/clock.h> | 21 | #include <plat/vram.h> |
| 21 | 22 | ||
| 22 | #include "soc.h" | 23 | #include "soc.h" |
| 23 | #include "iomap.h" | 24 | #include "iomap.h" |
| 24 | #include "common.h" | 25 | #include "common.h" |
| 26 | #include "clock.h" | ||
| 25 | #include "sdrc.h" | 27 | #include "sdrc.h" |
| 26 | #include "control.h" | 28 | #include "control.h" |
| 29 | #include "omap-secure.h" | ||
| 27 | 30 | ||
| 28 | /* Global address base setup code */ | 31 | /* Global address base setup code */ |
| 29 | 32 | ||
| @@ -200,3 +203,20 @@ void __init omap5_map_io(void) | |||
| 200 | omap5_map_common_io(); | 203 | omap5_map_common_io(); |
| 201 | } | 204 | } |
| 202 | #endif | 205 | #endif |
| 206 | |||
| 207 | /* | ||
| 208 | * Stub function for OMAP2 so that common files | ||
| 209 | * continue to build when custom builds are used | ||
| 210 | */ | ||
| 211 | int __weak omap_secure_ram_reserve_memblock(void) | ||
| 212 | { | ||
| 213 | return 0; | ||
| 214 | } | ||
| 215 | |||
| 216 | void __init omap_reserve(void) | ||
| 217 | { | ||
| 218 | omap_vram_reserve_sdram_memblock(); | ||
| 219 | omap_dsp_reserve_sdram_memblock(); | ||
| 220 | omap_secure_ram_reserve_memblock(); | ||
| 221 | omap_barrier_reserve_memblock(); | ||
| 222 | } | ||
diff --git a/arch/arm/mach-omap2/common.h b/arch/arm/mach-omap2/common.h index 7045e4d61ac3..426fcfcfd821 100644 --- a/arch/arm/mach-omap2/common.h +++ b/arch/arm/mach-omap2/common.h | |||
| @@ -28,13 +28,16 @@ | |||
| 28 | 28 | ||
| 29 | #include <linux/irq.h> | 29 | #include <linux/irq.h> |
| 30 | #include <linux/delay.h> | 30 | #include <linux/delay.h> |
| 31 | #include <linux/i2c.h> | ||
| 31 | #include <linux/i2c/twl.h> | 32 | #include <linux/i2c/twl.h> |
| 33 | #include <linux/i2c-omap.h> | ||
| 32 | 34 | ||
| 33 | #include <asm/proc-fns.h> | 35 | #include <asm/proc-fns.h> |
| 34 | 36 | ||
| 35 | #include <plat/cpu.h> | 37 | #include "i2c.h" |
| 36 | #include <plat/serial.h> | 38 | #include "serial.h" |
| 37 | #include <plat/common.h> | 39 | |
| 40 | #include "usb.h" | ||
| 38 | 41 | ||
| 39 | #define OMAP_INTC_START NR_IRQS | 42 | #define OMAP_INTC_START NR_IRQS |
| 40 | 43 | ||
| @@ -338,6 +341,10 @@ extern void omap_sdrc_init(struct omap_sdrc_params *sdrc_cs0, | |||
| 338 | struct omap_sdrc_params *sdrc_cs1); | 341 | struct omap_sdrc_params *sdrc_cs1); |
| 339 | struct omap2_hsmmc_info; | 342 | struct omap2_hsmmc_info; |
| 340 | extern int omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers); | 343 | extern int omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers); |
| 344 | extern void omap_reserve(void); | ||
| 345 | |||
| 346 | struct omap_hwmod; | ||
| 347 | extern int omap_dss_reset(struct omap_hwmod *); | ||
| 341 | 348 | ||
| 342 | #endif /* __ASSEMBLER__ */ | 349 | #endif /* __ASSEMBLER__ */ |
| 343 | #endif /* __ARCH_ARM_MACH_OMAP2PLUS_COMMON_H */ | 350 | #endif /* __ARCH_ARM_MACH_OMAP2PLUS_COMMON_H */ |
diff --git a/arch/arm/mach-omap2/control.c b/arch/arm/mach-omap2/control.c index d1ff8399a222..06375ad20917 100644 --- a/arch/arm/mach-omap2/control.c +++ b/arch/arm/mach-omap2/control.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * OMAP2/3 System Control Module register access | 2 | * OMAP2/3 System Control Module register access |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007 Texas Instruments, Inc. | 4 | * Copyright (C) 2007, 2012 Texas Instruments, Inc. |
| 5 | * Copyright (C) 2007 Nokia Corporation | 5 | * Copyright (C) 2007 Nokia Corporation |
| 6 | * | 6 | * |
| 7 | * Written by Paul Walmsley | 7 | * Written by Paul Walmsley |
| @@ -15,15 +15,13 @@ | |||
| 15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
| 16 | #include <linux/io.h> | 16 | #include <linux/io.h> |
| 17 | 17 | ||
| 18 | #include <plat/sdrc.h> | ||
| 19 | |||
| 20 | #include "soc.h" | 18 | #include "soc.h" |
| 21 | #include "iomap.h" | 19 | #include "iomap.h" |
| 22 | #include "common.h" | 20 | #include "common.h" |
| 23 | #include "cm-regbits-34xx.h" | 21 | #include "cm-regbits-34xx.h" |
| 24 | #include "prm-regbits-34xx.h" | 22 | #include "prm-regbits-34xx.h" |
| 25 | #include "prm2xxx_3xxx.h" | 23 | #include "prm3xxx.h" |
| 26 | #include "cm2xxx_3xxx.h" | 24 | #include "cm3xxx.h" |
| 27 | #include "sdrc.h" | 25 | #include "sdrc.h" |
| 28 | #include "pm.h" | 26 | #include "pm.h" |
| 29 | #include "control.h" | 27 | #include "control.h" |
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index cba60e05e32e..2ad491d6910b 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c | |||
| @@ -23,10 +23,11 @@ | |||
| 23 | #include <asm/mach-types.h> | 23 | #include <asm/mach-types.h> |
| 24 | #include <asm/mach/map.h> | 24 | #include <asm/mach/map.h> |
| 25 | 25 | ||
| 26 | #include <plat-omap/dma-omap.h> | ||
| 27 | |||
| 26 | #include "iomap.h" | 28 | #include "iomap.h" |
| 27 | #include <plat/dma.h> | 29 | #include "omap_hwmod.h" |
| 28 | #include <plat/omap_hwmod.h> | 30 | #include "omap_device.h" |
| 29 | #include <plat/omap_device.h> | ||
| 30 | #include "omap4-keypad.h" | 31 | #include "omap4-keypad.h" |
| 31 | 32 | ||
| 32 | #include "soc.h" | 33 | #include "soc.h" |
| @@ -34,6 +35,7 @@ | |||
| 34 | #include "mux.h" | 35 | #include "mux.h" |
| 35 | #include "control.h" | 36 | #include "control.h" |
| 36 | #include "devices.h" | 37 | #include "devices.h" |
| 38 | #include "dma.h" | ||
| 37 | 39 | ||
| 38 | #define L3_MODULES_MAX_LEN 12 | 40 | #define L3_MODULES_MAX_LEN 12 |
| 39 | #define L3_MODULES 3 | 41 | #define L3_MODULES 3 |
diff --git a/arch/arm/mach-omap2/display.c b/arch/arm/mach-omap2/display.c index 1011995f150a..89c57129357a 100644 --- a/arch/arm/mach-omap2/display.c +++ b/arch/arm/mach-omap2/display.c | |||
| @@ -25,11 +25,12 @@ | |||
| 25 | #include <linux/delay.h> | 25 | #include <linux/delay.h> |
| 26 | 26 | ||
| 27 | #include <video/omapdss.h> | 27 | #include <video/omapdss.h> |
| 28 | #include <plat/omap_hwmod.h> | 28 | #include "omap_hwmod.h" |
| 29 | #include <plat/omap_device.h> | 29 | #include "omap_device.h" |
| 30 | #include <plat/omap-pm.h> | 30 | #include "omap-pm.h" |
| 31 | #include "common.h" | 31 | #include "common.h" |
| 32 | 32 | ||
| 33 | #include "soc.h" | ||
| 33 | #include "iomap.h" | 34 | #include "iomap.h" |
| 34 | #include "mux.h" | 35 | #include "mux.h" |
| 35 | #include "control.h" | 36 | #include "control.h" |
| @@ -284,6 +285,35 @@ err: | |||
| 284 | return ERR_PTR(r); | 285 | return ERR_PTR(r); |
| 285 | } | 286 | } |
| 286 | 287 | ||
| 288 | static enum omapdss_version __init omap_display_get_version(void) | ||
| 289 | { | ||
| 290 | if (cpu_is_omap24xx()) | ||
| 291 | return OMAPDSS_VER_OMAP24xx; | ||
| 292 | else if (cpu_is_omap3630()) | ||
| 293 | return OMAPDSS_VER_OMAP3630; | ||
| 294 | else if (cpu_is_omap34xx()) { | ||
| 295 | if (soc_is_am35xx()) { | ||
| 296 | return OMAPDSS_VER_AM35xx; | ||
| 297 | } else { | ||
| 298 | if (omap_rev() < OMAP3430_REV_ES3_0) | ||
| 299 | return OMAPDSS_VER_OMAP34xx_ES1; | ||
| 300 | else | ||
| 301 | return OMAPDSS_VER_OMAP34xx_ES3; | ||
| 302 | } | ||
| 303 | } else if (omap_rev() == OMAP4430_REV_ES1_0) | ||
| 304 | return OMAPDSS_VER_OMAP4430_ES1; | ||
| 305 | else if (omap_rev() == OMAP4430_REV_ES2_0 || | ||
| 306 | omap_rev() == OMAP4430_REV_ES2_1 || | ||
| 307 | omap_rev() == OMAP4430_REV_ES2_2) | ||
| 308 | return OMAPDSS_VER_OMAP4430_ES2; | ||
| 309 | else if (cpu_is_omap44xx()) | ||
| 310 | return OMAPDSS_VER_OMAP4; | ||
| 311 | else if (soc_is_omap54xx()) | ||
| 312 | return OMAPDSS_VER_OMAP5; | ||
| 313 | else | ||
| 314 | return OMAPDSS_VER_UNKNOWN; | ||
| 315 | } | ||
| 316 | |||
| 287 | int __init omap_display_init(struct omap_dss_board_info *board_data) | 317 | int __init omap_display_init(struct omap_dss_board_info *board_data) |
| 288 | { | 318 | { |
| 289 | int r = 0; | 319 | int r = 0; |
| @@ -291,9 +321,18 @@ int __init omap_display_init(struct omap_dss_board_info *board_data) | |||
| 291 | int i, oh_count; | 321 | int i, oh_count; |
| 292 | const struct omap_dss_hwmod_data *curr_dss_hwmod; | 322 | const struct omap_dss_hwmod_data *curr_dss_hwmod; |
| 293 | struct platform_device *dss_pdev; | 323 | struct platform_device *dss_pdev; |
| 324 | enum omapdss_version ver; | ||
| 294 | 325 | ||
| 295 | /* create omapdss device */ | 326 | /* create omapdss device */ |
| 296 | 327 | ||
| 328 | ver = omap_display_get_version(); | ||
| 329 | |||
| 330 | if (ver == OMAPDSS_VER_UNKNOWN) { | ||
| 331 | pr_err("DSS not supported on this SoC\n"); | ||
| 332 | return -ENODEV; | ||
| 333 | } | ||
| 334 | |||
| 335 | board_data->version = ver; | ||
| 297 | board_data->dsi_enable_pads = omap_dsi_enable_pads; | 336 | board_data->dsi_enable_pads = omap_dsi_enable_pads; |
| 298 | board_data->dsi_disable_pads = omap_dsi_disable_pads; | 337 | board_data->dsi_disable_pads = omap_dsi_disable_pads; |
| 299 | board_data->get_context_loss_count = omap_pm_get_dev_context_loss_count; | 338 | board_data->get_context_loss_count = omap_pm_get_dev_context_loss_count; |
diff --git a/arch/arm/mach-omap2/dma.c b/arch/arm/mach-omap2/dma.c index ff75abe60af2..e5aba58da5d2 100644 --- a/arch/arm/mach-omap2/dma.c +++ b/arch/arm/mach-omap2/dma.c | |||
| @@ -28,9 +28,11 @@ | |||
| 28 | #include <linux/init.h> | 28 | #include <linux/init.h> |
| 29 | #include <linux/device.h> | 29 | #include <linux/device.h> |
| 30 | 30 | ||
| 31 | #include <plat/omap_hwmod.h> | 31 | #include <plat-omap/dma-omap.h> |
| 32 | #include <plat/omap_device.h> | 32 | |
| 33 | #include <plat/dma.h> | 33 | #include "soc.h" |
| 34 | #include "omap_hwmod.h" | ||
| 35 | #include "omap_device.h" | ||
| 34 | 36 | ||
| 35 | #define OMAP2_DMA_STRIDE 0x60 | 37 | #define OMAP2_DMA_STRIDE 0x60 |
| 36 | 38 | ||
| @@ -274,6 +276,9 @@ static int __init omap2_system_dma_init_dev(struct omap_hwmod *oh, void *unused) | |||
| 274 | return -ENOMEM; | 276 | return -ENOMEM; |
| 275 | } | 277 | } |
| 276 | 278 | ||
| 279 | if (cpu_is_omap34xx() && (omap_type() != OMAP2_DEVICE_TYPE_GP)) | ||
| 280 | d->dev_caps |= HS_CHANNELS_RESERVED; | ||
| 281 | |||
| 277 | /* Check the capabilities register for descriptor loading feature */ | 282 | /* Check the capabilities register for descriptor loading feature */ |
| 278 | if (dma_read(CAPS_0, 0) & DMA_HAS_DESCRIPTOR_CAPS) | 283 | if (dma_read(CAPS_0, 0) & DMA_HAS_DESCRIPTOR_CAPS) |
| 279 | dma_common_ch_end = CCDN; | 284 | dma_common_ch_end = CCDN; |
diff --git a/arch/arm/mach-omap2/dma.h b/arch/arm/mach-omap2/dma.h new file mode 100644 index 000000000000..eba80dbc5218 --- /dev/null +++ b/arch/arm/mach-omap2/dma.h | |||
| @@ -0,0 +1,131 @@ | |||
| 1 | /* | ||
| 2 | * OMAP2PLUS DMA channel definitions | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation; either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write to the Free Software | ||
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 17 | */ | ||
| 18 | |||
| 19 | #ifndef __OMAP2PLUS_DMA_CHANNEL_H | ||
| 20 | #define __OMAP2PLUS_DMA_CHANNEL_H | ||
| 21 | |||
| 22 | |||
| 23 | /* DMA channels for 24xx */ | ||
| 24 | #define OMAP24XX_DMA_NO_DEVICE 0 | ||
| 25 | #define OMAP24XX_DMA_XTI_DMA 1 /* S_DMA_0 */ | ||
| 26 | #define OMAP24XX_DMA_EXT_DMAREQ0 2 /* S_DMA_1 */ | ||
| 27 | #define OMAP24XX_DMA_EXT_DMAREQ1 3 /* S_DMA_2 */ | ||
| 28 | #define OMAP24XX_DMA_GPMC 4 /* S_DMA_3 */ | ||
| 29 | #define OMAP24XX_DMA_GFX 5 /* S_DMA_4 */ | ||
| 30 | #define OMAP24XX_DMA_DSS 6 /* S_DMA_5 */ | ||
| 31 | #define OMAP242X_DMA_VLYNQ_TX 7 /* S_DMA_6 */ | ||
| 32 | #define OMAP24XX_DMA_EXT_DMAREQ2 7 /* S_DMA_6 */ | ||
| 33 | #define OMAP24XX_DMA_CWT 8 /* S_DMA_7 */ | ||
| 34 | #define OMAP24XX_DMA_AES_TX 9 /* S_DMA_8 */ | ||
| 35 | #define OMAP24XX_DMA_AES_RX 10 /* S_DMA_9 */ | ||
| 36 | #define OMAP24XX_DMA_DES_TX 11 /* S_DMA_10 */ | ||
| 37 | #define OMAP24XX_DMA_DES_RX 12 /* S_DMA_11 */ | ||
| 38 | #define OMAP24XX_DMA_SHA1MD5_RX 13 /* S_DMA_12 */ | ||
| 39 | #define OMAP34XX_DMA_SHA2MD5_RX 13 /* S_DMA_12 */ | ||
| 40 | #define OMAP242X_DMA_EXT_DMAREQ2 14 /* S_DMA_13 */ | ||
| 41 | #define OMAP242X_DMA_EXT_DMAREQ3 15 /* S_DMA_14 */ | ||
| 42 | #define OMAP242X_DMA_EXT_DMAREQ4 16 /* S_DMA_15 */ | ||
| 43 | #define OMAP242X_DMA_EAC_AC_RD 17 /* S_DMA_16 */ | ||
| 44 | #define OMAP242X_DMA_EAC_AC_WR 18 /* S_DMA_17 */ | ||
| 45 | #define OMAP242X_DMA_EAC_MD_UL_RD 19 /* S_DMA_18 */ | ||
| 46 | #define OMAP242X_DMA_EAC_MD_UL_WR 20 /* S_DMA_19 */ | ||
| 47 | #define OMAP242X_DMA_EAC_MD_DL_RD 21 /* S_DMA_20 */ | ||
| 48 | #define OMAP242X_DMA_EAC_MD_DL_WR 22 /* S_DMA_21 */ | ||
| 49 | #define OMAP242X_DMA_EAC_BT_UL_RD 23 /* S_DMA_22 */ | ||
| 50 | #define OMAP242X_DMA_EAC_BT_UL_WR 24 /* S_DMA_23 */ | ||
| 51 | #define OMAP242X_DMA_EAC_BT_DL_RD 25 /* S_DMA_24 */ | ||
| 52 | #define OMAP242X_DMA_EAC_BT_DL_WR 26 /* S_DMA_25 */ | ||
| 53 | #define OMAP243X_DMA_EXT_DMAREQ3 14 /* S_DMA_13 */ | ||
| 54 | #define OMAP24XX_DMA_SPI3_TX0 15 /* S_DMA_14 */ | ||
| 55 | #define OMAP24XX_DMA_SPI3_RX0 16 /* S_DMA_15 */ | ||
| 56 | #define OMAP24XX_DMA_MCBSP3_TX 17 /* S_DMA_16 */ | ||
| 57 | #define OMAP24XX_DMA_MCBSP3_RX 18 /* S_DMA_17 */ | ||
| 58 | #define OMAP24XX_DMA_MCBSP4_TX 19 /* S_DMA_18 */ | ||
| 59 | #define OMAP24XX_DMA_MCBSP4_RX 20 /* S_DMA_19 */ | ||
| 60 | #define OMAP24XX_DMA_MCBSP5_TX 21 /* S_DMA_20 */ | ||
| 61 | #define OMAP24XX_DMA_MCBSP5_RX 22 /* S_DMA_21 */ | ||
| 62 | #define OMAP24XX_DMA_SPI3_TX1 23 /* S_DMA_22 */ | ||
| 63 | #define OMAP24XX_DMA_SPI3_RX1 24 /* S_DMA_23 */ | ||
| 64 | #define OMAP243X_DMA_EXT_DMAREQ4 25 /* S_DMA_24 */ | ||
| 65 | #define OMAP243X_DMA_EXT_DMAREQ5 26 /* S_DMA_25 */ | ||
| 66 | #define OMAP34XX_DMA_I2C3_TX 25 /* S_DMA_24 */ | ||
| 67 | #define OMAP34XX_DMA_I2C3_RX 26 /* S_DMA_25 */ | ||
| 68 | #define OMAP24XX_DMA_I2C1_TX 27 /* S_DMA_26 */ | ||
| 69 | #define OMAP24XX_DMA_I2C1_RX 28 /* S_DMA_27 */ | ||
| 70 | #define OMAP24XX_DMA_I2C2_TX 29 /* S_DMA_28 */ | ||
| 71 | #define OMAP24XX_DMA_I2C2_RX 30 /* S_DMA_29 */ | ||
| 72 | #define OMAP24XX_DMA_MCBSP1_TX 31 /* S_DMA_30 */ | ||
| 73 | #define OMAP24XX_DMA_MCBSP1_RX 32 /* S_DMA_31 */ | ||
| 74 | #define OMAP24XX_DMA_MCBSP2_TX 33 /* S_DMA_32 */ | ||
| 75 | #define OMAP24XX_DMA_MCBSP2_RX 34 /* S_DMA_33 */ | ||
| 76 | #define OMAP24XX_DMA_SPI1_TX0 35 /* S_DMA_34 */ | ||
| 77 | #define OMAP24XX_DMA_SPI1_RX0 36 /* S_DMA_35 */ | ||
| 78 | #define OMAP24XX_DMA_SPI1_TX1 37 /* S_DMA_36 */ | ||
| 79 | #define OMAP24XX_DMA_SPI1_RX1 38 /* S_DMA_37 */ | ||
| 80 | #define OMAP24XX_DMA_SPI1_TX2 39 /* S_DMA_38 */ | ||
| 81 | #define OMAP24XX_DMA_SPI1_RX2 40 /* S_DMA_39 */ | ||
| 82 | #define OMAP24XX_DMA_SPI1_TX3 41 /* S_DMA_40 */ | ||
| 83 | #define OMAP24XX_DMA_SPI1_RX3 42 /* S_DMA_41 */ | ||
| 84 | #define OMAP24XX_DMA_SPI2_TX0 43 /* S_DMA_42 */ | ||
| 85 | #define OMAP24XX_DMA_SPI2_RX0 44 /* S_DMA_43 */ | ||
| 86 | #define OMAP24XX_DMA_SPI2_TX1 45 /* S_DMA_44 */ | ||
| 87 | #define OMAP24XX_DMA_SPI2_RX1 46 /* S_DMA_45 */ | ||
| 88 | #define OMAP24XX_DMA_MMC2_TX 47 /* S_DMA_46 */ | ||
| 89 | #define OMAP24XX_DMA_MMC2_RX 48 /* S_DMA_47 */ | ||
| 90 | #define OMAP24XX_DMA_UART1_TX 49 /* S_DMA_48 */ | ||
| 91 | #define OMAP24XX_DMA_UART1_RX 50 /* S_DMA_49 */ | ||
| 92 | #define OMAP24XX_DMA_UART2_TX 51 /* S_DMA_50 */ | ||
| 93 | #define OMAP24XX_DMA_UART2_RX 52 /* S_DMA_51 */ | ||
| 94 | #define OMAP24XX_DMA_UART3_TX 53 /* S_DMA_52 */ | ||
| 95 | #define OMAP24XX_DMA_UART3_RX 54 /* S_DMA_53 */ | ||
| 96 | #define OMAP24XX_DMA_USB_W2FC_TX0 55 /* S_DMA_54 */ | ||
| 97 | #define OMAP24XX_DMA_USB_W2FC_RX0 56 /* S_DMA_55 */ | ||
| 98 | #define OMAP24XX_DMA_USB_W2FC_TX1 57 /* S_DMA_56 */ | ||
| 99 | #define OMAP24XX_DMA_USB_W2FC_RX1 58 /* S_DMA_57 */ | ||
| 100 | #define OMAP24XX_DMA_USB_W2FC_TX2 59 /* S_DMA_58 */ | ||
| 101 | #define OMAP24XX_DMA_USB_W2FC_RX2 60 /* S_DMA_59 */ | ||
| 102 | #define OMAP24XX_DMA_MMC1_TX 61 /* S_DMA_60 */ | ||
| 103 | #define OMAP24XX_DMA_MMC1_RX 62 /* S_DMA_61 */ | ||
| 104 | #define OMAP24XX_DMA_MS 63 /* S_DMA_62 */ | ||
| 105 | #define OMAP242X_DMA_EXT_DMAREQ5 64 /* S_DMA_63 */ | ||
| 106 | #define OMAP243X_DMA_EXT_DMAREQ6 64 /* S_DMA_63 */ | ||
| 107 | #define OMAP34XX_DMA_EXT_DMAREQ3 64 /* S_DMA_63 */ | ||
| 108 | #define OMAP34XX_DMA_AES2_TX 65 /* S_DMA_64 */ | ||
| 109 | #define OMAP34XX_DMA_AES2_RX 66 /* S_DMA_65 */ | ||
| 110 | #define OMAP34XX_DMA_DES2_TX 67 /* S_DMA_66 */ | ||
| 111 | #define OMAP34XX_DMA_DES2_RX 68 /* S_DMA_67 */ | ||
| 112 | #define OMAP34XX_DMA_SHA1MD5_RX 69 /* S_DMA_68 */ | ||
| 113 | #define OMAP34XX_DMA_SPI4_TX0 70 /* S_DMA_69 */ | ||
| 114 | #define OMAP34XX_DMA_SPI4_RX0 71 /* S_DMA_70 */ | ||
| 115 | #define OMAP34XX_DSS_DMA0 72 /* S_DMA_71 */ | ||
| 116 | #define OMAP34XX_DSS_DMA1 73 /* S_DMA_72 */ | ||
| 117 | #define OMAP34XX_DSS_DMA2 74 /* S_DMA_73 */ | ||
| 118 | #define OMAP34XX_DSS_DMA3 75 /* S_DMA_74 */ | ||
| 119 | #define OMAP34XX_DMA_MMC3_TX 77 /* S_DMA_76 */ | ||
| 120 | #define OMAP34XX_DMA_MMC3_RX 78 /* S_DMA_77 */ | ||
| 121 | #define OMAP34XX_DMA_USIM_TX 79 /* S_DMA_78 */ | ||
| 122 | #define OMAP34XX_DMA_USIM_RX 80 /* S_DMA_79 */ | ||
| 123 | |||
| 124 | #define OMAP36XX_DMA_UART4_TX 81 /* S_DMA_80 */ | ||
| 125 | #define OMAP36XX_DMA_UART4_RX 82 /* S_DMA_81 */ | ||
| 126 | |||
| 127 | /* Only for AM35xx */ | ||
| 128 | #define AM35XX_DMA_UART4_TX 54 | ||
| 129 | #define AM35XX_DMA_UART4_RX 55 | ||
| 130 | |||
| 131 | #endif /* __OMAP2PLUS_DMA_CHANNEL_H */ | ||
diff --git a/arch/arm/mach-omap2/dpll3xxx.c b/arch/arm/mach-omap2/dpll3xxx.c index 814e1808e158..eacf51f2bc27 100644 --- a/arch/arm/mach-omap2/dpll3xxx.c +++ b/arch/arm/mach-omap2/dpll3xxx.c | |||
| @@ -28,8 +28,6 @@ | |||
| 28 | #include <linux/bitops.h> | 28 | #include <linux/bitops.h> |
| 29 | #include <linux/clkdev.h> | 29 | #include <linux/clkdev.h> |
| 30 | 30 | ||
| 31 | #include <plat/clock.h> | ||
| 32 | |||
| 33 | #include "soc.h" | 31 | #include "soc.h" |
| 34 | #include "clock.h" | 32 | #include "clock.h" |
| 35 | #include "cm2xxx_3xxx.h" | 33 | #include "cm2xxx_3xxx.h" |
diff --git a/arch/arm/mach-omap2/dpll44xx.c b/arch/arm/mach-omap2/dpll44xx.c index 09d0ccccb861..5854da168a9c 100644 --- a/arch/arm/mach-omap2/dpll44xx.c +++ b/arch/arm/mach-omap2/dpll44xx.c | |||
| @@ -15,8 +15,6 @@ | |||
| 15 | #include <linux/io.h> | 15 | #include <linux/io.h> |
| 16 | #include <linux/bitops.h> | 16 | #include <linux/bitops.h> |
| 17 | 17 | ||
| 18 | #include <plat/clock.h> | ||
| 19 | |||
| 20 | #include "soc.h" | 18 | #include "soc.h" |
| 21 | #include "clock.h" | 19 | #include "clock.h" |
| 22 | #include "clock44xx.h" | 20 | #include "clock44xx.h" |
diff --git a/arch/arm/mach-omap2/drm.c b/arch/arm/mach-omap2/drm.c index 72e0f01b715c..6282cc826613 100644 --- a/arch/arm/mach-omap2/drm.c +++ b/arch/arm/mach-omap2/drm.c | |||
| @@ -24,8 +24,8 @@ | |||
| 24 | #include <linux/platform_device.h> | 24 | #include <linux/platform_device.h> |
| 25 | #include <linux/dma-mapping.h> | 25 | #include <linux/dma-mapping.h> |
| 26 | 26 | ||
| 27 | #include <plat/omap_device.h> | 27 | #include "omap_device.h" |
| 28 | #include <plat/omap_hwmod.h> | 28 | #include "omap_hwmod.h" |
| 29 | 29 | ||
| 30 | #if defined(CONFIG_DRM_OMAP) || (CONFIG_DRM_OMAP_MODULE) | 30 | #if defined(CONFIG_DRM_OMAP) || (CONFIG_DRM_OMAP_MODULE) |
| 31 | 31 | ||
diff --git a/arch/arm/mach-omap2/dsp.c b/arch/arm/mach-omap2/dsp.c index 98388109f22a..b155500e84a8 100644 --- a/arch/arm/mach-omap2/dsp.c +++ b/arch/arm/mach-omap2/dsp.c | |||
| @@ -27,7 +27,7 @@ | |||
| 27 | #include "cm2xxx_3xxx.h" | 27 | #include "cm2xxx_3xxx.h" |
| 28 | #include "prm2xxx_3xxx.h" | 28 | #include "prm2xxx_3xxx.h" |
| 29 | #ifdef CONFIG_BRIDGE_DVFS | 29 | #ifdef CONFIG_BRIDGE_DVFS |
| 30 | #include <plat/omap-pm.h> | 30 | #include "omap-pm.h" |
| 31 | #endif | 31 | #endif |
| 32 | 32 | ||
| 33 | #include <linux/platform_data/dsp-omap.h> | 33 | #include <linux/platform_data/dsp-omap.h> |
diff --git a/arch/arm/mach-omap2/gpio.c b/arch/arm/mach-omap2/gpio.c index d1058f16fb40..399acabc3d0b 100644 --- a/arch/arm/mach-omap2/gpio.c +++ b/arch/arm/mach-omap2/gpio.c | |||
| @@ -23,9 +23,9 @@ | |||
| 23 | #include <linux/of.h> | 23 | #include <linux/of.h> |
| 24 | #include <linux/platform_data/gpio-omap.h> | 24 | #include <linux/platform_data/gpio-omap.h> |
| 25 | 25 | ||
| 26 | #include <plat/omap_hwmod.h> | 26 | #include "omap_hwmod.h" |
| 27 | #include <plat/omap_device.h> | 27 | #include "omap_device.h" |
| 28 | #include <plat/omap-pm.h> | 28 | #include "omap-pm.h" |
| 29 | 29 | ||
| 30 | #include "powerdomain.h" | 30 | #include "powerdomain.h" |
| 31 | 31 | ||
diff --git a/arch/arm/mach-omap2/gpmc-nand.c b/arch/arm/mach-omap2/gpmc-nand.c index 4acf497faeb3..8607735b3ab3 100644 --- a/arch/arm/mach-omap2/gpmc-nand.c +++ b/arch/arm/mach-omap2/gpmc-nand.c | |||
| @@ -17,9 +17,12 @@ | |||
| 17 | 17 | ||
| 18 | #include <asm/mach/flash.h> | 18 | #include <asm/mach/flash.h> |
| 19 | 19 | ||
| 20 | #include <plat/gpmc.h> | 20 | #include "gpmc.h" |
| 21 | |||
| 22 | #include "soc.h" | 21 | #include "soc.h" |
| 22 | #include "gpmc-nand.h" | ||
| 23 | |||
| 24 | /* minimum size for IO mapping */ | ||
| 25 | #define NAND_IO_SIZE 4 | ||
| 23 | 26 | ||
| 24 | static struct resource gpmc_nand_resource[] = { | 27 | static struct resource gpmc_nand_resource[] = { |
| 25 | { | 28 | { |
| @@ -40,41 +43,36 @@ static struct platform_device gpmc_nand_device = { | |||
| 40 | .resource = gpmc_nand_resource, | 43 | .resource = gpmc_nand_resource, |
| 41 | }; | 44 | }; |
| 42 | 45 | ||
| 43 | static int omap2_nand_gpmc_retime(struct omap_nand_platform_data *gpmc_nand_data) | 46 | static int omap2_nand_gpmc_retime( |
| 47 | struct omap_nand_platform_data *gpmc_nand_data, | ||
| 48 | struct gpmc_timings *gpmc_t) | ||
| 44 | { | 49 | { |
| 45 | struct gpmc_timings t; | 50 | struct gpmc_timings t; |
| 46 | int err; | 51 | int err; |
| 47 | 52 | ||
| 48 | if (!gpmc_nand_data->gpmc_t) | ||
| 49 | return 0; | ||
| 50 | |||
| 51 | memset(&t, 0, sizeof(t)); | 53 | memset(&t, 0, sizeof(t)); |
| 52 | t.sync_clk = gpmc_nand_data->gpmc_t->sync_clk; | 54 | t.sync_clk = gpmc_t->sync_clk; |
| 53 | t.cs_on = gpmc_round_ns_to_ticks(gpmc_nand_data->gpmc_t->cs_on); | 55 | t.cs_on = gpmc_round_ns_to_ticks(gpmc_t->cs_on); |
| 54 | t.adv_on = gpmc_round_ns_to_ticks(gpmc_nand_data->gpmc_t->adv_on); | 56 | t.adv_on = gpmc_round_ns_to_ticks(gpmc_t->adv_on); |
| 55 | 57 | ||
| 56 | /* Read */ | 58 | /* Read */ |
| 57 | t.adv_rd_off = gpmc_round_ns_to_ticks( | 59 | t.adv_rd_off = gpmc_round_ns_to_ticks(gpmc_t->adv_rd_off); |
| 58 | gpmc_nand_data->gpmc_t->adv_rd_off); | ||
| 59 | t.oe_on = t.adv_on; | 60 | t.oe_on = t.adv_on; |
| 60 | t.access = gpmc_round_ns_to_ticks(gpmc_nand_data->gpmc_t->access); | 61 | t.access = gpmc_round_ns_to_ticks(gpmc_t->access); |
| 61 | t.oe_off = gpmc_round_ns_to_ticks(gpmc_nand_data->gpmc_t->oe_off); | 62 | t.oe_off = gpmc_round_ns_to_ticks(gpmc_t->oe_off); |
| 62 | t.cs_rd_off = gpmc_round_ns_to_ticks(gpmc_nand_data->gpmc_t->cs_rd_off); | 63 | t.cs_rd_off = gpmc_round_ns_to_ticks(gpmc_t->cs_rd_off); |
| 63 | t.rd_cycle = gpmc_round_ns_to_ticks(gpmc_nand_data->gpmc_t->rd_cycle); | 64 | t.rd_cycle = gpmc_round_ns_to_ticks(gpmc_t->rd_cycle); |
| 64 | 65 | ||
| 65 | /* Write */ | 66 | /* Write */ |
| 66 | t.adv_wr_off = gpmc_round_ns_to_ticks( | 67 | t.adv_wr_off = gpmc_round_ns_to_ticks(gpmc_t->adv_wr_off); |
| 67 | gpmc_nand_data->gpmc_t->adv_wr_off); | ||
| 68 | t.we_on = t.oe_on; | 68 | t.we_on = t.oe_on; |
| 69 | if (cpu_is_omap34xx()) { | 69 | if (cpu_is_omap34xx()) { |
| 70 | t.wr_data_mux_bus = gpmc_round_ns_to_ticks( | 70 | t.wr_data_mux_bus = gpmc_round_ns_to_ticks(gpmc_t->wr_data_mux_bus); |
| 71 | gpmc_nand_data->gpmc_t->wr_data_mux_bus); | 71 | t.wr_access = gpmc_round_ns_to_ticks(gpmc_t->wr_access); |
| 72 | t.wr_access = gpmc_round_ns_to_ticks( | ||
| 73 | gpmc_nand_data->gpmc_t->wr_access); | ||
| 74 | } | 72 | } |
| 75 | t.we_off = gpmc_round_ns_to_ticks(gpmc_nand_data->gpmc_t->we_off); | 73 | t.we_off = gpmc_round_ns_to_ticks(gpmc_t->we_off); |
| 76 | t.cs_wr_off = gpmc_round_ns_to_ticks(gpmc_nand_data->gpmc_t->cs_wr_off); | 74 | t.cs_wr_off = gpmc_round_ns_to_ticks(gpmc_t->cs_wr_off); |
| 77 | t.wr_cycle = gpmc_round_ns_to_ticks(gpmc_nand_data->gpmc_t->wr_cycle); | 75 | t.wr_cycle = gpmc_round_ns_to_ticks(gpmc_t->wr_cycle); |
| 78 | 76 | ||
| 79 | /* Configure GPMC */ | 77 | /* Configure GPMC */ |
| 80 | if (gpmc_nand_data->devsize == NAND_BUSWIDTH_16) | 78 | if (gpmc_nand_data->devsize == NAND_BUSWIDTH_16) |
| @@ -91,7 +89,29 @@ static int omap2_nand_gpmc_retime(struct omap_nand_platform_data *gpmc_nand_data | |||
| 91 | return 0; | 89 | return 0; |
| 92 | } | 90 | } |
| 93 | 91 | ||
| 94 | int __init gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data) | 92 | static bool __init gpmc_hwecc_bch_capable(enum omap_ecc ecc_opt) |
| 93 | { | ||
| 94 | /* support only OMAP3 class */ | ||
| 95 | if (!cpu_is_omap34xx()) { | ||
| 96 | pr_err("BCH ecc is not supported on this CPU\n"); | ||
| 97 | return 0; | ||
| 98 | } | ||
| 99 | |||
| 100 | /* | ||
| 101 | * For now, assume 4-bit mode is only supported on OMAP3630 ES1.x, x>=1. | ||
| 102 | * Other chips may be added if confirmed to work. | ||
| 103 | */ | ||
| 104 | if ((ecc_opt == OMAP_ECC_BCH4_CODE_HW) && | ||
| 105 | (!cpu_is_omap3630() || (GET_OMAP_REVISION() == 0))) { | ||
| 106 | pr_err("BCH 4-bit mode is not supported on this CPU\n"); | ||
| 107 | return 0; | ||
| 108 | } | ||
| 109 | |||
| 110 | return 1; | ||
| 111 | } | ||
| 112 | |||
| 113 | int __init gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data, | ||
| 114 | struct gpmc_timings *gpmc_t) | ||
| 95 | { | 115 | { |
| 96 | int err = 0; | 116 | int err = 0; |
| 97 | struct device *dev = &gpmc_nand_device.dev; | 117 | struct device *dev = &gpmc_nand_device.dev; |
| @@ -112,11 +132,13 @@ int __init gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data) | |||
| 112 | gpmc_get_client_irq(GPMC_IRQ_FIFOEVENTENABLE); | 132 | gpmc_get_client_irq(GPMC_IRQ_FIFOEVENTENABLE); |
| 113 | gpmc_nand_resource[2].start = | 133 | gpmc_nand_resource[2].start = |
| 114 | gpmc_get_client_irq(GPMC_IRQ_COUNT_EVENT); | 134 | gpmc_get_client_irq(GPMC_IRQ_COUNT_EVENT); |
| 115 | /* Set timings in GPMC */ | 135 | |
| 116 | err = omap2_nand_gpmc_retime(gpmc_nand_data); | 136 | if (gpmc_t) { |
| 117 | if (err < 0) { | 137 | err = omap2_nand_gpmc_retime(gpmc_nand_data, gpmc_t); |
| 118 | dev_err(dev, "Unable to set gpmc timings: %d\n", err); | 138 | if (err < 0) { |
| 119 | return err; | 139 | dev_err(dev, "Unable to set gpmc timings: %d\n", err); |
| 140 | return err; | ||
| 141 | } | ||
| 120 | } | 142 | } |
| 121 | 143 | ||
| 122 | /* Enable RD PIN Monitoring Reg */ | 144 | /* Enable RD PIN Monitoring Reg */ |
| @@ -126,6 +148,9 @@ int __init gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data) | |||
| 126 | 148 | ||
| 127 | gpmc_update_nand_reg(&gpmc_nand_data->reg, gpmc_nand_data->cs); | 149 | gpmc_update_nand_reg(&gpmc_nand_data->reg, gpmc_nand_data->cs); |
| 128 | 150 | ||
| 151 | if (!gpmc_hwecc_bch_capable(gpmc_nand_data->ecc_opt)) | ||
| 152 | return -EINVAL; | ||
| 153 | |||
| 129 | err = platform_device_register(&gpmc_nand_device); | 154 | err = platform_device_register(&gpmc_nand_device); |
| 130 | if (err < 0) { | 155 | if (err < 0) { |
| 131 | dev_err(dev, "Unable to register NAND device\n"); | 156 | dev_err(dev, "Unable to register NAND device\n"); |
diff --git a/arch/arm/mach-omap2/gpmc-nand.h b/arch/arm/mach-omap2/gpmc-nand.h new file mode 100644 index 000000000000..d59e1281e851 --- /dev/null +++ b/arch/arm/mach-omap2/gpmc-nand.h | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/mach-omap2/gpmc-nand.h | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify it | ||
| 5 | * under the terms of the GNU General Public License as published by the | ||
| 6 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 7 | * option) any later version. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #ifndef __OMAP2_GPMC_NAND_H | ||
| 11 | #define __OMAP2_GPMC_NAND_H | ||
| 12 | |||
| 13 | #include "gpmc.h" | ||
| 14 | #include <linux/platform_data/mtd-nand-omap2.h> | ||
| 15 | |||
| 16 | #if IS_ENABLED(CONFIG_MTD_NAND_OMAP2) | ||
| 17 | extern int gpmc_nand_init(struct omap_nand_platform_data *d, | ||
| 18 | struct gpmc_timings *gpmc_t); | ||
| 19 | #else | ||
| 20 | static inline int gpmc_nand_init(struct omap_nand_platform_data *d, | ||
| 21 | struct gpmc_timings *gpmc_t) | ||
| 22 | { | ||
| 23 | return 0; | ||
| 24 | } | ||
| 25 | #endif | ||
| 26 | |||
| 27 | #endif | ||
diff --git a/arch/arm/mach-omap2/gpmc-onenand.c b/arch/arm/mach-omap2/gpmc-onenand.c index 916716e1da3b..d102183ed9a5 100644 --- a/arch/arm/mach-omap2/gpmc-onenand.c +++ b/arch/arm/mach-omap2/gpmc-onenand.c | |||
| @@ -16,15 +16,25 @@ | |||
| 16 | #include <linux/mtd/onenand_regs.h> | 16 | #include <linux/mtd/onenand_regs.h> |
| 17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
| 18 | #include <linux/platform_data/mtd-onenand-omap2.h> | 18 | #include <linux/platform_data/mtd-onenand-omap2.h> |
| 19 | #include <linux/err.h> | ||
| 19 | 20 | ||
| 20 | #include <asm/mach/flash.h> | 21 | #include <asm/mach/flash.h> |
| 21 | 22 | ||
| 22 | #include <plat/gpmc.h> | 23 | #include "gpmc.h" |
| 23 | |||
| 24 | #include "soc.h" | 24 | #include "soc.h" |
| 25 | #include "gpmc-onenand.h" | ||
| 25 | 26 | ||
| 26 | #define ONENAND_IO_SIZE SZ_128K | 27 | #define ONENAND_IO_SIZE SZ_128K |
| 27 | 28 | ||
| 29 | #define ONENAND_FLAG_SYNCREAD (1 << 0) | ||
| 30 | #define ONENAND_FLAG_SYNCWRITE (1 << 1) | ||
| 31 | #define ONENAND_FLAG_HF (1 << 2) | ||
| 32 | #define ONENAND_FLAG_VHF (1 << 3) | ||
| 33 | |||
| 34 | static unsigned onenand_flags; | ||
| 35 | static unsigned latency; | ||
| 36 | static int fclk_offset; | ||
| 37 | |||
| 28 | static struct omap_onenand_platform_data *gpmc_onenand_data; | 38 | static struct omap_onenand_platform_data *gpmc_onenand_data; |
| 29 | 39 | ||
| 30 | static struct resource gpmc_onenand_resource = { | 40 | static struct resource gpmc_onenand_resource = { |
| @@ -38,11 +48,9 @@ static struct platform_device gpmc_onenand_device = { | |||
| 38 | .resource = &gpmc_onenand_resource, | 48 | .resource = &gpmc_onenand_resource, |
| 39 | }; | 49 | }; |
| 40 | 50 | ||
| 41 | static int omap2_onenand_set_async_mode(int cs, void __iomem *onenand_base) | 51 | static struct gpmc_timings omap2_onenand_calc_async_timings(void) |
| 42 | { | 52 | { |
| 43 | struct gpmc_timings t; | 53 | struct gpmc_timings t; |
| 44 | u32 reg; | ||
| 45 | int err; | ||
| 46 | 54 | ||
| 47 | const int t_cer = 15; | 55 | const int t_cer = 15; |
| 48 | const int t_avdp = 12; | 56 | const int t_avdp = 12; |
| @@ -55,11 +63,6 @@ static int omap2_onenand_set_async_mode(int cs, void __iomem *onenand_base) | |||
| 55 | const int t_wpl = 40; | 63 | const int t_wpl = 40; |
| 56 | const int t_wph = 30; | 64 | const int t_wph = 30; |
| 57 | 65 | ||
| 58 | /* Ensure sync read and sync write are disabled */ | ||
| 59 | reg = readw(onenand_base + ONENAND_REG_SYS_CFG1); | ||
| 60 | reg &= ~ONENAND_SYS_CFG1_SYNC_READ & ~ONENAND_SYS_CFG1_SYNC_WRITE; | ||
| 61 | writew(reg, onenand_base + ONENAND_REG_SYS_CFG1); | ||
| 62 | |||
| 63 | memset(&t, 0, sizeof(t)); | 66 | memset(&t, 0, sizeof(t)); |
| 64 | t.sync_clk = 0; | 67 | t.sync_clk = 0; |
| 65 | t.cs_on = 0; | 68 | t.cs_on = 0; |
| @@ -86,25 +89,30 @@ static int omap2_onenand_set_async_mode(int cs, void __iomem *onenand_base) | |||
| 86 | t.cs_wr_off = t.we_off + gpmc_round_ns_to_ticks(t_wph); | 89 | t.cs_wr_off = t.we_off + gpmc_round_ns_to_ticks(t_wph); |
| 87 | t.wr_cycle = t.cs_wr_off + gpmc_round_ns_to_ticks(t_cez); | 90 | t.wr_cycle = t.cs_wr_off + gpmc_round_ns_to_ticks(t_cez); |
| 88 | 91 | ||
| 92 | return t; | ||
| 93 | } | ||
| 94 | |||
| 95 | static int gpmc_set_async_mode(int cs, struct gpmc_timings *t) | ||
| 96 | { | ||
| 89 | /* Configure GPMC for asynchronous read */ | 97 | /* Configure GPMC for asynchronous read */ |
| 90 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, | 98 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, |
| 91 | GPMC_CONFIG1_DEVICESIZE_16 | | 99 | GPMC_CONFIG1_DEVICESIZE_16 | |
| 92 | GPMC_CONFIG1_MUXADDDATA); | 100 | GPMC_CONFIG1_MUXADDDATA); |
| 93 | 101 | ||
| 94 | err = gpmc_cs_set_timings(cs, &t); | 102 | return gpmc_cs_set_timings(cs, t); |
| 95 | if (err) | 103 | } |
| 96 | return err; | 104 | |
| 105 | static void omap2_onenand_set_async_mode(void __iomem *onenand_base) | ||
| 106 | { | ||
| 107 | u32 reg; | ||
| 97 | 108 | ||
| 98 | /* Ensure sync read and sync write are disabled */ | 109 | /* Ensure sync read and sync write are disabled */ |
| 99 | reg = readw(onenand_base + ONENAND_REG_SYS_CFG1); | 110 | reg = readw(onenand_base + ONENAND_REG_SYS_CFG1); |
| 100 | reg &= ~ONENAND_SYS_CFG1_SYNC_READ & ~ONENAND_SYS_CFG1_SYNC_WRITE; | 111 | reg &= ~ONENAND_SYS_CFG1_SYNC_READ & ~ONENAND_SYS_CFG1_SYNC_WRITE; |
| 101 | writew(reg, onenand_base + ONENAND_REG_SYS_CFG1); | 112 | writew(reg, onenand_base + ONENAND_REG_SYS_CFG1); |
| 102 | |||
| 103 | return 0; | ||
| 104 | } | 113 | } |
| 105 | 114 | ||
| 106 | static void set_onenand_cfg(void __iomem *onenand_base, int latency, | 115 | static void set_onenand_cfg(void __iomem *onenand_base) |
| 107 | int sync_read, int sync_write, int hf, int vhf) | ||
| 108 | { | 116 | { |
| 109 | u32 reg; | 117 | u32 reg; |
| 110 | 118 | ||
| @@ -112,19 +120,19 @@ static void set_onenand_cfg(void __iomem *onenand_base, int latency, | |||
| 112 | reg &= ~((0x7 << ONENAND_SYS_CFG1_BRL_SHIFT) | (0x7 << 9)); | 120 | reg &= ~((0x7 << ONENAND_SYS_CFG1_BRL_SHIFT) | (0x7 << 9)); |
| 113 | reg |= (latency << ONENAND_SYS_CFG1_BRL_SHIFT) | | 121 | reg |= (latency << ONENAND_SYS_CFG1_BRL_SHIFT) | |
| 114 | ONENAND_SYS_CFG1_BL_16; | 122 | ONENAND_SYS_CFG1_BL_16; |
| 115 | if (sync_read) | 123 | if (onenand_flags & ONENAND_FLAG_SYNCREAD) |
| 116 | reg |= ONENAND_SYS_CFG1_SYNC_READ; | 124 | reg |= ONENAND_SYS_CFG1_SYNC_READ; |
| 117 | else | 125 | else |
| 118 | reg &= ~ONENAND_SYS_CFG1_SYNC_READ; | 126 | reg &= ~ONENAND_SYS_CFG1_SYNC_READ; |
| 119 | if (sync_write) | 127 | if (onenand_flags & ONENAND_FLAG_SYNCWRITE) |
| 120 | reg |= ONENAND_SYS_CFG1_SYNC_WRITE; | 128 | reg |= ONENAND_SYS_CFG1_SYNC_WRITE; |
| 121 | else | 129 | else |
| 122 | reg &= ~ONENAND_SYS_CFG1_SYNC_WRITE; | 130 | reg &= ~ONENAND_SYS_CFG1_SYNC_WRITE; |
| 123 | if (hf) | 131 | if (onenand_flags & ONENAND_FLAG_HF) |
| 124 | reg |= ONENAND_SYS_CFG1_HF; | 132 | reg |= ONENAND_SYS_CFG1_HF; |
| 125 | else | 133 | else |
| 126 | reg &= ~ONENAND_SYS_CFG1_HF; | 134 | reg &= ~ONENAND_SYS_CFG1_HF; |
| 127 | if (vhf) | 135 | if (onenand_flags & ONENAND_FLAG_VHF) |
| 128 | reg |= ONENAND_SYS_CFG1_VHF; | 136 | reg |= ONENAND_SYS_CFG1_VHF; |
| 129 | else | 137 | else |
| 130 | reg &= ~ONENAND_SYS_CFG1_VHF; | 138 | reg &= ~ONENAND_SYS_CFG1_VHF; |
| @@ -132,21 +140,10 @@ static void set_onenand_cfg(void __iomem *onenand_base, int latency, | |||
| 132 | } | 140 | } |
| 133 | 141 | ||
| 134 | static int omap2_onenand_get_freq(struct omap_onenand_platform_data *cfg, | 142 | static int omap2_onenand_get_freq(struct omap_onenand_platform_data *cfg, |
| 135 | void __iomem *onenand_base, bool *clk_dep) | 143 | void __iomem *onenand_base) |
| 136 | { | 144 | { |
| 137 | u16 ver = readw(onenand_base + ONENAND_REG_VERSION_ID); | 145 | u16 ver = readw(onenand_base + ONENAND_REG_VERSION_ID); |
| 138 | int freq = 0; | 146 | int freq; |
| 139 | |||
| 140 | if (cfg->get_freq) { | ||
| 141 | struct onenand_freq_info fi; | ||
| 142 | |||
| 143 | fi.maf_id = readw(onenand_base + ONENAND_REG_MANUFACTURER_ID); | ||
| 144 | fi.dev_id = readw(onenand_base + ONENAND_REG_DEVICE_ID); | ||
| 145 | fi.ver_id = ver; | ||
| 146 | freq = cfg->get_freq(&fi, clk_dep); | ||
| 147 | if (freq) | ||
| 148 | return freq; | ||
| 149 | } | ||
| 150 | 147 | ||
| 151 | switch ((ver >> 4) & 0xf) { | 148 | switch ((ver >> 4) & 0xf) { |
| 152 | case 0: | 149 | case 0: |
| @@ -172,9 +169,9 @@ static int omap2_onenand_get_freq(struct omap_onenand_platform_data *cfg, | |||
| 172 | return freq; | 169 | return freq; |
| 173 | } | 170 | } |
| 174 | 171 | ||
| 175 | static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | 172 | static struct gpmc_timings |
| 176 | void __iomem *onenand_base, | 173 | omap2_onenand_calc_sync_timings(struct omap_onenand_platform_data *cfg, |
| 177 | int *freq_ptr) | 174 | int freq) |
| 178 | { | 175 | { |
| 179 | struct gpmc_timings t; | 176 | struct gpmc_timings t; |
| 180 | const int t_cer = 15; | 177 | const int t_cer = 15; |
| @@ -184,29 +181,15 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
| 184 | const int t_wpl = 40; | 181 | const int t_wpl = 40; |
| 185 | const int t_wph = 30; | 182 | const int t_wph = 30; |
| 186 | int min_gpmc_clk_period, t_ces, t_avds, t_avdh, t_ach, t_aavdh, t_rdyo; | 183 | int min_gpmc_clk_period, t_ces, t_avds, t_avdh, t_ach, t_aavdh, t_rdyo; |
| 187 | int div, fclk_offset_ns, fclk_offset, gpmc_clk_ns, latency; | ||
| 188 | int first_time = 0, hf = 0, vhf = 0, sync_read = 0, sync_write = 0; | ||
| 189 | int err, ticks_cez; | ||
| 190 | int cs = cfg->cs, freq = *freq_ptr; | ||
| 191 | u32 reg; | 184 | u32 reg; |
| 192 | bool clk_dep = false; | 185 | int div, fclk_offset_ns, gpmc_clk_ns; |
| 186 | int ticks_cez; | ||
| 187 | int cs = cfg->cs; | ||
| 193 | 188 | ||
| 194 | if (cfg->flags & ONENAND_SYNC_READ) { | 189 | if (cfg->flags & ONENAND_SYNC_READ) |
| 195 | sync_read = 1; | 190 | onenand_flags = ONENAND_FLAG_SYNCREAD; |
| 196 | } else if (cfg->flags & ONENAND_SYNC_READWRITE) { | 191 | else if (cfg->flags & ONENAND_SYNC_READWRITE) |
| 197 | sync_read = 1; | 192 | onenand_flags = ONENAND_FLAG_SYNCREAD | ONENAND_FLAG_SYNCWRITE; |
| 198 | sync_write = 1; | ||
| 199 | } else | ||
| 200 | return omap2_onenand_set_async_mode(cs, onenand_base); | ||
| 201 | |||
| 202 | if (!freq) { | ||
| 203 | /* Very first call freq is not known */ | ||
| 204 | err = omap2_onenand_set_async_mode(cs, onenand_base); | ||
| 205 | if (err) | ||
| 206 | return err; | ||
| 207 | freq = omap2_onenand_get_freq(cfg, onenand_base, &clk_dep); | ||
| 208 | first_time = 1; | ||
| 209 | } | ||
| 210 | 193 | ||
| 211 | switch (freq) { | 194 | switch (freq) { |
| 212 | case 104: | 195 | case 104: |
| @@ -244,44 +227,31 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
| 244 | t_ach = 9; | 227 | t_ach = 9; |
| 245 | t_aavdh = 7; | 228 | t_aavdh = 7; |
| 246 | t_rdyo = 15; | 229 | t_rdyo = 15; |
| 247 | sync_write = 0; | 230 | onenand_flags &= ~ONENAND_FLAG_SYNCWRITE; |
| 248 | break; | 231 | break; |
| 249 | } | 232 | } |
| 250 | 233 | ||
| 251 | div = gpmc_cs_calc_divider(cs, min_gpmc_clk_period); | 234 | div = gpmc_calc_divider(min_gpmc_clk_period); |
| 252 | gpmc_clk_ns = gpmc_ticks_to_ns(div); | 235 | gpmc_clk_ns = gpmc_ticks_to_ns(div); |
| 253 | if (gpmc_clk_ns < 15) /* >66Mhz */ | 236 | if (gpmc_clk_ns < 15) /* >66Mhz */ |
| 254 | hf = 1; | 237 | onenand_flags |= ONENAND_FLAG_HF; |
| 238 | else | ||
| 239 | onenand_flags &= ~ONENAND_FLAG_HF; | ||
| 255 | if (gpmc_clk_ns < 12) /* >83Mhz */ | 240 | if (gpmc_clk_ns < 12) /* >83Mhz */ |
| 256 | vhf = 1; | 241 | onenand_flags |= ONENAND_FLAG_VHF; |
| 257 | if (vhf) | 242 | else |
| 243 | onenand_flags &= ~ONENAND_FLAG_VHF; | ||
| 244 | if (onenand_flags & ONENAND_FLAG_VHF) | ||
| 258 | latency = 8; | 245 | latency = 8; |
| 259 | else if (hf) | 246 | else if (onenand_flags & ONENAND_FLAG_HF) |
| 260 | latency = 6; | 247 | latency = 6; |
| 261 | else if (gpmc_clk_ns >= 25) /* 40 MHz*/ | 248 | else if (gpmc_clk_ns >= 25) /* 40 MHz*/ |
| 262 | latency = 3; | 249 | latency = 3; |
| 263 | else | 250 | else |
| 264 | latency = 4; | 251 | latency = 4; |
| 265 | 252 | ||
| 266 | if (clk_dep) { | 253 | /* Set synchronous read timings */ |
| 267 | if (gpmc_clk_ns < 12) { /* >83Mhz */ | 254 | memset(&t, 0, sizeof(t)); |
| 268 | t_ces = 3; | ||
| 269 | t_avds = 4; | ||
| 270 | } else if (gpmc_clk_ns < 15) { /* >66Mhz */ | ||
| 271 | t_ces = 5; | ||
| 272 | t_avds = 4; | ||
| 273 | } else if (gpmc_clk_ns < 25) { /* >40Mhz */ | ||
| 274 | t_ces = 6; | ||
| 275 | t_avds = 5; | ||
| 276 | } else { | ||
| 277 | t_ces = 7; | ||
| 278 | t_avds = 7; | ||
| 279 | } | ||
| 280 | } | ||
| 281 | |||
| 282 | if (first_time) | ||
| 283 | set_onenand_cfg(onenand_base, latency, | ||
| 284 | sync_read, sync_write, hf, vhf); | ||
| 285 | 255 | ||
| 286 | if (div == 1) { | 256 | if (div == 1) { |
| 287 | reg = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG2); | 257 | reg = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG2); |
| @@ -307,8 +277,6 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
| 307 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG4, reg); | 277 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG4, reg); |
| 308 | } | 278 | } |
| 309 | 279 | ||
| 310 | /* Set synchronous read timings */ | ||
| 311 | memset(&t, 0, sizeof(t)); | ||
| 312 | t.sync_clk = min_gpmc_clk_period; | 280 | t.sync_clk = min_gpmc_clk_period; |
| 313 | t.cs_on = 0; | 281 | t.cs_on = 0; |
| 314 | t.adv_on = 0; | 282 | t.adv_on = 0; |
| @@ -330,7 +298,7 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
| 330 | ticks_cez); | 298 | ticks_cez); |
| 331 | 299 | ||
| 332 | /* Write */ | 300 | /* Write */ |
| 333 | if (sync_write) { | 301 | if (onenand_flags & ONENAND_FLAG_SYNCWRITE) { |
| 334 | t.adv_wr_off = t.adv_rd_off; | 302 | t.adv_wr_off = t.adv_rd_off; |
| 335 | t.we_on = 0; | 303 | t.we_on = 0; |
| 336 | t.we_off = t.cs_rd_off; | 304 | t.we_off = t.cs_rd_off; |
| @@ -355,6 +323,14 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
| 355 | } | 323 | } |
| 356 | } | 324 | } |
| 357 | 325 | ||
| 326 | return t; | ||
| 327 | } | ||
| 328 | |||
| 329 | static int gpmc_set_sync_mode(int cs, struct gpmc_timings *t) | ||
| 330 | { | ||
| 331 | unsigned sync_read = onenand_flags & ONENAND_FLAG_SYNCREAD; | ||
| 332 | unsigned sync_write = onenand_flags & ONENAND_FLAG_SYNCWRITE; | ||
| 333 | |||
| 358 | /* Configure GPMC for synchronous read */ | 334 | /* Configure GPMC for synchronous read */ |
| 359 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, | 335 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, |
| 360 | GPMC_CONFIG1_WRAPBURST_SUPP | | 336 | GPMC_CONFIG1_WRAPBURST_SUPP | |
| @@ -371,11 +347,45 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
| 371 | GPMC_CONFIG1_DEVICETYPE_NOR | | 347 | GPMC_CONFIG1_DEVICETYPE_NOR | |
| 372 | GPMC_CONFIG1_MUXADDDATA); | 348 | GPMC_CONFIG1_MUXADDDATA); |
| 373 | 349 | ||
| 374 | err = gpmc_cs_set_timings(cs, &t); | 350 | return gpmc_cs_set_timings(cs, t); |
| 375 | if (err) | 351 | } |
| 376 | return err; | 352 | |
| 353 | static int omap2_onenand_setup_async(void __iomem *onenand_base) | ||
| 354 | { | ||
| 355 | struct gpmc_timings t; | ||
| 356 | int ret; | ||
| 357 | |||
| 358 | omap2_onenand_set_async_mode(onenand_base); | ||
| 377 | 359 | ||
| 378 | set_onenand_cfg(onenand_base, latency, sync_read, sync_write, hf, vhf); | 360 | t = omap2_onenand_calc_async_timings(); |
| 361 | |||
| 362 | ret = gpmc_set_async_mode(gpmc_onenand_data->cs, &t); | ||
| 363 | if (IS_ERR_VALUE(ret)) | ||
| 364 | return ret; | ||
| 365 | |||
| 366 | omap2_onenand_set_async_mode(onenand_base); | ||
| 367 | |||
| 368 | return 0; | ||
| 369 | } | ||
| 370 | |||
| 371 | static int omap2_onenand_setup_sync(void __iomem *onenand_base, int *freq_ptr) | ||
| 372 | { | ||
| 373 | int ret, freq = *freq_ptr; | ||
| 374 | struct gpmc_timings t; | ||
| 375 | |||
| 376 | if (!freq) { | ||
| 377 | /* Very first call freq is not known */ | ||
| 378 | freq = omap2_onenand_get_freq(gpmc_onenand_data, onenand_base); | ||
| 379 | set_onenand_cfg(onenand_base); | ||
| 380 | } | ||
| 381 | |||
| 382 | t = omap2_onenand_calc_sync_timings(gpmc_onenand_data, freq); | ||
| 383 | |||
| 384 | ret = gpmc_set_sync_mode(gpmc_onenand_data->cs, &t); | ||
| 385 | if (IS_ERR_VALUE(ret)) | ||
| 386 | return ret; | ||
| 387 | |||
| 388 | set_onenand_cfg(onenand_base); | ||
| 379 | 389 | ||
| 380 | *freq_ptr = freq; | 390 | *freq_ptr = freq; |
| 381 | 391 | ||
| @@ -385,15 +395,22 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
| 385 | static int gpmc_onenand_setup(void __iomem *onenand_base, int *freq_ptr) | 395 | static int gpmc_onenand_setup(void __iomem *onenand_base, int *freq_ptr) |
| 386 | { | 396 | { |
| 387 | struct device *dev = &gpmc_onenand_device.dev; | 397 | struct device *dev = &gpmc_onenand_device.dev; |
| 398 | unsigned l = ONENAND_SYNC_READ | ONENAND_SYNC_READWRITE; | ||
| 399 | int ret; | ||
| 388 | 400 | ||
| 389 | /* Set sync timings in GPMC */ | 401 | ret = omap2_onenand_setup_async(onenand_base); |
| 390 | if (omap2_onenand_set_sync_mode(gpmc_onenand_data, onenand_base, | 402 | if (ret) { |
| 391 | freq_ptr) < 0) { | 403 | dev_err(dev, "unable to set to async mode\n"); |
| 392 | dev_err(dev, "Unable to set synchronous mode\n"); | 404 | return ret; |
| 393 | return -EINVAL; | ||
| 394 | } | 405 | } |
| 395 | 406 | ||
| 396 | return 0; | 407 | if (!(gpmc_onenand_data->flags & l)) |
| 408 | return 0; | ||
| 409 | |||
| 410 | ret = omap2_onenand_setup_sync(onenand_base, freq_ptr); | ||
| 411 | if (ret) | ||
| 412 | dev_err(dev, "unable to set to sync mode\n"); | ||
| 413 | return ret; | ||
| 397 | } | 414 | } |
| 398 | 415 | ||
| 399 | void __init gpmc_onenand_init(struct omap_onenand_platform_data *_onenand_data) | 416 | void __init gpmc_onenand_init(struct omap_onenand_platform_data *_onenand_data) |
| @@ -411,6 +428,11 @@ void __init gpmc_onenand_init(struct omap_onenand_platform_data *_onenand_data) | |||
| 411 | gpmc_onenand_data->flags |= ONENAND_SYNC_READ; | 428 | gpmc_onenand_data->flags |= ONENAND_SYNC_READ; |
| 412 | } | 429 | } |
| 413 | 430 | ||
| 431 | if (cpu_is_omap34xx()) | ||
| 432 | gpmc_onenand_data->flags |= ONENAND_IN_OMAP34XX; | ||
| 433 | else | ||
| 434 | gpmc_onenand_data->flags &= ~ONENAND_IN_OMAP34XX; | ||
| 435 | |||
| 414 | err = gpmc_cs_request(gpmc_onenand_data->cs, ONENAND_IO_SIZE, | 436 | err = gpmc_cs_request(gpmc_onenand_data->cs, ONENAND_IO_SIZE, |
| 415 | (unsigned long *)&gpmc_onenand_resource.start); | 437 | (unsigned long *)&gpmc_onenand_resource.start); |
| 416 | if (err < 0) { | 438 | if (err < 0) { |
diff --git a/arch/arm/mach-omap2/gpmc-onenand.h b/arch/arm/mach-omap2/gpmc-onenand.h new file mode 100644 index 000000000000..216f23a8b45c --- /dev/null +++ b/arch/arm/mach-omap2/gpmc-onenand.h | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/mach-omap2/gpmc-onenand.h | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify it | ||
| 5 | * under the terms of the GNU General Public License as published by the | ||
| 6 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 7 | * option) any later version. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #ifndef __OMAP2_GPMC_ONENAND_H | ||
| 11 | #define __OMAP2_GPMC_ONENAND_H | ||
| 12 | |||
| 13 | #include <linux/platform_data/mtd-onenand-omap2.h> | ||
| 14 | |||
| 15 | #if IS_ENABLED(CONFIG_MTD_ONENAND_OMAP2) | ||
| 16 | extern void gpmc_onenand_init(struct omap_onenand_platform_data *d); | ||
| 17 | #else | ||
| 18 | #define board_onenand_data NULL | ||
| 19 | static inline void gpmc_onenand_init(struct omap_onenand_platform_data *d) | ||
| 20 | { | ||
| 21 | } | ||
| 22 | #endif | ||
| 23 | |||
| 24 | #endif | ||
diff --git a/arch/arm/mach-omap2/gpmc-smc91x.c b/arch/arm/mach-omap2/gpmc-smc91x.c index 565475310374..6eed907d594c 100644 --- a/arch/arm/mach-omap2/gpmc-smc91x.c +++ b/arch/arm/mach-omap2/gpmc-smc91x.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
| 18 | #include <linux/smc91x.h> | 18 | #include <linux/smc91x.h> |
| 19 | 19 | ||
| 20 | #include <plat/gpmc.h> | 20 | #include "gpmc.h" |
| 21 | #include "gpmc-smc91x.h" | 21 | #include "gpmc-smc91x.h" |
| 22 | 22 | ||
| 23 | #include "soc.h" | 23 | #include "soc.h" |
diff --git a/arch/arm/mach-omap2/gpmc-smsc911x.c b/arch/arm/mach-omap2/gpmc-smsc911x.c index 249a0b440cd6..ef990118d32b 100644 --- a/arch/arm/mach-omap2/gpmc-smsc911x.c +++ b/arch/arm/mach-omap2/gpmc-smsc911x.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | #include <linux/io.h> | 20 | #include <linux/io.h> |
| 21 | #include <linux/smsc911x.h> | 21 | #include <linux/smsc911x.h> |
| 22 | 22 | ||
| 23 | #include <plat/gpmc.h> | 23 | #include "gpmc.h" |
| 24 | #include "gpmc-smsc911x.h" | 24 | #include "gpmc-smsc911x.h" |
| 25 | 25 | ||
| 26 | static struct resource gpmc_smsc911x_resources[] = { | 26 | static struct resource gpmc_smsc911x_resources[] = { |
diff --git a/arch/arm/mach-omap2/gpmc.c b/arch/arm/mach-omap2/gpmc.c index 92b5718fa722..bf6117c32f4b 100644 --- a/arch/arm/mach-omap2/gpmc.c +++ b/arch/arm/mach-omap2/gpmc.c | |||
| @@ -26,16 +26,14 @@ | |||
| 26 | #include <linux/interrupt.h> | 26 | #include <linux/interrupt.h> |
| 27 | #include <linux/platform_device.h> | 27 | #include <linux/platform_device.h> |
| 28 | 28 | ||
| 29 | #include <asm/mach-types.h> | 29 | #include <linux/platform_data/mtd-nand-omap2.h> |
| 30 | #include <plat/gpmc.h> | ||
| 31 | 30 | ||
| 32 | #include <plat/cpu.h> | 31 | #include <asm/mach-types.h> |
| 33 | #include <plat/gpmc.h> | ||
| 34 | #include <plat/sdrc.h> | ||
| 35 | #include <plat/omap_device.h> | ||
| 36 | 32 | ||
| 37 | #include "soc.h" | 33 | #include "soc.h" |
| 38 | #include "common.h" | 34 | #include "common.h" |
| 35 | #include "omap_device.h" | ||
| 36 | #include "gpmc.h" | ||
| 39 | 37 | ||
| 40 | #define DEVICE_NAME "omap-gpmc" | 38 | #define DEVICE_NAME "omap-gpmc" |
| 41 | 39 | ||
| @@ -59,6 +57,9 @@ | |||
| 59 | #define GPMC_ECC_SIZE_CONFIG 0x1fc | 57 | #define GPMC_ECC_SIZE_CONFIG 0x1fc |
| 60 | #define GPMC_ECC1_RESULT 0x200 | 58 | #define GPMC_ECC1_RESULT 0x200 |
| 61 | #define GPMC_ECC_BCH_RESULT_0 0x240 /* not available on OMAP2 */ | 59 | #define GPMC_ECC_BCH_RESULT_0 0x240 /* not available on OMAP2 */ |
| 60 | #define GPMC_ECC_BCH_RESULT_1 0x244 /* not available on OMAP2 */ | ||
| 61 | #define GPMC_ECC_BCH_RESULT_2 0x248 /* not available on OMAP2 */ | ||
| 62 | #define GPMC_ECC_BCH_RESULT_3 0x24c /* not available on OMAP2 */ | ||
| 62 | 63 | ||
| 63 | /* GPMC ECC control settings */ | 64 | /* GPMC ECC control settings */ |
| 64 | #define GPMC_ECC_CTRL_ECCCLEAR 0x100 | 65 | #define GPMC_ECC_CTRL_ECCCLEAR 0x100 |
| @@ -75,6 +76,7 @@ | |||
| 75 | 76 | ||
| 76 | #define GPMC_CS0_OFFSET 0x60 | 77 | #define GPMC_CS0_OFFSET 0x60 |
| 77 | #define GPMC_CS_SIZE 0x30 | 78 | #define GPMC_CS_SIZE 0x30 |
| 79 | #define GPMC_BCH_SIZE 0x10 | ||
| 78 | 80 | ||
| 79 | #define GPMC_MEM_START 0x00000000 | 81 | #define GPMC_MEM_START 0x00000000 |
| 80 | #define GPMC_MEM_END 0x3FFFFFFF | 82 | #define GPMC_MEM_END 0x3FFFFFFF |
| @@ -137,7 +139,6 @@ static struct resource gpmc_mem_root; | |||
| 137 | static struct resource gpmc_cs_mem[GPMC_CS_NUM]; | 139 | static struct resource gpmc_cs_mem[GPMC_CS_NUM]; |
| 138 | static DEFINE_SPINLOCK(gpmc_mem_lock); | 140 | static DEFINE_SPINLOCK(gpmc_mem_lock); |
| 139 | static unsigned int gpmc_cs_map; /* flag for cs which are initialized */ | 141 | static unsigned int gpmc_cs_map; /* flag for cs which are initialized */ |
| 140 | static int gpmc_ecc_used = -EINVAL; /* cs using ecc engine */ | ||
| 141 | static struct device *gpmc_dev; | 142 | static struct device *gpmc_dev; |
| 142 | static int gpmc_irq; | 143 | static int gpmc_irq; |
| 143 | static resource_size_t phys_base, mem_size; | 144 | static resource_size_t phys_base, mem_size; |
| @@ -158,22 +159,6 @@ static u32 gpmc_read_reg(int idx) | |||
| 158 | return __raw_readl(gpmc_base + idx); | 159 | return __raw_readl(gpmc_base + idx); |
| 159 | } | 160 | } |
| 160 | 161 | ||
| 161 | static void gpmc_cs_write_byte(int cs, int idx, u8 val) | ||
| 162 | { | ||
| 163 | void __iomem *reg_addr; | ||
| 164 | |||
| 165 | reg_addr = gpmc_base + GPMC_CS0_OFFSET + (cs * GPMC_CS_SIZE) + idx; | ||
| 166 | __raw_writeb(val, reg_addr); | ||
| 167 | } | ||
| 168 | |||
| 169 | static u8 gpmc_cs_read_byte(int cs, int idx) | ||
| 170 | { | ||
| 171 | void __iomem *reg_addr; | ||
| 172 | |||
| 173 | reg_addr = gpmc_base + GPMC_CS0_OFFSET + (cs * GPMC_CS_SIZE) + idx; | ||
| 174 | return __raw_readb(reg_addr); | ||
| 175 | } | ||
| 176 | |||
| 177 | void gpmc_cs_write_reg(int cs, int idx, u32 val) | 162 | void gpmc_cs_write_reg(int cs, int idx, u32 val) |
| 178 | { | 163 | { |
| 179 | void __iomem *reg_addr; | 164 | void __iomem *reg_addr; |
| @@ -288,7 +273,7 @@ static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit, | |||
| 288 | return -1 | 273 | return -1 |
| 289 | #endif | 274 | #endif |
| 290 | 275 | ||
| 291 | int gpmc_cs_calc_divider(int cs, unsigned int sync_clk) | 276 | int gpmc_calc_divider(unsigned int sync_clk) |
| 292 | { | 277 | { |
| 293 | int div; | 278 | int div; |
| 294 | u32 l; | 279 | u32 l; |
| @@ -308,7 +293,7 @@ int gpmc_cs_set_timings(int cs, const struct gpmc_timings *t) | |||
| 308 | int div; | 293 | int div; |
| 309 | u32 l; | 294 | u32 l; |
| 310 | 295 | ||
| 311 | div = gpmc_cs_calc_divider(cs, t->sync_clk); | 296 | div = gpmc_calc_divider(t->sync_clk); |
| 312 | if (div < 0) | 297 | if (div < 0) |
| 313 | return div; | 298 | return div; |
| 314 | 299 | ||
| @@ -509,44 +494,6 @@ void gpmc_cs_free(int cs) | |||
| 509 | EXPORT_SYMBOL(gpmc_cs_free); | 494 | EXPORT_SYMBOL(gpmc_cs_free); |
| 510 | 495 | ||
| 511 | /** | 496 | /** |
| 512 | * gpmc_read_status - read access request to get the different gpmc status | ||
| 513 | * @cmd: command type | ||
| 514 | * @return status | ||
| 515 | */ | ||
| 516 | int gpmc_read_status(int cmd) | ||
| 517 | { | ||
| 518 | int status = -EINVAL; | ||
| 519 | u32 regval = 0; | ||
| 520 | |||
| 521 | switch (cmd) { | ||
| 522 | case GPMC_GET_IRQ_STATUS: | ||
| 523 | status = gpmc_read_reg(GPMC_IRQSTATUS); | ||
| 524 | break; | ||
| 525 | |||
| 526 | case GPMC_PREFETCH_FIFO_CNT: | ||
| 527 | regval = gpmc_read_reg(GPMC_PREFETCH_STATUS); | ||
| 528 | status = GPMC_PREFETCH_STATUS_FIFO_CNT(regval); | ||
| 529 | break; | ||
| 530 | |||
| 531 | case GPMC_PREFETCH_COUNT: | ||
| 532 | regval = gpmc_read_reg(GPMC_PREFETCH_STATUS); | ||
| 533 | status = GPMC_PREFETCH_STATUS_COUNT(regval); | ||
| 534 | break; | ||
| 535 | |||
| 536 | case GPMC_STATUS_BUFFER: | ||
| 537 | regval = gpmc_read_reg(GPMC_STATUS); | ||
| 538 | /* 1 : buffer is available to write */ | ||
| 539 | status = regval & GPMC_STATUS_BUFF_EMPTY; | ||
| 540 | break; | ||
| 541 | |||
| 542 | default: | ||
| 543 | printk(KERN_ERR "gpmc_read_status: Not supported\n"); | ||
| 544 | } | ||
| 545 | return status; | ||
| 546 | } | ||
| 547 | EXPORT_SYMBOL(gpmc_read_status); | ||
| 548 | |||
| 549 | /** | ||
| 550 | * gpmc_cs_configure - write request to configure gpmc | 497 | * gpmc_cs_configure - write request to configure gpmc |
| 551 | * @cs: chip select number | 498 | * @cs: chip select number |
| 552 | * @cmd: command type | 499 | * @cmd: command type |
| @@ -614,121 +561,10 @@ int gpmc_cs_configure(int cs, int cmd, int wval) | |||
| 614 | } | 561 | } |
| 615 | EXPORT_SYMBOL(gpmc_cs_configure); | 562 | EXPORT_SYMBOL(gpmc_cs_configure); |
| 616 | 563 | ||
| 617 | /** | ||
| 618 | * gpmc_nand_read - nand specific read access request | ||
| 619 | * @cs: chip select number | ||
| 620 | * @cmd: command type | ||
| 621 | */ | ||
| 622 | int gpmc_nand_read(int cs, int cmd) | ||
| 623 | { | ||
| 624 | int rval = -EINVAL; | ||
| 625 | |||
| 626 | switch (cmd) { | ||
| 627 | case GPMC_NAND_DATA: | ||
| 628 | rval = gpmc_cs_read_byte(cs, GPMC_CS_NAND_DATA); | ||
| 629 | break; | ||
| 630 | |||
| 631 | default: | ||
| 632 | printk(KERN_ERR "gpmc_read_nand_ctrl: Not supported\n"); | ||
| 633 | } | ||
| 634 | return rval; | ||
| 635 | } | ||
| 636 | EXPORT_SYMBOL(gpmc_nand_read); | ||
| 637 | |||
| 638 | /** | ||
| 639 | * gpmc_nand_write - nand specific write request | ||
| 640 | * @cs: chip select number | ||
| 641 | * @cmd: command type | ||
| 642 | * @wval: value to write | ||
| 643 | */ | ||
| 644 | int gpmc_nand_write(int cs, int cmd, int wval) | ||
| 645 | { | ||
| 646 | int err = 0; | ||
| 647 | |||
| 648 | switch (cmd) { | ||
| 649 | case GPMC_NAND_COMMAND: | ||
| 650 | gpmc_cs_write_byte(cs, GPMC_CS_NAND_COMMAND, wval); | ||
| 651 | break; | ||
| 652 | |||
| 653 | case GPMC_NAND_ADDRESS: | ||
| 654 | gpmc_cs_write_byte(cs, GPMC_CS_NAND_ADDRESS, wval); | ||
| 655 | break; | ||
| 656 | |||
| 657 | case GPMC_NAND_DATA: | ||
| 658 | gpmc_cs_write_byte(cs, GPMC_CS_NAND_DATA, wval); | ||
| 659 | |||
| 660 | default: | ||
| 661 | printk(KERN_ERR "gpmc_write_nand_ctrl: Not supported\n"); | ||
| 662 | err = -EINVAL; | ||
| 663 | } | ||
| 664 | return err; | ||
| 665 | } | ||
| 666 | EXPORT_SYMBOL(gpmc_nand_write); | ||
| 667 | |||
| 668 | |||
| 669 | |||
| 670 | /** | ||
| 671 | * gpmc_prefetch_enable - configures and starts prefetch transfer | ||
| 672 | * @cs: cs (chip select) number | ||
| 673 | * @fifo_th: fifo threshold to be used for read/ write | ||
| 674 | * @dma_mode: dma mode enable (1) or disable (0) | ||
| 675 | * @u32_count: number of bytes to be transferred | ||
| 676 | * @is_write: prefetch read(0) or write post(1) mode | ||
| 677 | */ | ||
| 678 | int gpmc_prefetch_enable(int cs, int fifo_th, int dma_mode, | ||
| 679 | unsigned int u32_count, int is_write) | ||
| 680 | { | ||
| 681 | |||
| 682 | if (fifo_th > PREFETCH_FIFOTHRESHOLD_MAX) { | ||
| 683 | pr_err("gpmc: fifo threshold is not supported\n"); | ||
| 684 | return -1; | ||
| 685 | } else if (!(gpmc_read_reg(GPMC_PREFETCH_CONTROL))) { | ||
| 686 | /* Set the amount of bytes to be prefetched */ | ||
| 687 | gpmc_write_reg(GPMC_PREFETCH_CONFIG2, u32_count); | ||
| 688 | |||
| 689 | /* Set dma/mpu mode, the prefetch read / post write and | ||
| 690 | * enable the engine. Set which cs is has requested for. | ||
| 691 | */ | ||
| 692 | gpmc_write_reg(GPMC_PREFETCH_CONFIG1, ((cs << CS_NUM_SHIFT) | | ||
| 693 | PREFETCH_FIFOTHRESHOLD(fifo_th) | | ||
| 694 | ENABLE_PREFETCH | | ||
| 695 | (dma_mode << DMA_MPU_MODE) | | ||
| 696 | (0x1 & is_write))); | ||
| 697 | |||
| 698 | /* Start the prefetch engine */ | ||
| 699 | gpmc_write_reg(GPMC_PREFETCH_CONTROL, 0x1); | ||
| 700 | } else { | ||
| 701 | return -EBUSY; | ||
| 702 | } | ||
| 703 | |||
| 704 | return 0; | ||
| 705 | } | ||
| 706 | EXPORT_SYMBOL(gpmc_prefetch_enable); | ||
| 707 | |||
| 708 | /** | ||
| 709 | * gpmc_prefetch_reset - disables and stops the prefetch engine | ||
| 710 | */ | ||
| 711 | int gpmc_prefetch_reset(int cs) | ||
| 712 | { | ||
| 713 | u32 config1; | ||
| 714 | |||
| 715 | /* check if the same module/cs is trying to reset */ | ||
| 716 | config1 = gpmc_read_reg(GPMC_PREFETCH_CONFIG1); | ||
| 717 | if (((config1 >> CS_NUM_SHIFT) & 0x7) != cs) | ||
| 718 | return -EINVAL; | ||
| 719 | |||
| 720 | /* Stop the PFPW engine */ | ||
| 721 | gpmc_write_reg(GPMC_PREFETCH_CONTROL, 0x0); | ||
| 722 | |||
| 723 | /* Reset/disable the PFPW engine */ | ||
| 724 | gpmc_write_reg(GPMC_PREFETCH_CONFIG1, 0x0); | ||
| 725 | |||
| 726 | return 0; | ||
| 727 | } | ||
| 728 | EXPORT_SYMBOL(gpmc_prefetch_reset); | ||
| 729 | |||
| 730 | void gpmc_update_nand_reg(struct gpmc_nand_regs *reg, int cs) | 564 | void gpmc_update_nand_reg(struct gpmc_nand_regs *reg, int cs) |
| 731 | { | 565 | { |
| 566 | int i; | ||
| 567 | |||
| 732 | reg->gpmc_status = gpmc_base + GPMC_STATUS; | 568 | reg->gpmc_status = gpmc_base + GPMC_STATUS; |
| 733 | reg->gpmc_nand_command = gpmc_base + GPMC_CS0_OFFSET + | 569 | reg->gpmc_nand_command = gpmc_base + GPMC_CS0_OFFSET + |
| 734 | GPMC_CS_NAND_COMMAND + GPMC_CS_SIZE * cs; | 570 | GPMC_CS_NAND_COMMAND + GPMC_CS_SIZE * cs; |
| @@ -744,7 +580,17 @@ void gpmc_update_nand_reg(struct gpmc_nand_regs *reg, int cs) | |||
| 744 | reg->gpmc_ecc_control = gpmc_base + GPMC_ECC_CONTROL; | 580 | reg->gpmc_ecc_control = gpmc_base + GPMC_ECC_CONTROL; |
| 745 | reg->gpmc_ecc_size_config = gpmc_base + GPMC_ECC_SIZE_CONFIG; | 581 | reg->gpmc_ecc_size_config = gpmc_base + GPMC_ECC_SIZE_CONFIG; |
| 746 | reg->gpmc_ecc1_result = gpmc_base + GPMC_ECC1_RESULT; | 582 | reg->gpmc_ecc1_result = gpmc_base + GPMC_ECC1_RESULT; |
| 747 | reg->gpmc_bch_result0 = gpmc_base + GPMC_ECC_BCH_RESULT_0; | 583 | |
| 584 | for (i = 0; i < GPMC_BCH_NUM_REMAINDER; i++) { | ||
| 585 | reg->gpmc_bch_result0[i] = gpmc_base + GPMC_ECC_BCH_RESULT_0 + | ||
| 586 | GPMC_BCH_SIZE * i; | ||
| 587 | reg->gpmc_bch_result1[i] = gpmc_base + GPMC_ECC_BCH_RESULT_1 + | ||
| 588 | GPMC_BCH_SIZE * i; | ||
| 589 | reg->gpmc_bch_result2[i] = gpmc_base + GPMC_ECC_BCH_RESULT_2 + | ||
| 590 | GPMC_BCH_SIZE * i; | ||
| 591 | reg->gpmc_bch_result3[i] = gpmc_base + GPMC_ECC_BCH_RESULT_3 + | ||
| 592 | GPMC_BCH_SIZE * i; | ||
| 593 | } | ||
| 748 | } | 594 | } |
| 749 | 595 | ||
| 750 | int gpmc_get_client_irq(unsigned irq_config) | 596 | int gpmc_get_client_irq(unsigned irq_config) |
| @@ -1093,267 +939,3 @@ void omap3_gpmc_restore_context(void) | |||
| 1093 | } | 939 | } |
| 1094 | } | 940 | } |
| 1095 | #endif /* CONFIG_ARCH_OMAP3 */ | 941 | #endif /* CONFIG_ARCH_OMAP3 */ |
| 1096 | |||
| 1097 | /** | ||
| 1098 | * gpmc_enable_hwecc - enable hardware ecc functionality | ||
| 1099 | * @cs: chip select number | ||
| 1100 | * @mode: read/write mode | ||
| 1101 | * @dev_width: device bus width(1 for x16, 0 for x8) | ||
| 1102 | * @ecc_size: bytes for which ECC will be generated | ||
| 1103 | */ | ||
| 1104 | int gpmc_enable_hwecc(int cs, int mode, int dev_width, int ecc_size) | ||
| 1105 | { | ||
| 1106 | unsigned int val; | ||
| 1107 | |||
| 1108 | /* check if ecc module is in used */ | ||
| 1109 | if (gpmc_ecc_used != -EINVAL) | ||
| 1110 | return -EINVAL; | ||
| 1111 | |||
| 1112 | gpmc_ecc_used = cs; | ||
| 1113 | |||
| 1114 | /* clear ecc and enable bits */ | ||
| 1115 | gpmc_write_reg(GPMC_ECC_CONTROL, | ||
| 1116 | GPMC_ECC_CTRL_ECCCLEAR | | ||
| 1117 | GPMC_ECC_CTRL_ECCREG1); | ||
| 1118 | |||
| 1119 | /* program ecc and result sizes */ | ||
| 1120 | val = ((((ecc_size >> 1) - 1) << 22) | (0x0000000F)); | ||
| 1121 | gpmc_write_reg(GPMC_ECC_SIZE_CONFIG, val); | ||
| 1122 | |||
| 1123 | switch (mode) { | ||
| 1124 | case GPMC_ECC_READ: | ||
| 1125 | case GPMC_ECC_WRITE: | ||
| 1126 | gpmc_write_reg(GPMC_ECC_CONTROL, | ||
| 1127 | GPMC_ECC_CTRL_ECCCLEAR | | ||
| 1128 | GPMC_ECC_CTRL_ECCREG1); | ||
| 1129 | break; | ||
| 1130 | case GPMC_ECC_READSYN: | ||
| 1131 | gpmc_write_reg(GPMC_ECC_CONTROL, | ||
| 1132 | GPMC_ECC_CTRL_ECCCLEAR | | ||
| 1133 | GPMC_ECC_CTRL_ECCDISABLE); | ||
| 1134 | break; | ||
| 1135 | default: | ||
| 1136 | printk(KERN_INFO "Error: Unrecognized Mode[%d]!\n", mode); | ||
| 1137 | break; | ||
| 1138 | } | ||
| 1139 | |||
| 1140 | /* (ECC 16 or 8 bit col) | ( CS ) | ECC Enable */ | ||
| 1141 | val = (dev_width << 7) | (cs << 1) | (0x1); | ||
| 1142 | gpmc_write_reg(GPMC_ECC_CONFIG, val); | ||
| 1143 | return 0; | ||
| 1144 | } | ||
| 1145 | EXPORT_SYMBOL_GPL(gpmc_enable_hwecc); | ||
| 1146 | |||
| 1147 | /** | ||
| 1148 | * gpmc_calculate_ecc - generate non-inverted ecc bytes | ||
| 1149 | * @cs: chip select number | ||
| 1150 | * @dat: data pointer over which ecc is computed | ||
| 1151 | * @ecc_code: ecc code buffer | ||
| 1152 | * | ||
| 1153 | * Using non-inverted ECC is considered ugly since writing a blank | ||
| 1154 | * page (padding) will clear the ECC bytes. This is not a problem as long | ||
| 1155 | * no one is trying to write data on the seemingly unused page. Reading | ||
| 1156 | * an erased page will produce an ECC mismatch between generated and read | ||
| 1157 | * ECC bytes that has to be dealt with separately. | ||
| 1158 | */ | ||
| 1159 | int gpmc_calculate_ecc(int cs, const u_char *dat, u_char *ecc_code) | ||
| 1160 | { | ||
| 1161 | unsigned int val = 0x0; | ||
| 1162 | |||
| 1163 | if (gpmc_ecc_used != cs) | ||
| 1164 | return -EINVAL; | ||
| 1165 | |||
| 1166 | /* read ecc result */ | ||
| 1167 | val = gpmc_read_reg(GPMC_ECC1_RESULT); | ||
| 1168 | *ecc_code++ = val; /* P128e, ..., P1e */ | ||
| 1169 | *ecc_code++ = val >> 16; /* P128o, ..., P1o */ | ||
| 1170 | /* P2048o, P1024o, P512o, P256o, P2048e, P1024e, P512e, P256e */ | ||
| 1171 | *ecc_code++ = ((val >> 8) & 0x0f) | ((val >> 20) & 0xf0); | ||
| 1172 | |||
| 1173 | gpmc_ecc_used = -EINVAL; | ||
| 1174 | return 0; | ||
| 1175 | } | ||
| 1176 | EXPORT_SYMBOL_GPL(gpmc_calculate_ecc); | ||
| 1177 | |||
| 1178 | #ifdef CONFIG_ARCH_OMAP3 | ||
| 1179 | |||
| 1180 | /** | ||
| 1181 | * gpmc_init_hwecc_bch - initialize hardware BCH ecc functionality | ||
| 1182 | * @cs: chip select number | ||
| 1183 | * @nsectors: how many 512-byte sectors to process | ||
| 1184 | * @nerrors: how many errors to correct per sector (4 or 8) | ||
| 1185 | * | ||
| 1186 | * This function must be executed before any call to gpmc_enable_hwecc_bch. | ||
| 1187 | */ | ||
| 1188 | int gpmc_init_hwecc_bch(int cs, int nsectors, int nerrors) | ||
| 1189 | { | ||
| 1190 | /* check if ecc module is in use */ | ||
| 1191 | if (gpmc_ecc_used != -EINVAL) | ||
| 1192 | return -EINVAL; | ||
| 1193 | |||
| 1194 | /* support only OMAP3 class */ | ||
| 1195 | if (!cpu_is_omap34xx()) { | ||
| 1196 | printk(KERN_ERR "BCH ecc is not supported on this CPU\n"); | ||
| 1197 | return -EINVAL; | ||
| 1198 | } | ||
| 1199 | |||
| 1200 | /* | ||
| 1201 | * For now, assume 4-bit mode is only supported on OMAP3630 ES1.x, x>=1. | ||
| 1202 | * Other chips may be added if confirmed to work. | ||
| 1203 | */ | ||
| 1204 | if ((nerrors == 4) && | ||
| 1205 | (!cpu_is_omap3630() || (GET_OMAP_REVISION() == 0))) { | ||
| 1206 | printk(KERN_ERR "BCH 4-bit mode is not supported on this CPU\n"); | ||
| 1207 | return -EINVAL; | ||
| 1208 | } | ||
| 1209 | |||
| 1210 | /* sanity check */ | ||
| 1211 | if (nsectors > 8) { | ||
| 1212 | printk(KERN_ERR "BCH cannot process %d sectors (max is 8)\n", | ||
| 1213 | nsectors); | ||
| 1214 | return -EINVAL; | ||
| 1215 | } | ||
| 1216 | |||
| 1217 | return 0; | ||
| 1218 | } | ||
| 1219 | EXPORT_SYMBOL_GPL(gpmc_init_hwecc_bch); | ||
| 1220 | |||
| 1221 | /** | ||
| 1222 | * gpmc_enable_hwecc_bch - enable hardware BCH ecc functionality | ||
| 1223 | * @cs: chip select number | ||
| 1224 | * @mode: read/write mode | ||
| 1225 | * @dev_width: device bus width(1 for x16, 0 for x8) | ||
| 1226 | * @nsectors: how many 512-byte sectors to process | ||
| 1227 | * @nerrors: how many errors to correct per sector (4 or 8) | ||
| 1228 | */ | ||
| 1229 | int gpmc_enable_hwecc_bch(int cs, int mode, int dev_width, int nsectors, | ||
| 1230 | int nerrors) | ||
| 1231 | { | ||
| 1232 | unsigned int val; | ||
| 1233 | |||
| 1234 | /* check if ecc module is in use */ | ||
| 1235 | if (gpmc_ecc_used != -EINVAL) | ||
| 1236 | return -EINVAL; | ||
| 1237 | |||
| 1238 | gpmc_ecc_used = cs; | ||
| 1239 | |||
| 1240 | /* clear ecc and enable bits */ | ||
| 1241 | gpmc_write_reg(GPMC_ECC_CONTROL, 0x1); | ||
| 1242 | |||
| 1243 | /* | ||
| 1244 | * When using BCH, sector size is hardcoded to 512 bytes. | ||
| 1245 | * Here we are using wrapping mode 6 both for reading and writing, with: | ||
| 1246 | * size0 = 0 (no additional protected byte in spare area) | ||
| 1247 | * size1 = 32 (skip 32 nibbles = 16 bytes per sector in spare area) | ||
| 1248 | */ | ||
| 1249 | gpmc_write_reg(GPMC_ECC_SIZE_CONFIG, (32 << 22) | (0 << 12)); | ||
| 1250 | |||
| 1251 | /* BCH configuration */ | ||
| 1252 | val = ((1 << 16) | /* enable BCH */ | ||
| 1253 | (((nerrors == 8) ? 1 : 0) << 12) | /* 8 or 4 bits */ | ||
| 1254 | (0x06 << 8) | /* wrap mode = 6 */ | ||
| 1255 | (dev_width << 7) | /* bus width */ | ||
| 1256 | (((nsectors-1) & 0x7) << 4) | /* number of sectors */ | ||
| 1257 | (cs << 1) | /* ECC CS */ | ||
| 1258 | (0x1)); /* enable ECC */ | ||
| 1259 | |||
| 1260 | gpmc_write_reg(GPMC_ECC_CONFIG, val); | ||
| 1261 | gpmc_write_reg(GPMC_ECC_CONTROL, 0x101); | ||
| 1262 | return 0; | ||
| 1263 | } | ||
| 1264 | EXPORT_SYMBOL_GPL(gpmc_enable_hwecc_bch); | ||
| 1265 | |||
| 1266 | /** | ||
| 1267 | * gpmc_calculate_ecc_bch4 - Generate 7 ecc bytes per sector of 512 data bytes | ||
| 1268 | * @cs: chip select number | ||
| 1269 | * @dat: The pointer to data on which ecc is computed | ||
| 1270 | * @ecc: The ecc output buffer | ||
| 1271 | */ | ||
| 1272 | int gpmc_calculate_ecc_bch4(int cs, const u_char *dat, u_char *ecc) | ||
| 1273 | { | ||
| 1274 | int i; | ||
| 1275 | unsigned long nsectors, reg, val1, val2; | ||
| 1276 | |||
| 1277 | if (gpmc_ecc_used != cs) | ||
| 1278 | return -EINVAL; | ||
| 1279 | |||
| 1280 | nsectors = ((gpmc_read_reg(GPMC_ECC_CONFIG) >> 4) & 0x7) + 1; | ||
| 1281 | |||
| 1282 | for (i = 0; i < nsectors; i++) { | ||
| 1283 | |||
| 1284 | reg = GPMC_ECC_BCH_RESULT_0 + 16*i; | ||
| 1285 | |||
| 1286 | /* Read hw-computed remainder */ | ||
| 1287 | val1 = gpmc_read_reg(reg + 0); | ||
| 1288 | val2 = gpmc_read_reg(reg + 4); | ||
| 1289 | |||
| 1290 | /* | ||
| 1291 | * Add constant polynomial to remainder, in order to get an ecc | ||
| 1292 | * sequence of 0xFFs for a buffer filled with 0xFFs; and | ||
| 1293 | * left-justify the resulting polynomial. | ||
| 1294 | */ | ||
| 1295 | *ecc++ = 0x28 ^ ((val2 >> 12) & 0xFF); | ||
| 1296 | *ecc++ = 0x13 ^ ((val2 >> 4) & 0xFF); | ||
| 1297 | *ecc++ = 0xcc ^ (((val2 & 0xF) << 4)|((val1 >> 28) & 0xF)); | ||
| 1298 | *ecc++ = 0x39 ^ ((val1 >> 20) & 0xFF); | ||
| 1299 | *ecc++ = 0x96 ^ ((val1 >> 12) & 0xFF); | ||
| 1300 | *ecc++ = 0xac ^ ((val1 >> 4) & 0xFF); | ||
| 1301 | *ecc++ = 0x7f ^ ((val1 & 0xF) << 4); | ||
| 1302 | } | ||
| 1303 | |||
| 1304 | gpmc_ecc_used = -EINVAL; | ||
| 1305 | return 0; | ||
| 1306 | } | ||
| 1307 | EXPORT_SYMBOL_GPL(gpmc_calculate_ecc_bch4); | ||
| 1308 | |||
| 1309 | /** | ||
| 1310 | * gpmc_calculate_ecc_bch8 - Generate 13 ecc bytes per block of 512 data bytes | ||
| 1311 | * @cs: chip select number | ||
| 1312 | * @dat: The pointer to data on which ecc is computed | ||
| 1313 | * @ecc: The ecc output buffer | ||
| 1314 | */ | ||
| 1315 | int gpmc_calculate_ecc_bch8(int cs, const u_char *dat, u_char *ecc) | ||
| 1316 | { | ||
| 1317 | int i; | ||
| 1318 | unsigned long nsectors, reg, val1, val2, val3, val4; | ||
| 1319 | |||
| 1320 | if (gpmc_ecc_used != cs) | ||
| 1321 | return -EINVAL; | ||
| 1322 | |||
| 1323 | nsectors = ((gpmc_read_reg(GPMC_ECC_CONFIG) >> 4) & 0x7) + 1; | ||
| 1324 | |||
| 1325 | for (i = 0; i < nsectors; i++) { | ||
| 1326 | |||
| 1327 | reg = GPMC_ECC_BCH_RESULT_0 + 16*i; | ||
| 1328 | |||
| 1329 | /* Read hw-computed remainder */ | ||
| 1330 | val1 = gpmc_read_reg(reg + 0); | ||
| 1331 | val2 = gpmc_read_reg(reg + 4); | ||
| 1332 | val3 = gpmc_read_reg(reg + 8); | ||
| 1333 | val4 = gpmc_read_reg(reg + 12); | ||
| 1334 | |||
| 1335 | /* | ||
| 1336 | * Add constant polynomial to remainder, in order to get an ecc | ||
| 1337 | * sequence of 0xFFs for a buffer filled with 0xFFs. | ||
| 1338 | */ | ||
| 1339 | *ecc++ = 0xef ^ (val4 & 0xFF); | ||
| 1340 | *ecc++ = 0x51 ^ ((val3 >> 24) & 0xFF); | ||
| 1341 | *ecc++ = 0x2e ^ ((val3 >> 16) & 0xFF); | ||
| 1342 | *ecc++ = 0x09 ^ ((val3 >> 8) & 0xFF); | ||
| 1343 | *ecc++ = 0xed ^ (val3 & 0xFF); | ||
| 1344 | *ecc++ = 0x93 ^ ((val2 >> 24) & 0xFF); | ||
| 1345 | *ecc++ = 0x9a ^ ((val2 >> 16) & 0xFF); | ||
| 1346 | *ecc++ = 0xc2 ^ ((val2 >> 8) & 0xFF); | ||
| 1347 | *ecc++ = 0x97 ^ (val2 & 0xFF); | ||
| 1348 | *ecc++ = 0x79 ^ ((val1 >> 24) & 0xFF); | ||
| 1349 | *ecc++ = 0xe5 ^ ((val1 >> 16) & 0xFF); | ||
| 1350 | *ecc++ = 0x24 ^ ((val1 >> 8) & 0xFF); | ||
| 1351 | *ecc++ = 0xb5 ^ (val1 & 0xFF); | ||
| 1352 | } | ||
| 1353 | |||
| 1354 | gpmc_ecc_used = -EINVAL; | ||
| 1355 | return 0; | ||
| 1356 | } | ||
| 1357 | EXPORT_SYMBOL_GPL(gpmc_calculate_ecc_bch8); | ||
| 1358 | |||
| 1359 | #endif /* CONFIG_ARCH_OMAP3 */ | ||
diff --git a/arch/arm/plat-omap/include/plat/gpmc.h b/arch/arm/mach-omap2/gpmc.h index 2e6e2597178c..79f4dfc2adb3 100644 --- a/arch/arm/plat-omap/include/plat/gpmc.h +++ b/arch/arm/mach-omap2/gpmc.h | |||
| @@ -11,6 +11,8 @@ | |||
| 11 | #ifndef __OMAP2_GPMC_H | 11 | #ifndef __OMAP2_GPMC_H |
| 12 | #define __OMAP2_GPMC_H | 12 | #define __OMAP2_GPMC_H |
| 13 | 13 | ||
| 14 | #include <linux/platform_data/mtd-nand-omap2.h> | ||
| 15 | |||
| 14 | /* Maximum Number of Chip Selects */ | 16 | /* Maximum Number of Chip Selects */ |
| 15 | #define GPMC_CS_NUM 8 | 17 | #define GPMC_CS_NUM 8 |
| 16 | 18 | ||
| @@ -32,15 +34,6 @@ | |||
| 32 | #define GPMC_SET_IRQ_STATUS 0x00000004 | 34 | #define GPMC_SET_IRQ_STATUS 0x00000004 |
| 33 | #define GPMC_CONFIG_WP 0x00000005 | 35 | #define GPMC_CONFIG_WP 0x00000005 |
| 34 | 36 | ||
| 35 | #define GPMC_GET_IRQ_STATUS 0x00000006 | ||
| 36 | #define GPMC_PREFETCH_FIFO_CNT 0x00000007 /* bytes available in FIFO for r/w */ | ||
| 37 | #define GPMC_PREFETCH_COUNT 0x00000008 /* remaining bytes to be read/write*/ | ||
| 38 | #define GPMC_STATUS_BUFFER 0x00000009 /* 1: buffer is available to write */ | ||
| 39 | |||
| 40 | #define GPMC_NAND_COMMAND 0x0000000a | ||
| 41 | #define GPMC_NAND_ADDRESS 0x0000000b | ||
| 42 | #define GPMC_NAND_DATA 0x0000000c | ||
| 43 | |||
| 44 | #define GPMC_ENABLE_IRQ 0x0000000d | 37 | #define GPMC_ENABLE_IRQ 0x0000000d |
| 45 | 38 | ||
| 46 | /* ECC commands */ | 39 | /* ECC commands */ |
| @@ -76,25 +69,10 @@ | |||
| 76 | #define GPMC_DEVICETYPE_NOR 0 | 69 | #define GPMC_DEVICETYPE_NOR 0 |
| 77 | #define GPMC_DEVICETYPE_NAND 2 | 70 | #define GPMC_DEVICETYPE_NAND 2 |
| 78 | #define GPMC_CONFIG_WRITEPROTECT 0x00000010 | 71 | #define GPMC_CONFIG_WRITEPROTECT 0x00000010 |
| 79 | #define GPMC_STATUS_BUFF_EMPTY 0x00000001 | ||
| 80 | #define WR_RD_PIN_MONITORING 0x00600000 | 72 | #define WR_RD_PIN_MONITORING 0x00600000 |
| 81 | #define GPMC_PREFETCH_STATUS_FIFO_CNT(val) ((val >> 24) & 0x7F) | ||
| 82 | #define GPMC_PREFETCH_STATUS_COUNT(val) (val & 0x00003fff) | ||
| 83 | #define GPMC_IRQ_FIFOEVENTENABLE 0x01 | 73 | #define GPMC_IRQ_FIFOEVENTENABLE 0x01 |
| 84 | #define GPMC_IRQ_COUNT_EVENT 0x02 | 74 | #define GPMC_IRQ_COUNT_EVENT 0x02 |
| 85 | 75 | ||
| 86 | #define PREFETCH_FIFOTHRESHOLD_MAX 0x40 | ||
| 87 | #define PREFETCH_FIFOTHRESHOLD(val) ((val) << 8) | ||
| 88 | |||
| 89 | enum omap_ecc { | ||
| 90 | /* 1-bit ecc: stored at end of spare area */ | ||
| 91 | OMAP_ECC_HAMMING_CODE_DEFAULT = 0, /* Default, s/w method */ | ||
| 92 | OMAP_ECC_HAMMING_CODE_HW, /* gpmc to detect the error */ | ||
| 93 | /* 1-bit ecc: stored at beginning of spare area as romcode */ | ||
| 94 | OMAP_ECC_HAMMING_CODE_HW_ROMCODE, /* gpmc method & romcode layout */ | ||
| 95 | OMAP_ECC_BCH4_CODE_HW, /* 4-bit BCH ecc code */ | ||
| 96 | OMAP_ECC_BCH8_CODE_HW, /* 8-bit BCH ecc code */ | ||
| 97 | }; | ||
| 98 | 76 | ||
| 99 | /* | 77 | /* |
| 100 | * Note that all values in this struct are in nanoseconds except sync_clk | 78 | * Note that all values in this struct are in nanoseconds except sync_clk |
| @@ -133,22 +111,6 @@ struct gpmc_timings { | |||
| 133 | u16 wr_data_mux_bus; /* WRDATAONADMUXBUS */ | 111 | u16 wr_data_mux_bus; /* WRDATAONADMUXBUS */ |
| 134 | }; | 112 | }; |
| 135 | 113 | ||
| 136 | struct gpmc_nand_regs { | ||
| 137 | void __iomem *gpmc_status; | ||
| 138 | void __iomem *gpmc_nand_command; | ||
| 139 | void __iomem *gpmc_nand_address; | ||
| 140 | void __iomem *gpmc_nand_data; | ||
| 141 | void __iomem *gpmc_prefetch_config1; | ||
| 142 | void __iomem *gpmc_prefetch_config2; | ||
| 143 | void __iomem *gpmc_prefetch_control; | ||
| 144 | void __iomem *gpmc_prefetch_status; | ||
| 145 | void __iomem *gpmc_ecc_config; | ||
| 146 | void __iomem *gpmc_ecc_control; | ||
| 147 | void __iomem *gpmc_ecc_size_config; | ||
| 148 | void __iomem *gpmc_ecc1_result; | ||
| 149 | void __iomem *gpmc_bch_result0; | ||
| 150 | }; | ||
| 151 | |||
| 152 | extern void gpmc_update_nand_reg(struct gpmc_nand_regs *reg, int cs); | 114 | extern void gpmc_update_nand_reg(struct gpmc_nand_regs *reg, int cs); |
| 153 | extern int gpmc_get_client_irq(unsigned irq_config); | 115 | extern int gpmc_get_client_irq(unsigned irq_config); |
| 154 | 116 | ||
| @@ -160,31 +122,14 @@ extern unsigned long gpmc_get_fclk_period(void); | |||
| 160 | 122 | ||
| 161 | extern void gpmc_cs_write_reg(int cs, int idx, u32 val); | 123 | extern void gpmc_cs_write_reg(int cs, int idx, u32 val); |
| 162 | extern u32 gpmc_cs_read_reg(int cs, int idx); | 124 | extern u32 gpmc_cs_read_reg(int cs, int idx); |
| 163 | extern int gpmc_cs_calc_divider(int cs, unsigned int sync_clk); | 125 | extern int gpmc_calc_divider(unsigned int sync_clk); |
| 164 | extern int gpmc_cs_set_timings(int cs, const struct gpmc_timings *t); | 126 | extern int gpmc_cs_set_timings(int cs, const struct gpmc_timings *t); |
| 165 | extern int gpmc_cs_request(int cs, unsigned long size, unsigned long *base); | 127 | extern int gpmc_cs_request(int cs, unsigned long size, unsigned long *base); |
| 166 | extern void gpmc_cs_free(int cs); | 128 | extern void gpmc_cs_free(int cs); |
| 167 | extern int gpmc_cs_set_reserved(int cs, int reserved); | 129 | extern int gpmc_cs_set_reserved(int cs, int reserved); |
| 168 | extern int gpmc_cs_reserved(int cs); | 130 | extern int gpmc_cs_reserved(int cs); |
| 169 | extern int gpmc_prefetch_enable(int cs, int fifo_th, int dma_mode, | ||
| 170 | unsigned int u32_count, int is_write); | ||
| 171 | extern int gpmc_prefetch_reset(int cs); | ||
| 172 | extern void omap3_gpmc_save_context(void); | 131 | extern void omap3_gpmc_save_context(void); |
| 173 | extern void omap3_gpmc_restore_context(void); | 132 | extern void omap3_gpmc_restore_context(void); |
| 174 | extern int gpmc_read_status(int cmd); | ||
| 175 | extern int gpmc_cs_configure(int cs, int cmd, int wval); | 133 | extern int gpmc_cs_configure(int cs, int cmd, int wval); |
| 176 | extern int gpmc_nand_read(int cs, int cmd); | ||
| 177 | extern int gpmc_nand_write(int cs, int cmd, int wval); | ||
| 178 | |||
| 179 | int gpmc_enable_hwecc(int cs, int mode, int dev_width, int ecc_size); | ||
| 180 | int gpmc_calculate_ecc(int cs, const u_char *dat, u_char *ecc_code); | ||
| 181 | |||
| 182 | #ifdef CONFIG_ARCH_OMAP3 | ||
| 183 | int gpmc_init_hwecc_bch(int cs, int nsectors, int nerrors); | ||
| 184 | int gpmc_enable_hwecc_bch(int cs, int mode, int dev_width, int nsectors, | ||
| 185 | int nerrors); | ||
| 186 | int gpmc_calculate_ecc_bch4(int cs, const u_char *dat, u_char *ecc); | ||
| 187 | int gpmc_calculate_ecc_bch8(int cs, const u_char *dat, u_char *ecc); | ||
| 188 | #endif /* CONFIG_ARCH_OMAP3 */ | ||
| 189 | 134 | ||
| 190 | #endif | 135 | #endif |
diff --git a/arch/arm/mach-omap2/hdq1w.c b/arch/arm/mach-omap2/hdq1w.c index e003f2bba30c..3da8900598c8 100644 --- a/arch/arm/mach-omap2/hdq1w.c +++ b/arch/arm/mach-omap2/hdq1w.c | |||
| @@ -27,8 +27,8 @@ | |||
| 27 | #include <linux/err.h> | 27 | #include <linux/err.h> |
| 28 | #include <linux/platform_device.h> | 28 | #include <linux/platform_device.h> |
| 29 | 29 | ||
| 30 | #include <plat/omap_hwmod.h> | 30 | #include "omap_hwmod.h" |
| 31 | #include <plat/omap_device.h> | 31 | #include "omap_device.h" |
| 32 | #include "hdq1w.h" | 32 | #include "hdq1w.h" |
| 33 | 33 | ||
| 34 | #include "common.h" | 34 | #include "common.h" |
diff --git a/arch/arm/mach-omap2/hdq1w.h b/arch/arm/mach-omap2/hdq1w.h index 0c1efc846d8d..c7e08d2a7a46 100644 --- a/arch/arm/mach-omap2/hdq1w.h +++ b/arch/arm/mach-omap2/hdq1w.h | |||
| @@ -21,7 +21,7 @@ | |||
| 21 | #ifndef ARCH_ARM_MACH_OMAP2_HDQ1W_H | 21 | #ifndef ARCH_ARM_MACH_OMAP2_HDQ1W_H |
| 22 | #define ARCH_ARM_MACH_OMAP2_HDQ1W_H | 22 | #define ARCH_ARM_MACH_OMAP2_HDQ1W_H |
| 23 | 23 | ||
| 24 | #include <plat/omap_hwmod.h> | 24 | #include "omap_hwmod.h" |
| 25 | 25 | ||
| 26 | /* | 26 | /* |
| 27 | * XXX A future cleanup patch should modify | 27 | * XXX A future cleanup patch should modify |
diff --git a/arch/arm/mach-omap2/hsmmc.c b/arch/arm/mach-omap2/hsmmc.c index 4d3a6324155f..4a964338992a 100644 --- a/arch/arm/mach-omap2/hsmmc.c +++ b/arch/arm/mach-omap2/hsmmc.c | |||
| @@ -14,14 +14,14 @@ | |||
| 14 | #include <linux/string.h> | 14 | #include <linux/string.h> |
| 15 | #include <linux/delay.h> | 15 | #include <linux/delay.h> |
| 16 | #include <linux/gpio.h> | 16 | #include <linux/gpio.h> |
| 17 | #include <mach/hardware.h> | ||
| 18 | #include <linux/platform_data/gpio-omap.h> | 17 | #include <linux/platform_data/gpio-omap.h> |
| 19 | 18 | ||
| 20 | #include <plat/mmc.h> | 19 | #include "soc.h" |
| 21 | #include <plat/omap-pm.h> | 20 | #include "omap_device.h" |
| 22 | #include <plat/omap_device.h> | 21 | #include "omap-pm.h" |
| 23 | 22 | ||
| 24 | #include "mux.h" | 23 | #include "mux.h" |
| 24 | #include "mmc.h" | ||
| 25 | #include "hsmmc.h" | 25 | #include "hsmmc.h" |
| 26 | #include "control.h" | 26 | #include "control.h" |
| 27 | 27 | ||
diff --git a/arch/arm/mach-omap2/hwspinlock.c b/arch/arm/mach-omap2/hwspinlock.c index 8763c8520dc2..1df9b5feda16 100644 --- a/arch/arm/mach-omap2/hwspinlock.c +++ b/arch/arm/mach-omap2/hwspinlock.c | |||
| @@ -21,8 +21,8 @@ | |||
| 21 | #include <linux/err.h> | 21 | #include <linux/err.h> |
| 22 | #include <linux/hwspinlock.h> | 22 | #include <linux/hwspinlock.h> |
| 23 | 23 | ||
| 24 | #include <plat/omap_hwmod.h> | 24 | #include "omap_hwmod.h" |
| 25 | #include <plat/omap_device.h> | 25 | #include "omap_device.h" |
| 26 | 26 | ||
| 27 | static struct hwspinlock_pdata omap_hwspinlock_pdata __initdata = { | 27 | static struct hwspinlock_pdata omap_hwspinlock_pdata __initdata = { |
| 28 | .base_id = 0, | 28 | .base_id = 0, |
diff --git a/arch/arm/mach-omap2/i2c.c b/arch/arm/mach-omap2/i2c.c index fc57e67b321f..4e63097e3cd8 100644 --- a/arch/arm/mach-omap2/i2c.c +++ b/arch/arm/mach-omap2/i2c.c | |||
| @@ -19,11 +19,13 @@ | |||
| 19 | * | 19 | * |
| 20 | */ | 20 | */ |
| 21 | 21 | ||
| 22 | #include <plat/i2c.h> | 22 | #include "soc.h" |
| 23 | #include "common.h" | 23 | #include "common.h" |
| 24 | #include <plat/omap_hwmod.h> | 24 | #include "omap_hwmod.h" |
| 25 | #include "omap_device.h" | ||
| 25 | 26 | ||
| 26 | #include "mux.h" | 27 | #include "mux.h" |
| 28 | #include "i2c.h" | ||
| 27 | 29 | ||
| 28 | /* In register I2C_CON, Bit 15 is the I2C enable bit */ | 30 | /* In register I2C_CON, Bit 15 is the I2C enable bit */ |
| 29 | #define I2C_EN BIT(15) | 31 | #define I2C_EN BIT(15) |
| @@ -33,7 +35,9 @@ | |||
| 33 | /* Maximum microseconds to wait for OMAP module to softreset */ | 35 | /* Maximum microseconds to wait for OMAP module to softreset */ |
| 34 | #define MAX_MODULE_SOFTRESET_WAIT 10000 | 36 | #define MAX_MODULE_SOFTRESET_WAIT 10000 |
| 35 | 37 | ||
| 36 | void __init omap2_i2c_mux_pins(int bus_id) | 38 | #define MAX_OMAP_I2C_HWMOD_NAME_LEN 16 |
| 39 | |||
| 40 | static void __init omap2_i2c_mux_pins(int bus_id) | ||
| 37 | { | 41 | { |
| 38 | char mux_name[sizeof("i2c2_scl.i2c2_scl")]; | 42 | char mux_name[sizeof("i2c2_scl.i2c2_scl")]; |
| 39 | 43 | ||
| @@ -104,3 +108,62 @@ int omap_i2c_reset(struct omap_hwmod *oh) | |||
| 104 | 108 | ||
| 105 | return 0; | 109 | return 0; |
| 106 | } | 110 | } |
| 111 | |||
| 112 | static int __init omap_i2c_nr_ports(void) | ||
| 113 | { | ||
| 114 | int ports = 0; | ||
| 115 | |||
| 116 | if (cpu_is_omap24xx()) | ||
| 117 | ports = 2; | ||
| 118 | else if (cpu_is_omap34xx()) | ||
| 119 | ports = 3; | ||
| 120 | else if (cpu_is_omap44xx()) | ||
| 121 | ports = 4; | ||
| 122 | return ports; | ||
| 123 | } | ||
| 124 | |||
| 125 | static const char name[] = "omap_i2c"; | ||
| 126 | |||
| 127 | int __init omap_i2c_add_bus(struct omap_i2c_bus_platform_data *i2c_pdata, | ||
| 128 | int bus_id) | ||
| 129 | { | ||
| 130 | int l; | ||
| 131 | struct omap_hwmod *oh; | ||
| 132 | struct platform_device *pdev; | ||
| 133 | char oh_name[MAX_OMAP_I2C_HWMOD_NAME_LEN]; | ||
| 134 | struct omap_i2c_bus_platform_data *pdata; | ||
| 135 | struct omap_i2c_dev_attr *dev_attr; | ||
| 136 | |||
| 137 | if (bus_id > omap_i2c_nr_ports()) | ||
| 138 | return -EINVAL; | ||
| 139 | |||
| 140 | omap2_i2c_mux_pins(bus_id); | ||
| 141 | |||
| 142 | l = snprintf(oh_name, MAX_OMAP_I2C_HWMOD_NAME_LEN, "i2c%d", bus_id); | ||
| 143 | WARN(l >= MAX_OMAP_I2C_HWMOD_NAME_LEN, | ||
| 144 | "String buffer overflow in I2C%d device setup\n", bus_id); | ||
| 145 | oh = omap_hwmod_lookup(oh_name); | ||
| 146 | if (!oh) { | ||
| 147 | pr_err("Could not look up %s\n", oh_name); | ||
| 148 | return -EEXIST; | ||
| 149 | } | ||
| 150 | |||
| 151 | pdata = i2c_pdata; | ||
| 152 | /* | ||
| 153 | * pass the hwmod class's CPU-specific knowledge of I2C IP revision in | ||
| 154 | * use, and functionality implementation flags, up to the OMAP I2C | ||
| 155 | * driver via platform data | ||
| 156 | */ | ||
| 157 | pdata->rev = oh->class->rev; | ||
| 158 | |||
| 159 | dev_attr = (struct omap_i2c_dev_attr *)oh->dev_attr; | ||
| 160 | pdata->flags = dev_attr->flags; | ||
| 161 | |||
| 162 | pdev = omap_device_build(name, bus_id, oh, pdata, | ||
| 163 | sizeof(struct omap_i2c_bus_platform_data), | ||
| 164 | NULL, 0, 0); | ||
| 165 | WARN(IS_ERR(pdev), "Could not build omap_device for %s\n", name); | ||
| 166 | |||
| 167 | return PTR_RET(pdev); | ||
| 168 | } | ||
| 169 | |||
diff --git a/arch/arm/mach-omap2/i2c.h b/arch/arm/mach-omap2/i2c.h new file mode 100644 index 000000000000..42b6f2e7d190 --- /dev/null +++ b/arch/arm/mach-omap2/i2c.h | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | /* | ||
| 2 | * Helper module for board specific I2C bus registration | ||
| 3 | * | ||
| 4 | * Copyright (C) 2009 Nokia Corporation. | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or | ||
| 7 | * modify it under the terms of the GNU General Public License | ||
| 8 | * version 2 as published by the Free Software Foundation. | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, but | ||
| 11 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 13 | * General Public License for more details. | ||
| 14 | * | ||
| 15 | * You should have received a copy of the GNU General Public License | ||
| 16 | * along with this program; if not, write to the Free Software | ||
| 17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
| 18 | * 02110-1301 USA | ||
| 19 | * | ||
| 20 | */ | ||
| 21 | |||
| 22 | #include <plat/i2c.h> | ||
| 23 | |||
| 24 | #ifndef __MACH_OMAP2_I2C_H | ||
| 25 | #define __MACH_OMAP2_I2C_H | ||
| 26 | |||
| 27 | /** | ||
| 28 | * i2c_dev_attr - OMAP I2C controller device attributes for omap_hwmod | ||
| 29 | * @fifo_depth: total controller FIFO size (in bytes) | ||
| 30 | * @flags: differences in hardware support capability | ||
| 31 | * | ||
| 32 | * @fifo_depth represents what exists on the hardware, not what is | ||
| 33 | * actually configured at runtime by the device driver. | ||
| 34 | */ | ||
| 35 | struct omap_i2c_dev_attr { | ||
| 36 | u8 fifo_depth; | ||
| 37 | u32 flags; | ||
| 38 | }; | ||
| 39 | |||
| 40 | int omap_i2c_reset(struct omap_hwmod *oh); | ||
| 41 | |||
| 42 | #endif /* __MACH_OMAP2_I2C_H */ | ||
diff --git a/arch/arm/mach-omap2/include/mach/debug-macro.S b/arch/arm/mach-omap2/include/mach/debug-macro.S index 93d10de7129f..cfaed13d0040 100644 --- a/arch/arm/mach-omap2/include/mach/debug-macro.S +++ b/arch/arm/mach-omap2/include/mach/debug-macro.S | |||
| @@ -13,7 +13,7 @@ | |||
| 13 | 13 | ||
| 14 | #include <linux/serial_reg.h> | 14 | #include <linux/serial_reg.h> |
| 15 | 15 | ||
| 16 | #include <plat/serial.h> | 16 | #include <mach/serial.h> |
| 17 | 17 | ||
| 18 | #define UART_OFFSET(addr) ((addr) & 0x00ffffff) | 18 | #define UART_OFFSET(addr) ((addr) & 0x00ffffff) |
| 19 | 19 | ||
diff --git a/arch/arm/mach-omap2/include/mach/gpio.h b/arch/arm/mach-omap2/include/mach/gpio.h deleted file mode 100644 index 5621cc59c9f4..000000000000 --- a/arch/arm/mach-omap2/include/mach/gpio.h +++ /dev/null | |||
| @@ -1,3 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/mach-omap2/include/mach/gpio.h | ||
| 3 | */ | ||
diff --git a/arch/arm/plat-omap/include/plat/serial.h b/arch/arm/mach-omap2/include/mach/serial.h index 65fce44dce34..70eda00db7a4 100644 --- a/arch/arm/plat-omap/include/plat/serial.h +++ b/arch/arm/mach-omap2/include/mach/serial.h | |||
| @@ -1,6 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * arch/arm/plat-omap/include/mach/serial.h | ||
| 3 | * | ||
| 4 | * Copyright (C) 2009 Texas Instruments | 2 | * Copyright (C) 2009 Texas Instruments |
| 5 | * Added OMAP4 support- Santosh Shilimkar <santosh.shilimkar@ti.com> | 3 | * Added OMAP4 support- Santosh Shilimkar <santosh.shilimkar@ti.com> |
| 6 | * | 4 | * |
| @@ -10,11 +8,6 @@ | |||
| 10 | * GNU General Public License for more details. | 8 | * GNU General Public License for more details. |
| 11 | */ | 9 | */ |
| 12 | 10 | ||
| 13 | #ifndef __ASM_ARCH_SERIAL_H | ||
| 14 | #define __ASM_ARCH_SERIAL_H | ||
| 15 | |||
| 16 | #include <linux/init.h> | ||
| 17 | |||
| 18 | /* | 11 | /* |
| 19 | * Memory entry used for the DEBUG_LL UART configuration, relative to | 12 | * Memory entry used for the DEBUG_LL UART configuration, relative to |
| 20 | * start of RAM. See also uncompress.h and debug-macro.S. | 13 | * start of RAM. See also uncompress.h and debug-macro.S. |
| @@ -29,11 +22,6 @@ | |||
| 29 | */ | 22 | */ |
| 30 | #define OMAP_UART_INFO_OFS 0x3ffc | 23 | #define OMAP_UART_INFO_OFS 0x3ffc |
| 31 | 24 | ||
| 32 | /* OMAP1 serial ports */ | ||
| 33 | #define OMAP1_UART1_BASE 0xfffb0000 | ||
| 34 | #define OMAP1_UART2_BASE 0xfffb0800 | ||
| 35 | #define OMAP1_UART3_BASE 0xfffb9800 | ||
| 36 | |||
| 37 | /* OMAP2 serial ports */ | 25 | /* OMAP2 serial ports */ |
| 38 | #define OMAP2_UART1_BASE 0x4806a000 | 26 | #define OMAP2_UART1_BASE 0x4806a000 |
| 39 | #define OMAP2_UART2_BASE 0x4806c000 | 27 | #define OMAP2_UART2_BASE 0x4806c000 |
| @@ -76,20 +64,14 @@ | |||
| 76 | #define ZOOM_UART_VIRT 0xfa400000 | 64 | #define ZOOM_UART_VIRT 0xfa400000 |
| 77 | 65 | ||
| 78 | #define OMAP_PORT_SHIFT 2 | 66 | #define OMAP_PORT_SHIFT 2 |
| 79 | #define OMAP7XX_PORT_SHIFT 0 | ||
| 80 | #define ZOOM_PORT_SHIFT 1 | 67 | #define ZOOM_PORT_SHIFT 1 |
| 81 | 68 | ||
| 82 | #define OMAP1510_BASE_BAUD (12000000/16) | ||
| 83 | #define OMAP16XX_BASE_BAUD (48000000/16) | ||
| 84 | #define OMAP24XX_BASE_BAUD (48000000/16) | 69 | #define OMAP24XX_BASE_BAUD (48000000/16) |
| 85 | 70 | ||
| 86 | /* | 71 | /* |
| 87 | * DEBUG_LL port encoding stored into the UART1 scratchpad register by | 72 | * DEBUG_LL port encoding stored into the UART1 scratchpad register by |
| 88 | * decomp_setup in uncompress.h | 73 | * decomp_setup in uncompress.h |
| 89 | */ | 74 | */ |
| 90 | #define OMAP1UART1 11 | ||
| 91 | #define OMAP1UART2 12 | ||
| 92 | #define OMAP1UART3 13 | ||
| 93 | #define OMAP2UART1 21 | 75 | #define OMAP2UART1 21 |
| 94 | #define OMAP2UART2 22 | 76 | #define OMAP2UART2 22 |
| 95 | #define OMAP2UART3 23 | 77 | #define OMAP2UART3 23 |
| @@ -109,15 +91,6 @@ | |||
| 109 | #define OMAP5UART4 OMAP4UART4 | 91 | #define OMAP5UART4 OMAP4UART4 |
| 110 | #define ZOOM_UART 95 /* Only on zoom2/3 */ | 92 | #define ZOOM_UART 95 /* Only on zoom2/3 */ |
| 111 | 93 | ||
| 112 | /* This is only used by 8250.c for omap1510 */ | ||
| 113 | #define is_omap_port(pt) ({int __ret = 0; \ | ||
| 114 | if ((pt)->port.mapbase == OMAP1_UART1_BASE || \ | ||
| 115 | (pt)->port.mapbase == OMAP1_UART2_BASE || \ | ||
| 116 | (pt)->port.mapbase == OMAP1_UART3_BASE) \ | ||
| 117 | __ret = 1; \ | ||
| 118 | __ret; \ | ||
| 119 | }) | ||
| 120 | |||
| 121 | #ifndef __ASSEMBLER__ | 94 | #ifndef __ASSEMBLER__ |
| 122 | 95 | ||
| 123 | struct omap_board_data; | 96 | struct omap_board_data; |
| @@ -128,5 +101,3 @@ extern void omap_serial_board_init(struct omap_uart_port_info *platform_data); | |||
| 128 | extern void omap_serial_init_port(struct omap_board_data *bdata, | 101 | extern void omap_serial_init_port(struct omap_board_data *bdata, |
| 129 | struct omap_uart_port_info *platform_data); | 102 | struct omap_uart_port_info *platform_data); |
| 130 | #endif | 103 | #endif |
| 131 | |||
| 132 | #endif | ||
diff --git a/arch/arm/mach-omap2/include/mach/uncompress.h b/arch/arm/mach-omap2/include/mach/uncompress.h index 78e0557bfd4e..8e3546d3e041 100644 --- a/arch/arm/mach-omap2/include/mach/uncompress.h +++ b/arch/arm/mach-omap2/include/mach/uncompress.h | |||
| @@ -1,5 +1,176 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * arch/arm/mach-omap2/include/mach/uncompress.h | 2 | * arch/arm/plat-omap/include/mach/uncompress.h |
| 3 | * | ||
| 4 | * Serial port stubs for kernel decompress status messages | ||
| 5 | * | ||
| 6 | * Initially based on: | ||
| 7 | * linux-2.4.15-rmk1-dsplinux1.6/arch/arm/plat-omap/include/mach1510/uncompress.h | ||
| 8 | * Copyright (C) 2000 RidgeRun, Inc. | ||
| 9 | * Author: Greg Lonnon <glonnon@ridgerun.com> | ||
| 10 | * | ||
| 11 | * Rewritten by: | ||
| 12 | * Author: <source@mvista.com> | ||
| 13 | * 2004 (c) MontaVista Software, Inc. | ||
| 14 | * | ||
| 15 | * This file is licensed under the terms of the GNU General Public License | ||
| 16 | * version 2. This program is licensed "as is" without any warranty of any | ||
| 17 | * kind, whether express or implied. | ||
| 3 | */ | 18 | */ |
| 4 | 19 | ||
| 5 | #include <plat/uncompress.h> | 20 | #include <linux/types.h> |
| 21 | #include <linux/serial_reg.h> | ||
| 22 | |||
| 23 | #include <asm/memory.h> | ||
| 24 | #include <asm/mach-types.h> | ||
| 25 | |||
| 26 | #include <mach/serial.h> | ||
| 27 | |||
| 28 | #define MDR1_MODE_MASK 0x07 | ||
| 29 | |||
| 30 | volatile u8 *uart_base; | ||
| 31 | int uart_shift; | ||
| 32 | |||
| 33 | /* | ||
| 34 | * Store the DEBUG_LL uart number into memory. | ||
| 35 | * See also debug-macro.S, and serial.c for related code. | ||
| 36 | */ | ||
| 37 | static void set_omap_uart_info(unsigned char port) | ||
| 38 | { | ||
| 39 | /* | ||
| 40 | * Get address of some.bss variable and round it down | ||
| 41 | * a la CONFIG_AUTO_ZRELADDR. | ||
| 42 | */ | ||
| 43 | u32 ram_start = (u32)&uart_shift & 0xf8000000; | ||
| 44 | u32 *uart_info = (u32 *)(ram_start + OMAP_UART_INFO_OFS); | ||
| 45 | *uart_info = port; | ||
| 46 | } | ||
| 47 | |||
| 48 | static void putc(int c) | ||
| 49 | { | ||
| 50 | if (!uart_base) | ||
| 51 | return; | ||
| 52 | |||
| 53 | /* Check for UART 16x mode */ | ||
| 54 | if ((uart_base[UART_OMAP_MDR1 << uart_shift] & MDR1_MODE_MASK) != 0) | ||
| 55 | return; | ||
| 56 | |||
| 57 | while (!(uart_base[UART_LSR << uart_shift] & UART_LSR_THRE)) | ||
| 58 | barrier(); | ||
| 59 | uart_base[UART_TX << uart_shift] = c; | ||
| 60 | } | ||
| 61 | |||
| 62 | static inline void flush(void) | ||
| 63 | { | ||
| 64 | } | ||
| 65 | |||
| 66 | /* | ||
| 67 | * Macros to configure UART1 and debug UART | ||
| 68 | */ | ||
| 69 | #define _DEBUG_LL_ENTRY(mach, dbg_uart, dbg_shft, dbg_id) \ | ||
| 70 | if (machine_is_##mach()) { \ | ||
| 71 | uart_base = (volatile u8 *)(dbg_uart); \ | ||
| 72 | uart_shift = (dbg_shft); \ | ||
| 73 | port = (dbg_id); \ | ||
| 74 | set_omap_uart_info(port); \ | ||
| 75 | break; \ | ||
| 76 | } | ||
| 77 | |||
| 78 | #define DEBUG_LL_OMAP2(p, mach) \ | ||
| 79 | _DEBUG_LL_ENTRY(mach, OMAP2_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 80 | OMAP2UART##p) | ||
| 81 | |||
| 82 | #define DEBUG_LL_OMAP3(p, mach) \ | ||
| 83 | _DEBUG_LL_ENTRY(mach, OMAP3_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 84 | OMAP3UART##p) | ||
| 85 | |||
| 86 | #define DEBUG_LL_OMAP4(p, mach) \ | ||
| 87 | _DEBUG_LL_ENTRY(mach, OMAP4_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 88 | OMAP4UART##p) | ||
| 89 | |||
| 90 | #define DEBUG_LL_OMAP5(p, mach) \ | ||
| 91 | _DEBUG_LL_ENTRY(mach, OMAP5_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 92 | OMAP5UART##p) | ||
| 93 | /* Zoom2/3 shift is different for UART1 and external port */ | ||
| 94 | #define DEBUG_LL_ZOOM(mach) \ | ||
| 95 | _DEBUG_LL_ENTRY(mach, ZOOM_UART_BASE, ZOOM_PORT_SHIFT, ZOOM_UART) | ||
| 96 | |||
| 97 | #define DEBUG_LL_TI81XX(p, mach) \ | ||
| 98 | _DEBUG_LL_ENTRY(mach, TI81XX_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 99 | TI81XXUART##p) | ||
| 100 | |||
| 101 | #define DEBUG_LL_AM33XX(p, mach) \ | ||
| 102 | _DEBUG_LL_ENTRY(mach, AM33XX_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 103 | AM33XXUART##p) | ||
| 104 | |||
| 105 | static inline void arch_decomp_setup(void) | ||
| 106 | { | ||
| 107 | int port = 0; | ||
| 108 | |||
| 109 | /* | ||
| 110 | * Initialize the port based on the machine ID from the bootloader. | ||
| 111 | * Note that we're using macros here instead of switch statement | ||
| 112 | * as machine_is functions are optimized out for the boards that | ||
| 113 | * are not selected. | ||
| 114 | */ | ||
| 115 | do { | ||
| 116 | /* omap2 based boards using UART1 */ | ||
| 117 | DEBUG_LL_OMAP2(1, omap_2430sdp); | ||
| 118 | DEBUG_LL_OMAP2(1, omap_apollon); | ||
| 119 | DEBUG_LL_OMAP2(1, omap_h4); | ||
| 120 | |||
| 121 | /* omap2 based boards using UART3 */ | ||
| 122 | DEBUG_LL_OMAP2(3, nokia_n800); | ||
| 123 | DEBUG_LL_OMAP2(3, nokia_n810); | ||
| 124 | DEBUG_LL_OMAP2(3, nokia_n810_wimax); | ||
| 125 | |||
| 126 | /* omap3 based boards using UART1 */ | ||
| 127 | DEBUG_LL_OMAP2(1, omap3evm); | ||
| 128 | DEBUG_LL_OMAP3(1, omap_3430sdp); | ||
| 129 | DEBUG_LL_OMAP3(1, omap_3630sdp); | ||
| 130 | DEBUG_LL_OMAP3(1, omap3530_lv_som); | ||
| 131 | DEBUG_LL_OMAP3(1, omap3_torpedo); | ||
| 132 | |||
| 133 | /* omap3 based boards using UART3 */ | ||
| 134 | DEBUG_LL_OMAP3(3, cm_t35); | ||
| 135 | DEBUG_LL_OMAP3(3, cm_t3517); | ||
| 136 | DEBUG_LL_OMAP3(3, cm_t3730); | ||
| 137 | DEBUG_LL_OMAP3(3, craneboard); | ||
| 138 | DEBUG_LL_OMAP3(3, devkit8000); | ||
| 139 | DEBUG_LL_OMAP3(3, igep0020); | ||
| 140 | DEBUG_LL_OMAP3(3, igep0030); | ||
| 141 | DEBUG_LL_OMAP3(3, nokia_rm680); | ||
| 142 | DEBUG_LL_OMAP3(3, nokia_rm696); | ||
| 143 | DEBUG_LL_OMAP3(3, nokia_rx51); | ||
| 144 | DEBUG_LL_OMAP3(3, omap3517evm); | ||
| 145 | DEBUG_LL_OMAP3(3, omap3_beagle); | ||
| 146 | DEBUG_LL_OMAP3(3, omap3_pandora); | ||
| 147 | DEBUG_LL_OMAP3(3, omap_ldp); | ||
| 148 | DEBUG_LL_OMAP3(3, overo); | ||
| 149 | DEBUG_LL_OMAP3(3, touchbook); | ||
| 150 | |||
| 151 | /* omap4 based boards using UART3 */ | ||
| 152 | DEBUG_LL_OMAP4(3, omap_4430sdp); | ||
| 153 | DEBUG_LL_OMAP4(3, omap4_panda); | ||
| 154 | |||
| 155 | /* omap5 based boards using UART3 */ | ||
| 156 | DEBUG_LL_OMAP5(3, omap5_sevm); | ||
| 157 | |||
| 158 | /* zoom2/3 external uart */ | ||
| 159 | DEBUG_LL_ZOOM(omap_zoom2); | ||
| 160 | DEBUG_LL_ZOOM(omap_zoom3); | ||
| 161 | |||
| 162 | /* TI8168 base boards using UART3 */ | ||
| 163 | DEBUG_LL_TI81XX(3, ti8168evm); | ||
| 164 | |||
| 165 | /* TI8148 base boards using UART1 */ | ||
| 166 | DEBUG_LL_TI81XX(1, ti8148evm); | ||
| 167 | |||
| 168 | /* AM33XX base boards using UART1 */ | ||
| 169 | DEBUG_LL_AM33XX(1, am335xevm); | ||
| 170 | } while (0); | ||
| 171 | } | ||
| 172 | |||
| 173 | /* | ||
| 174 | * nothing to do | ||
| 175 | */ | ||
| 176 | #define arch_decomp_wdog() | ||
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c index 4234d28dc171..807b8d919f81 100644 --- a/arch/arm/mach-omap2/io.c +++ b/arch/arm/mach-omap2/io.c | |||
| @@ -25,14 +25,9 @@ | |||
| 25 | #include <asm/tlb.h> | 25 | #include <asm/tlb.h> |
| 26 | #include <asm/mach/map.h> | 26 | #include <asm/mach/map.h> |
| 27 | 27 | ||
| 28 | #include <plat/sram.h> | 28 | #include <plat-omap/dma-omap.h> |
| 29 | #include <plat/sdrc.h> | ||
| 30 | #include <plat/serial.h> | ||
| 31 | #include <plat/omap-pm.h> | ||
| 32 | #include <plat/omap_hwmod.h> | ||
| 33 | #include <plat/multi.h> | ||
| 34 | #include <plat/dma.h> | ||
| 35 | 29 | ||
| 30 | #include "omap_hwmod.h" | ||
| 36 | #include "soc.h" | 31 | #include "soc.h" |
| 37 | #include "iomap.h" | 32 | #include "iomap.h" |
| 38 | #include "voltage.h" | 33 | #include "voltage.h" |
| @@ -43,6 +38,10 @@ | |||
| 43 | #include "clock2xxx.h" | 38 | #include "clock2xxx.h" |
| 44 | #include "clock3xxx.h" | 39 | #include "clock3xxx.h" |
| 45 | #include "clock44xx.h" | 40 | #include "clock44xx.h" |
| 41 | #include "omap-pm.h" | ||
| 42 | #include "sdrc.h" | ||
| 43 | #include "serial.h" | ||
| 44 | #include "sram.h" | ||
| 46 | 45 | ||
| 47 | /* | 46 | /* |
| 48 | * The machine specific code may provide the extra mapping besides the | 47 | * The machine specific code may provide the extra mapping besides the |
| @@ -354,11 +353,6 @@ static int _set_hwmod_postsetup_state(struct omap_hwmod *oh, void *data) | |||
| 354 | return omap_hwmod_set_postsetup_state(oh, *(u8 *)data); | 353 | return omap_hwmod_set_postsetup_state(oh, *(u8 *)data); |
| 355 | } | 354 | } |
| 356 | 355 | ||
| 357 | static void __init omap_common_init_early(void) | ||
| 358 | { | ||
| 359 | omap_init_consistent_dma_size(); | ||
| 360 | } | ||
| 361 | |||
| 362 | static void __init omap_hwmod_init_postsetup(void) | 356 | static void __init omap_hwmod_init_postsetup(void) |
| 363 | { | 357 | { |
| 364 | u8 postsetup_state; | 358 | u8 postsetup_state; |
| @@ -379,7 +373,6 @@ void __init omap2420_init_early(void) | |||
| 379 | { | 373 | { |
| 380 | omap2_set_globals_242x(); | 374 | omap2_set_globals_242x(); |
| 381 | omap2xxx_check_revision(); | 375 | omap2xxx_check_revision(); |
| 382 | omap_common_init_early(); | ||
| 383 | omap2xxx_voltagedomains_init(); | 376 | omap2xxx_voltagedomains_init(); |
| 384 | omap242x_powerdomains_init(); | 377 | omap242x_powerdomains_init(); |
| 385 | omap242x_clockdomains_init(); | 378 | omap242x_clockdomains_init(); |
| @@ -401,7 +394,6 @@ void __init omap2430_init_early(void) | |||
| 401 | { | 394 | { |
| 402 | omap2_set_globals_243x(); | 395 | omap2_set_globals_243x(); |
| 403 | omap2xxx_check_revision(); | 396 | omap2xxx_check_revision(); |
| 404 | omap_common_init_early(); | ||
| 405 | omap2xxx_voltagedomains_init(); | 397 | omap2xxx_voltagedomains_init(); |
| 406 | omap243x_powerdomains_init(); | 398 | omap243x_powerdomains_init(); |
| 407 | omap243x_clockdomains_init(); | 399 | omap243x_clockdomains_init(); |
| @@ -428,7 +420,6 @@ void __init omap3_init_early(void) | |||
| 428 | omap2_set_globals_3xxx(); | 420 | omap2_set_globals_3xxx(); |
| 429 | omap3xxx_check_revision(); | 421 | omap3xxx_check_revision(); |
| 430 | omap3xxx_check_features(); | 422 | omap3xxx_check_features(); |
| 431 | omap_common_init_early(); | ||
| 432 | omap3xxx_voltagedomains_init(); | 423 | omap3xxx_voltagedomains_init(); |
| 433 | omap3xxx_powerdomains_init(); | 424 | omap3xxx_powerdomains_init(); |
| 434 | omap3xxx_clockdomains_init(); | 425 | omap3xxx_clockdomains_init(); |
| @@ -462,7 +453,6 @@ void __init ti81xx_init_early(void) | |||
| 462 | omap2_set_globals_ti81xx(); | 453 | omap2_set_globals_ti81xx(); |
| 463 | omap3xxx_check_revision(); | 454 | omap3xxx_check_revision(); |
| 464 | ti81xx_check_features(); | 455 | ti81xx_check_features(); |
| 465 | omap_common_init_early(); | ||
| 466 | omap3xxx_voltagedomains_init(); | 456 | omap3xxx_voltagedomains_init(); |
| 467 | omap3xxx_powerdomains_init(); | 457 | omap3xxx_powerdomains_init(); |
| 468 | omap3xxx_clockdomains_init(); | 458 | omap3xxx_clockdomains_init(); |
| @@ -520,7 +510,6 @@ void __init am33xx_init_early(void) | |||
| 520 | omap2_set_globals_am33xx(); | 510 | omap2_set_globals_am33xx(); |
| 521 | omap3xxx_check_revision(); | 511 | omap3xxx_check_revision(); |
| 522 | ti81xx_check_features(); | 512 | ti81xx_check_features(); |
| 523 | omap_common_init_early(); | ||
| 524 | am33xx_voltagedomains_init(); | 513 | am33xx_voltagedomains_init(); |
| 525 | am33xx_powerdomains_init(); | 514 | am33xx_powerdomains_init(); |
| 526 | am33xx_clockdomains_init(); | 515 | am33xx_clockdomains_init(); |
| @@ -536,7 +525,6 @@ void __init omap4430_init_early(void) | |||
| 536 | omap2_set_globals_443x(); | 525 | omap2_set_globals_443x(); |
| 537 | omap4xxx_check_revision(); | 526 | omap4xxx_check_revision(); |
| 538 | omap4xxx_check_features(); | 527 | omap4xxx_check_features(); |
| 539 | omap_common_init_early(); | ||
| 540 | omap44xx_voltagedomains_init(); | 528 | omap44xx_voltagedomains_init(); |
| 541 | omap44xx_powerdomains_init(); | 529 | omap44xx_powerdomains_init(); |
| 542 | omap44xx_clockdomains_init(); | 530 | omap44xx_clockdomains_init(); |
| @@ -558,7 +546,6 @@ void __init omap5_init_early(void) | |||
| 558 | { | 546 | { |
| 559 | omap2_set_globals_5xxx(); | 547 | omap2_set_globals_5xxx(); |
| 560 | omap5xxx_check_revision(); | 548 | omap5xxx_check_revision(); |
| 561 | omap_common_init_early(); | ||
| 562 | } | 549 | } |
| 563 | #endif | 550 | #endif |
| 564 | 551 | ||
diff --git a/arch/arm/mach-omap2/mcbsp.c b/arch/arm/mach-omap2/mcbsp.c index 37f8f948047b..a106c75c5338 100644 --- a/arch/arm/mach-omap2/mcbsp.c +++ b/arch/arm/mach-omap2/mcbsp.c | |||
| @@ -19,11 +19,12 @@ | |||
| 19 | #include <linux/platform_device.h> | 19 | #include <linux/platform_device.h> |
| 20 | #include <linux/slab.h> | 20 | #include <linux/slab.h> |
| 21 | #include <linux/platform_data/asoc-ti-mcbsp.h> | 21 | #include <linux/platform_data/asoc-ti-mcbsp.h> |
| 22 | |||
| 23 | #include <plat/dma.h> | ||
| 24 | #include <plat/omap_device.h> | ||
| 25 | #include <linux/pm_runtime.h> | 22 | #include <linux/pm_runtime.h> |
| 26 | 23 | ||
| 24 | #include <plat-omap/dma-omap.h> | ||
| 25 | |||
| 26 | #include "omap_device.h" | ||
| 27 | |||
| 27 | /* | 28 | /* |
| 28 | * FIXME: Find a mechanism to enable/disable runtime the McBSP ICLK autoidle. | 29 | * FIXME: Find a mechanism to enable/disable runtime the McBSP ICLK autoidle. |
| 29 | * Sidetone needs non-gated ICLK and sidetone autoidle is broken. | 30 | * Sidetone needs non-gated ICLK and sidetone autoidle is broken. |
diff --git a/arch/arm/mach-omap2/mmc.h b/arch/arm/mach-omap2/mmc.h new file mode 100644 index 000000000000..0cd4b089da9c --- /dev/null +++ b/arch/arm/mach-omap2/mmc.h | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | #include <linux/mmc/host.h> | ||
| 2 | #include <linux/platform_data/mmc-omap.h> | ||
| 3 | |||
| 4 | #define OMAP24XX_NR_MMC 2 | ||
| 5 | #define OMAP2420_MMC_SIZE OMAP1_MMC_SIZE | ||
| 6 | #define OMAP2_MMC1_BASE 0x4809c000 | ||
| 7 | |||
| 8 | #define OMAP4_MMC_REG_OFFSET 0x100 | ||
| 9 | |||
| 10 | #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) | ||
| 11 | void omap242x_init_mmc(struct omap_mmc_platform_data **mmc_data); | ||
| 12 | #else | ||
| 13 | static inline void omap242x_init_mmc(struct omap_mmc_platform_data **mmc_data) | ||
| 14 | { | ||
| 15 | } | ||
| 16 | #endif | ||
| 17 | |||
| 18 | struct omap_hwmod; | ||
| 19 | int omap_msdi_reset(struct omap_hwmod *oh); | ||
| 20 | |||
| 21 | /* called from board-specific card detection service routine */ | ||
| 22 | extern void omap_mmc_notify_cover_event(struct device *dev, int slot, | ||
| 23 | int is_closed); | ||
diff --git a/arch/arm/mach-omap2/msdi.c b/arch/arm/mach-omap2/msdi.c index 9e57b4aadb06..627e97e30743 100644 --- a/arch/arm/mach-omap2/msdi.c +++ b/arch/arm/mach-omap2/msdi.c | |||
| @@ -25,13 +25,12 @@ | |||
| 25 | #include <linux/err.h> | 25 | #include <linux/err.h> |
| 26 | #include <linux/platform_data/gpio-omap.h> | 26 | #include <linux/platform_data/gpio-omap.h> |
| 27 | 27 | ||
| 28 | #include <plat/omap_hwmod.h> | ||
| 29 | #include <plat/omap_device.h> | ||
| 30 | #include <plat/mmc.h> | ||
| 31 | |||
| 32 | #include "common.h" | 28 | #include "common.h" |
| 33 | #include "control.h" | 29 | #include "control.h" |
| 30 | #include "omap_hwmod.h" | ||
| 31 | #include "omap_device.h" | ||
| 34 | #include "mux.h" | 32 | #include "mux.h" |
| 33 | #include "mmc.h" | ||
| 35 | 34 | ||
| 36 | /* | 35 | /* |
| 37 | * MSDI_CON_OFFSET: offset in bytes of the MSDI IP block's CON register | 36 | * MSDI_CON_OFFSET: offset in bytes of the MSDI IP block's CON register |
diff --git a/arch/arm/mach-omap2/mux.c b/arch/arm/mach-omap2/mux.c index 701e17cba468..26126343d6ac 100644 --- a/arch/arm/mach-omap2/mux.c +++ b/arch/arm/mach-omap2/mux.c | |||
| @@ -36,8 +36,9 @@ | |||
| 36 | #include <linux/interrupt.h> | 36 | #include <linux/interrupt.h> |
| 37 | 37 | ||
| 38 | 38 | ||
| 39 | #include <plat/omap_hwmod.h> | 39 | #include "omap_hwmod.h" |
| 40 | 40 | ||
| 41 | #include "soc.h" | ||
| 41 | #include "control.h" | 42 | #include "control.h" |
| 42 | #include "mux.h" | 43 | #include "mux.h" |
| 43 | #include "prm.h" | 44 | #include "prm.h" |
diff --git a/arch/arm/mach-omap2/omap-mpuss-lowpower.c b/arch/arm/mach-omap2/omap-mpuss-lowpower.c index ff4e6a0e9c7c..3f5fd7e3549d 100644 --- a/arch/arm/mach-omap2/omap-mpuss-lowpower.c +++ b/arch/arm/mach-omap2/omap-mpuss-lowpower.c | |||
| @@ -50,6 +50,7 @@ | |||
| 50 | #include <asm/suspend.h> | 50 | #include <asm/suspend.h> |
| 51 | #include <asm/hardware/cache-l2x0.h> | 51 | #include <asm/hardware/cache-l2x0.h> |
| 52 | 52 | ||
| 53 | #include "soc.h" | ||
| 53 | #include "common.h" | 54 | #include "common.h" |
| 54 | #include "omap44xx.h" | 55 | #include "omap44xx.h" |
| 55 | #include "omap4-sar-layout.h" | 56 | #include "omap4-sar-layout.h" |
diff --git a/arch/arm/plat-omap/omap-pm-noop.c b/arch/arm/mach-omap2/omap-pm-noop.c index 9722f418ae1f..6a3be2bebddb 100644 --- a/arch/arm/plat-omap/omap-pm-noop.c +++ b/arch/arm/mach-omap2/omap-pm-noop.c | |||
| @@ -22,9 +22,8 @@ | |||
| 22 | #include <linux/device.h> | 22 | #include <linux/device.h> |
| 23 | #include <linux/platform_device.h> | 23 | #include <linux/platform_device.h> |
| 24 | 24 | ||
| 25 | /* Interface documentation is in mach/omap-pm.h */ | 25 | #include "omap_device.h" |
| 26 | #include <plat/omap-pm.h> | 26 | #include "omap-pm.h" |
| 27 | #include <plat/omap_device.h> | ||
| 28 | 27 | ||
| 29 | static bool off_mode_enabled; | 28 | static bool off_mode_enabled; |
| 30 | static int dummy_context_loss_counter; | 29 | static int dummy_context_loss_counter; |
diff --git a/arch/arm/plat-omap/include/plat/omap-pm.h b/arch/arm/mach-omap2/omap-pm.h index 67faa7b8fe92..67faa7b8fe92 100644 --- a/arch/arm/plat-omap/include/plat/omap-pm.h +++ b/arch/arm/mach-omap2/omap-pm.h | |||
diff --git a/arch/arm/mach-omap2/omap-secure.c b/arch/arm/mach-omap2/omap-secure.c index e089e4d1ae38..b970440cffca 100644 --- a/arch/arm/mach-omap2/omap-secure.c +++ b/arch/arm/mach-omap2/omap-secure.c | |||
| @@ -18,7 +18,6 @@ | |||
| 18 | #include <asm/cacheflush.h> | 18 | #include <asm/cacheflush.h> |
| 19 | #include <asm/memblock.h> | 19 | #include <asm/memblock.h> |
| 20 | 20 | ||
| 21 | #include <plat/omap-secure.h> | ||
| 22 | #include "omap-secure.h" | 21 | #include "omap-secure.h" |
| 23 | 22 | ||
| 24 | static phys_addr_t omap_secure_memblock_base; | 23 | static phys_addr_t omap_secure_memblock_base; |
diff --git a/arch/arm/mach-omap2/omap-secure.h b/arch/arm/mach-omap2/omap-secure.h index c90a43589abe..0e729170c46b 100644 --- a/arch/arm/mach-omap2/omap-secure.h +++ b/arch/arm/mach-omap2/omap-secure.h | |||
| @@ -52,6 +52,13 @@ extern u32 omap_secure_dispatcher(u32 idx, u32 flag, u32 nargs, | |||
| 52 | u32 arg1, u32 arg2, u32 arg3, u32 arg4); | 52 | u32 arg1, u32 arg2, u32 arg3, u32 arg4); |
| 53 | extern u32 omap_smc2(u32 id, u32 falg, u32 pargs); | 53 | extern u32 omap_smc2(u32 id, u32 falg, u32 pargs); |
| 54 | extern phys_addr_t omap_secure_ram_mempool_base(void); | 54 | extern phys_addr_t omap_secure_ram_mempool_base(void); |
| 55 | extern int omap_secure_ram_reserve_memblock(void); | ||
| 55 | 56 | ||
| 57 | #ifdef CONFIG_OMAP4_ERRATA_I688 | ||
| 58 | extern int omap_barrier_reserve_memblock(void); | ||
| 59 | #else | ||
| 60 | static inline void omap_barrier_reserve_memblock(void) | ||
| 61 | { } | ||
| 62 | #endif | ||
| 56 | #endif /* __ASSEMBLER__ */ | 63 | #endif /* __ASSEMBLER__ */ |
| 57 | #endif /* OMAP_ARCH_OMAP_SECURE_H */ | 64 | #endif /* OMAP_ARCH_OMAP_SECURE_H */ |
diff --git a/arch/arm/mach-omap2/omap4-common.c b/arch/arm/mach-omap2/omap4-common.c index e1f289748c5d..3cfcd41bf8fa 100644 --- a/arch/arm/mach-omap2/omap4-common.c +++ b/arch/arm/mach-omap2/omap4-common.c | |||
| @@ -25,16 +25,14 @@ | |||
| 25 | #include <asm/mach/map.h> | 25 | #include <asm/mach/map.h> |
| 26 | #include <asm/memblock.h> | 26 | #include <asm/memblock.h> |
| 27 | 27 | ||
| 28 | #include <plat/sram.h> | ||
| 29 | #include <plat/omap-secure.h> | ||
| 30 | #include <plat/mmc.h> | ||
| 31 | |||
| 32 | #include "omap-wakeupgen.h" | 28 | #include "omap-wakeupgen.h" |
| 33 | |||
| 34 | #include "soc.h" | 29 | #include "soc.h" |
| 35 | #include "common.h" | 30 | #include "common.h" |
| 31 | #include "mmc.h" | ||
| 36 | #include "hsmmc.h" | 32 | #include "hsmmc.h" |
| 37 | #include "omap4-sar-layout.h" | 33 | #include "omap4-sar-layout.h" |
| 34 | #include "omap-secure.h" | ||
| 35 | #include "sram.h" | ||
| 38 | 36 | ||
| 39 | #ifdef CONFIG_CACHE_L2X0 | 37 | #ifdef CONFIG_CACHE_L2X0 |
| 40 | static void __iomem *l2cache_base; | 38 | static void __iomem *l2cache_base; |
diff --git a/arch/arm/plat-omap/omap_device.c b/arch/arm/mach-omap2/omap_device.c index 7a7d1f2a65e9..0ef934fec364 100644 --- a/arch/arm/plat-omap/omap_device.c +++ b/arch/arm/mach-omap2/omap_device.c | |||
| @@ -89,9 +89,8 @@ | |||
| 89 | #include <linux/of.h> | 89 | #include <linux/of.h> |
| 90 | #include <linux/notifier.h> | 90 | #include <linux/notifier.h> |
| 91 | 91 | ||
| 92 | #include <plat/omap_device.h> | 92 | #include "omap_device.h" |
| 93 | #include <plat/omap_hwmod.h> | 93 | #include "omap_hwmod.h" |
| 94 | #include <plat/clock.h> | ||
| 95 | 94 | ||
| 96 | /* These parameters are passed to _omap_device_{de,}activate() */ | 95 | /* These parameters are passed to _omap_device_{de,}activate() */ |
| 97 | #define USE_WAKEUP_LAT 0 | 96 | #define USE_WAKEUP_LAT 0 |
diff --git a/arch/arm/plat-omap/include/plat/omap_device.h b/arch/arm/mach-omap2/omap_device.h index 106f50665804..0933c599bf89 100644 --- a/arch/arm/plat-omap/include/plat/omap_device.h +++ b/arch/arm/mach-omap2/omap_device.h | |||
| @@ -34,7 +34,7 @@ | |||
| 34 | #include <linux/kernel.h> | 34 | #include <linux/kernel.h> |
| 35 | #include <linux/platform_device.h> | 35 | #include <linux/platform_device.h> |
| 36 | 36 | ||
| 37 | #include <plat/omap_hwmod.h> | 37 | #include "omap_hwmod.h" |
| 38 | 38 | ||
| 39 | extern struct dev_pm_domain omap_device_pm_domain; | 39 | extern struct dev_pm_domain omap_device_pm_domain; |
| 40 | 40 | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c index b969ab1d258b..37eeb45612f8 100644 --- a/arch/arm/mach-omap2/omap_hwmod.c +++ b/arch/arm/mach-omap2/omap_hwmod.c | |||
| @@ -139,18 +139,19 @@ | |||
| 139 | #include <linux/slab.h> | 139 | #include <linux/slab.h> |
| 140 | #include <linux/bootmem.h> | 140 | #include <linux/bootmem.h> |
| 141 | 141 | ||
| 142 | #include <plat/clock.h> | 142 | #include "clock.h" |
| 143 | #include <plat/omap_hwmod.h> | 143 | #include "omap_hwmod.h" |
| 144 | #include <plat/prcm.h> | 144 | #include <plat/prcm.h> |
| 145 | 145 | ||
| 146 | #include "soc.h" | 146 | #include "soc.h" |
| 147 | #include "common.h" | 147 | #include "common.h" |
| 148 | #include "clockdomain.h" | 148 | #include "clockdomain.h" |
| 149 | #include "powerdomain.h" | 149 | #include "powerdomain.h" |
| 150 | #include "cm2xxx_3xxx.h" | 150 | #include "cm2xxx.h" |
| 151 | #include "cm3xxx.h" | ||
| 151 | #include "cminst44xx.h" | 152 | #include "cminst44xx.h" |
| 152 | #include "cm33xx.h" | 153 | #include "cm33xx.h" |
| 153 | #include "prm2xxx_3xxx.h" | 154 | #include "prm3xxx.h" |
| 154 | #include "prm44xx.h" | 155 | #include "prm44xx.h" |
| 155 | #include "prm33xx.h" | 156 | #include "prm33xx.h" |
| 156 | #include "prminst44xx.h" | 157 | #include "prminst44xx.h" |
| @@ -2668,7 +2669,7 @@ static int __init _alloc_linkspace(struct omap_hwmod_ocp_if **ois) | |||
| 2668 | /* Static functions intended only for use in soc_ops field function pointers */ | 2669 | /* Static functions intended only for use in soc_ops field function pointers */ |
| 2669 | 2670 | ||
| 2670 | /** | 2671 | /** |
| 2671 | * _omap2_wait_target_ready - wait for a module to leave slave idle | 2672 | * _omap2xxx_wait_target_ready - wait for a module to leave slave idle |
| 2672 | * @oh: struct omap_hwmod * | 2673 | * @oh: struct omap_hwmod * |
| 2673 | * | 2674 | * |
| 2674 | * Wait for a module @oh to leave slave idle. Returns 0 if the module | 2675 | * Wait for a module @oh to leave slave idle. Returns 0 if the module |
| @@ -2676,7 +2677,7 @@ static int __init _alloc_linkspace(struct omap_hwmod_ocp_if **ois) | |||
| 2676 | * slave idle; otherwise, pass along the return value of the | 2677 | * slave idle; otherwise, pass along the return value of the |
| 2677 | * appropriate *_cm*_wait_module_ready() function. | 2678 | * appropriate *_cm*_wait_module_ready() function. |
| 2678 | */ | 2679 | */ |
| 2679 | static int _omap2_wait_target_ready(struct omap_hwmod *oh) | 2680 | static int _omap2xxx_wait_target_ready(struct omap_hwmod *oh) |
| 2680 | { | 2681 | { |
| 2681 | if (!oh) | 2682 | if (!oh) |
| 2682 | return -EINVAL; | 2683 | return -EINVAL; |
| @@ -2689,9 +2690,36 @@ static int _omap2_wait_target_ready(struct omap_hwmod *oh) | |||
| 2689 | 2690 | ||
| 2690 | /* XXX check module SIDLEMODE, hardreset status, enabled clocks */ | 2691 | /* XXX check module SIDLEMODE, hardreset status, enabled clocks */ |
| 2691 | 2692 | ||
| 2692 | return omap2_cm_wait_module_ready(oh->prcm.omap2.module_offs, | 2693 | return omap2xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs, |
| 2693 | oh->prcm.omap2.idlest_reg_id, | 2694 | oh->prcm.omap2.idlest_reg_id, |
| 2694 | oh->prcm.omap2.idlest_idle_bit); | 2695 | oh->prcm.omap2.idlest_idle_bit); |
| 2696 | } | ||
| 2697 | |||
| 2698 | /** | ||
| 2699 | * _omap3xxx_wait_target_ready - wait for a module to leave slave idle | ||
| 2700 | * @oh: struct omap_hwmod * | ||
| 2701 | * | ||
| 2702 | * Wait for a module @oh to leave slave idle. Returns 0 if the module | ||
| 2703 | * does not have an IDLEST bit or if the module successfully leaves | ||
| 2704 | * slave idle; otherwise, pass along the return value of the | ||
| 2705 | * appropriate *_cm*_wait_module_ready() function. | ||
| 2706 | */ | ||
| 2707 | static int _omap3xxx_wait_target_ready(struct omap_hwmod *oh) | ||
| 2708 | { | ||
| 2709 | if (!oh) | ||
| 2710 | return -EINVAL; | ||
| 2711 | |||
| 2712 | if (oh->flags & HWMOD_NO_IDLEST) | ||
| 2713 | return 0; | ||
| 2714 | |||
| 2715 | if (!_find_mpu_rt_port(oh)) | ||
| 2716 | return 0; | ||
| 2717 | |||
| 2718 | /* XXX check module SIDLEMODE, hardreset status, enabled clocks */ | ||
| 2719 | |||
| 2720 | return omap3xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs, | ||
| 2721 | oh->prcm.omap2.idlest_reg_id, | ||
| 2722 | oh->prcm.omap2.idlest_idle_bit); | ||
| 2695 | } | 2723 | } |
| 2696 | 2724 | ||
| 2697 | /** | 2725 | /** |
| @@ -3959,8 +3987,13 @@ int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx) | |||
| 3959 | */ | 3987 | */ |
| 3960 | void __init omap_hwmod_init(void) | 3988 | void __init omap_hwmod_init(void) |
| 3961 | { | 3989 | { |
| 3962 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) { | 3990 | if (cpu_is_omap24xx()) { |
| 3963 | soc_ops.wait_target_ready = _omap2_wait_target_ready; | 3991 | soc_ops.wait_target_ready = _omap2xxx_wait_target_ready; |
| 3992 | soc_ops.assert_hardreset = _omap2_assert_hardreset; | ||
| 3993 | soc_ops.deassert_hardreset = _omap2_deassert_hardreset; | ||
| 3994 | soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted; | ||
| 3995 | } else if (cpu_is_omap34xx()) { | ||
| 3996 | soc_ops.wait_target_ready = _omap3xxx_wait_target_ready; | ||
| 3964 | soc_ops.assert_hardreset = _omap2_assert_hardreset; | 3997 | soc_ops.assert_hardreset = _omap2_assert_hardreset; |
| 3965 | soc_ops.deassert_hardreset = _omap2_deassert_hardreset; | 3998 | soc_ops.deassert_hardreset = _omap2_deassert_hardreset; |
| 3966 | soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted; | 3999 | soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted; |
diff --git a/arch/arm/plat-omap/include/plat/omap_hwmod.h b/arch/arm/mach-omap2/omap_hwmod.h index b3349f7b1a2c..87b59b45c678 100644 --- a/arch/arm/plat-omap/include/plat/omap_hwmod.h +++ b/arch/arm/mach-omap2/omap_hwmod.h | |||
| @@ -35,7 +35,6 @@ | |||
| 35 | #include <linux/list.h> | 35 | #include <linux/list.h> |
| 36 | #include <linux/ioport.h> | 36 | #include <linux/ioport.h> |
| 37 | #include <linux/spinlock.h> | 37 | #include <linux/spinlock.h> |
| 38 | #include <plat/cpu.h> | ||
| 39 | 38 | ||
| 40 | struct omap_device; | 39 | struct omap_device; |
| 41 | 40 | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod_2420_data.c b/arch/arm/mach-omap2/omap_hwmod_2420_data.c index b5db6007c523..a8b3368dca3d 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2420_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2420_data.c | |||
| @@ -12,21 +12,24 @@ | |||
| 12 | * XXX handle crossbar/shared link difference for L3? | 12 | * XXX handle crossbar/shared link difference for L3? |
| 13 | * XXX these should be marked initdata for multi-OMAP kernels | 13 | * XXX these should be marked initdata for multi-OMAP kernels |
| 14 | */ | 14 | */ |
| 15 | |||
| 16 | #include <linux/i2c-omap.h> | ||
| 15 | #include <linux/platform_data/spi-omap2-mcspi.h> | 17 | #include <linux/platform_data/spi-omap2-mcspi.h> |
| 16 | 18 | ||
| 17 | #include <plat/omap_hwmod.h> | 19 | #include <plat-omap/dma-omap.h> |
| 18 | #include <plat/dma.h> | ||
| 19 | #include <plat/serial.h> | ||
| 20 | #include <plat/i2c.h> | ||
| 21 | #include <plat/dmtimer.h> | 20 | #include <plat/dmtimer.h> |
| 21 | |||
| 22 | #include "omap_hwmod.h" | ||
| 22 | #include "l3_2xxx.h" | 23 | #include "l3_2xxx.h" |
| 23 | #include "l4_2xxx.h" | 24 | #include "l4_2xxx.h" |
| 24 | #include <plat/mmc.h> | ||
| 25 | 25 | ||
| 26 | #include "omap_hwmod_common_data.h" | 26 | #include "omap_hwmod_common_data.h" |
| 27 | 27 | ||
| 28 | #include "cm-regbits-24xx.h" | 28 | #include "cm-regbits-24xx.h" |
| 29 | #include "prm-regbits-24xx.h" | 29 | #include "prm-regbits-24xx.h" |
| 30 | #include "i2c.h" | ||
| 31 | #include "mmc.h" | ||
| 32 | #include "serial.h" | ||
| 30 | #include "wd_timer.h" | 33 | #include "wd_timer.h" |
| 31 | 34 | ||
| 32 | /* | 35 | /* |
diff --git a/arch/arm/mach-omap2/omap_hwmod_2430_data.c b/arch/arm/mach-omap2/omap_hwmod_2430_data.c index c455e41b0237..dc768c50e523 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2430_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2430_data.c | |||
| @@ -12,21 +12,23 @@ | |||
| 12 | * XXX handle crossbar/shared link difference for L3? | 12 | * XXX handle crossbar/shared link difference for L3? |
| 13 | * XXX these should be marked initdata for multi-OMAP kernels | 13 | * XXX these should be marked initdata for multi-OMAP kernels |
| 14 | */ | 14 | */ |
| 15 | |||
| 16 | #include <linux/i2c-omap.h> | ||
| 15 | #include <linux/platform_data/asoc-ti-mcbsp.h> | 17 | #include <linux/platform_data/asoc-ti-mcbsp.h> |
| 16 | #include <linux/platform_data/spi-omap2-mcspi.h> | 18 | #include <linux/platform_data/spi-omap2-mcspi.h> |
| 17 | 19 | ||
| 18 | #include <plat/omap_hwmod.h> | 20 | #include <plat-omap/dma-omap.h> |
| 19 | #include <plat/dma.h> | ||
| 20 | #include <plat/serial.h> | ||
| 21 | #include <plat/i2c.h> | ||
| 22 | #include <plat/dmtimer.h> | 21 | #include <plat/dmtimer.h> |
| 23 | #include <plat/mmc.h> | 22 | |
| 23 | #include "omap_hwmod.h" | ||
| 24 | #include "mmc.h" | ||
| 24 | #include "l3_2xxx.h" | 25 | #include "l3_2xxx.h" |
| 25 | 26 | ||
| 26 | #include "soc.h" | 27 | #include "soc.h" |
| 27 | #include "omap_hwmod_common_data.h" | 28 | #include "omap_hwmod_common_data.h" |
| 28 | #include "prm-regbits-24xx.h" | 29 | #include "prm-regbits-24xx.h" |
| 29 | #include "cm-regbits-24xx.h" | 30 | #include "cm-regbits-24xx.h" |
| 31 | #include "i2c.h" | ||
| 30 | #include "wd_timer.h" | 32 | #include "wd_timer.h" |
| 31 | 33 | ||
| 32 | /* | 34 | /* |
diff --git a/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_interconnect_data.c b/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_interconnect_data.c index cbb4ef6544ad..0413daba2dba 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_interconnect_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_interconnect_data.c | |||
| @@ -13,8 +13,7 @@ | |||
| 13 | */ | 13 | */ |
| 14 | #include <asm/sizes.h> | 14 | #include <asm/sizes.h> |
| 15 | 15 | ||
| 16 | #include <plat/omap_hwmod.h> | 16 | #include "omap_hwmod.h" |
| 17 | #include <plat/serial.h> | ||
| 18 | 17 | ||
| 19 | #include "omap_hwmod_common_data.h" | 18 | #include "omap_hwmod_common_data.h" |
| 20 | 19 | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c b/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c index 8851bbb6bb24..40d6c93d9853 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c | |||
| @@ -9,13 +9,14 @@ | |||
| 9 | * it under the terms of the GNU General Public License version 2 as | 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. | 10 | * published by the Free Software Foundation. |
| 11 | */ | 11 | */ |
| 12 | #include <plat/omap_hwmod.h> | 12 | |
| 13 | #include <plat/serial.h> | 13 | #include <plat-omap/dma-omap.h> |
| 14 | #include <plat/dma.h> | 14 | |
| 15 | #include <plat/common.h> | 15 | #include "omap_hwmod.h" |
| 16 | #include "hdq1w.h" | 16 | #include "hdq1w.h" |
| 17 | 17 | ||
| 18 | #include "omap_hwmod_common_data.h" | 18 | #include "omap_hwmod_common_data.h" |
| 19 | #include "dma.h" | ||
| 19 | 20 | ||
| 20 | /* UART */ | 21 | /* UART */ |
| 21 | 22 | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c b/arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c index 1a1287d62648..47901a5e76de 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c | |||
| @@ -13,10 +13,10 @@ | |||
| 13 | */ | 13 | */ |
| 14 | #include <asm/sizes.h> | 14 | #include <asm/sizes.h> |
| 15 | 15 | ||
| 16 | #include <plat/omap_hwmod.h> | 16 | #include "omap_hwmod.h" |
| 17 | #include <plat/serial.h> | ||
| 18 | #include "l3_2xxx.h" | 17 | #include "l3_2xxx.h" |
| 19 | #include "l4_2xxx.h" | 18 | #include "l4_2xxx.h" |
| 19 | #include "serial.h" | ||
| 20 | 20 | ||
| 21 | #include "omap_hwmod_common_data.h" | 21 | #include "omap_hwmod_common_data.h" |
| 22 | 22 | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c b/arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c index bd9220ed5ab9..a0116d08cf45 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c | |||
| @@ -8,13 +8,13 @@ | |||
| 8 | * it under the terms of the GNU General Public License version 2 as | 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. | 9 | * published by the Free Software Foundation. |
| 10 | */ | 10 | */ |
| 11 | #include <plat/omap_hwmod.h> | 11 | |
| 12 | #include <plat/serial.h> | ||
| 13 | #include <linux/platform_data/gpio-omap.h> | 12 | #include <linux/platform_data/gpio-omap.h> |
| 14 | #include <plat/dma.h> | 13 | #include <plat-omap/dma-omap.h> |
| 15 | #include <plat/dmtimer.h> | 14 | #include <plat/dmtimer.h> |
| 16 | #include <linux/platform_data/spi-omap2-mcspi.h> | 15 | #include <linux/platform_data/spi-omap2-mcspi.h> |
| 17 | 16 | ||
| 17 | #include "omap_hwmod.h" | ||
| 18 | #include "omap_hwmod_common_data.h" | 18 | #include "omap_hwmod_common_data.h" |
| 19 | #include "cm-regbits-24xx.h" | 19 | #include "cm-regbits-24xx.h" |
| 20 | #include "prm-regbits-24xx.h" | 20 | #include "prm-regbits-24xx.h" |
diff --git a/arch/arm/mach-omap2/omap_hwmod_33xx_data.c b/arch/arm/mach-omap2/omap_hwmod_33xx_data.c index 59d5c1cd316d..ad8d43b33273 100644 --- a/arch/arm/mach-omap2/omap_hwmod_33xx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_33xx_data.c | |||
| @@ -14,13 +14,11 @@ | |||
| 14 | * GNU General Public License for more details. | 14 | * GNU General Public License for more details. |
| 15 | */ | 15 | */ |
| 16 | 16 | ||
| 17 | #include <plat/omap_hwmod.h> | 17 | #include <linux/i2c-omap.h> |
| 18 | #include <plat/cpu.h> | 18 | |
| 19 | #include "omap_hwmod.h" | ||
| 19 | #include <linux/platform_data/gpio-omap.h> | 20 | #include <linux/platform_data/gpio-omap.h> |
| 20 | #include <linux/platform_data/spi-omap2-mcspi.h> | 21 | #include <linux/platform_data/spi-omap2-mcspi.h> |
| 21 | #include <plat/dma.h> | ||
| 22 | #include <plat/mmc.h> | ||
| 23 | #include <plat/i2c.h> | ||
| 24 | 22 | ||
| 25 | #include "omap_hwmod_common_data.h" | 23 | #include "omap_hwmod_common_data.h" |
| 26 | 24 | ||
| @@ -28,6 +26,8 @@ | |||
| 28 | #include "cm33xx.h" | 26 | #include "cm33xx.h" |
| 29 | #include "prm33xx.h" | 27 | #include "prm33xx.h" |
| 30 | #include "prm-regbits-33xx.h" | 28 | #include "prm-regbits-33xx.h" |
| 29 | #include "i2c.h" | ||
| 30 | #include "mmc.h" | ||
| 31 | 31 | ||
| 32 | /* | 32 | /* |
| 33 | * IP blocks | 33 | * IP blocks |
diff --git a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c index f67b7ee07dd4..abe66ced903f 100644 --- a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | |||
| @@ -14,16 +14,14 @@ | |||
| 14 | * | 14 | * |
| 15 | * XXX these should be marked initdata for multi-OMAP kernels | 15 | * XXX these should be marked initdata for multi-OMAP kernels |
| 16 | */ | 16 | */ |
| 17 | |||
| 18 | #include <linux/i2c-omap.h> | ||
| 17 | #include <linux/power/smartreflex.h> | 19 | #include <linux/power/smartreflex.h> |
| 18 | #include <linux/platform_data/gpio-omap.h> | 20 | #include <linux/platform_data/gpio-omap.h> |
| 19 | 21 | ||
| 20 | #include <plat/omap_hwmod.h> | 22 | #include <plat-omap/dma-omap.h> |
| 21 | #include <plat/dma.h> | ||
| 22 | #include <plat/serial.h> | ||
| 23 | #include "l3_3xxx.h" | 23 | #include "l3_3xxx.h" |
| 24 | #include "l4_3xxx.h" | 24 | #include "l4_3xxx.h" |
| 25 | #include <plat/i2c.h> | ||
| 26 | #include <plat/mmc.h> | ||
| 27 | #include <linux/platform_data/asoc-ti-mcbsp.h> | 25 | #include <linux/platform_data/asoc-ti-mcbsp.h> |
| 28 | #include <linux/platform_data/spi-omap2-mcspi.h> | 26 | #include <linux/platform_data/spi-omap2-mcspi.h> |
| 29 | #include <plat/dmtimer.h> | 27 | #include <plat/dmtimer.h> |
| @@ -32,10 +30,16 @@ | |||
| 32 | #include "am35xx.h" | 30 | #include "am35xx.h" |
| 33 | 31 | ||
| 34 | #include "soc.h" | 32 | #include "soc.h" |
| 33 | #include "omap_hwmod.h" | ||
| 35 | #include "omap_hwmod_common_data.h" | 34 | #include "omap_hwmod_common_data.h" |
| 36 | #include "prm-regbits-34xx.h" | 35 | #include "prm-regbits-34xx.h" |
| 37 | #include "cm-regbits-34xx.h" | 36 | #include "cm-regbits-34xx.h" |
| 37 | |||
| 38 | #include "dma.h" | ||
| 39 | #include "i2c.h" | ||
| 40 | #include "mmc.h" | ||
| 38 | #include "wd_timer.h" | 41 | #include "wd_timer.h" |
| 42 | #include "serial.h" | ||
| 39 | 43 | ||
| 40 | /* | 44 | /* |
| 41 | * OMAP3xxx hardware module integration data | 45 | * OMAP3xxx hardware module integration data |
diff --git a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c index 652d0285bd6d..7a6132848f5d 100644 --- a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |||
| @@ -21,22 +21,23 @@ | |||
| 21 | #include <linux/io.h> | 21 | #include <linux/io.h> |
| 22 | #include <linux/platform_data/gpio-omap.h> | 22 | #include <linux/platform_data/gpio-omap.h> |
| 23 | #include <linux/power/smartreflex.h> | 23 | #include <linux/power/smartreflex.h> |
| 24 | #include <linux/i2c-omap.h> | ||
| 25 | |||
| 26 | #include <plat-omap/dma-omap.h> | ||
| 24 | 27 | ||
| 25 | #include <plat/omap_hwmod.h> | ||
| 26 | #include <plat/i2c.h> | ||
| 27 | #include <plat/dma.h> | ||
| 28 | #include <linux/platform_data/spi-omap2-mcspi.h> | 28 | #include <linux/platform_data/spi-omap2-mcspi.h> |
| 29 | #include <linux/platform_data/asoc-ti-mcbsp.h> | 29 | #include <linux/platform_data/asoc-ti-mcbsp.h> |
| 30 | #include <plat/mmc.h> | ||
| 31 | #include <plat/dmtimer.h> | 30 | #include <plat/dmtimer.h> |
| 32 | #include <plat/common.h> | ||
| 33 | #include <plat/iommu.h> | 31 | #include <plat/iommu.h> |
| 34 | 32 | ||
| 33 | #include "omap_hwmod.h" | ||
| 35 | #include "omap_hwmod_common_data.h" | 34 | #include "omap_hwmod_common_data.h" |
| 36 | #include "cm1_44xx.h" | 35 | #include "cm1_44xx.h" |
| 37 | #include "cm2_44xx.h" | 36 | #include "cm2_44xx.h" |
| 38 | #include "prm44xx.h" | 37 | #include "prm44xx.h" |
| 39 | #include "prm-regbits-44xx.h" | 38 | #include "prm-regbits-44xx.h" |
| 39 | #include "i2c.h" | ||
| 40 | #include "mmc.h" | ||
| 40 | #include "wd_timer.h" | 41 | #include "wd_timer.h" |
| 41 | 42 | ||
| 42 | /* Base offset for all OMAP4 interrupts external to MPUSS */ | 43 | /* Base offset for all OMAP4 interrupts external to MPUSS */ |
diff --git a/arch/arm/mach-omap2/omap_hwmod_common_data.c b/arch/arm/mach-omap2/omap_hwmod_common_data.c index 9f1ccdc8cc8c..79d623b83e49 100644 --- a/arch/arm/mach-omap2/omap_hwmod_common_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_common_data.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | * data and their integration with other OMAP modules and Linux. | 16 | * data and their integration with other OMAP modules and Linux. |
| 17 | */ | 17 | */ |
| 18 | 18 | ||
| 19 | #include <plat/omap_hwmod.h> | 19 | #include "omap_hwmod.h" |
| 20 | 20 | ||
| 21 | #include "omap_hwmod_common_data.h" | 21 | #include "omap_hwmod_common_data.h" |
| 22 | 22 | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod_common_data.h b/arch/arm/mach-omap2/omap_hwmod_common_data.h index 2bc8f1705d4a..cfcce299177c 100644 --- a/arch/arm/mach-omap2/omap_hwmod_common_data.h +++ b/arch/arm/mach-omap2/omap_hwmod_common_data.h | |||
| @@ -13,7 +13,7 @@ | |||
| 13 | #ifndef __ARCH_ARM_MACH_OMAP2_OMAP_HWMOD_COMMON_DATA_H | 13 | #ifndef __ARCH_ARM_MACH_OMAP2_OMAP_HWMOD_COMMON_DATA_H |
| 14 | #define __ARCH_ARM_MACH_OMAP2_OMAP_HWMOD_COMMON_DATA_H | 14 | #define __ARCH_ARM_MACH_OMAP2_OMAP_HWMOD_COMMON_DATA_H |
| 15 | 15 | ||
| 16 | #include <plat/omap_hwmod.h> | 16 | #include "omap_hwmod.h" |
| 17 | 17 | ||
| 18 | #include "common.h" | 18 | #include "common.h" |
| 19 | #include "display.h" | 19 | #include "display.h" |
diff --git a/arch/arm/mach-omap2/omap_opp_data.h b/arch/arm/mach-omap2/omap_opp_data.h index c784c12f98a1..7e437bf6024c 100644 --- a/arch/arm/mach-omap2/omap_opp_data.h +++ b/arch/arm/mach-omap2/omap_opp_data.h | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | #ifndef __ARCH_ARM_MACH_OMAP2_OMAP_OPP_DATA_H | 19 | #ifndef __ARCH_ARM_MACH_OMAP2_OMAP_OPP_DATA_H |
| 20 | #define __ARCH_ARM_MACH_OMAP2_OMAP_OPP_DATA_H | 20 | #define __ARCH_ARM_MACH_OMAP2_OMAP_OPP_DATA_H |
| 21 | 21 | ||
| 22 | #include <plat/omap_hwmod.h> | 22 | #include "omap_hwmod.h" |
| 23 | 23 | ||
| 24 | #include "voltage.h" | 24 | #include "voltage.h" |
| 25 | 25 | ||
diff --git a/arch/arm/mach-omap2/omap_phy_internal.c b/arch/arm/mach-omap2/omap_phy_internal.c index d992db8ff0b0..4d76a3ca5bf3 100644 --- a/arch/arm/mach-omap2/omap_phy_internal.c +++ b/arch/arm/mach-omap2/omap_phy_internal.c | |||
| @@ -27,11 +27,11 @@ | |||
| 27 | #include <linux/io.h> | 27 | #include <linux/io.h> |
| 28 | #include <linux/err.h> | 28 | #include <linux/err.h> |
| 29 | #include <linux/usb.h> | 29 | #include <linux/usb.h> |
| 30 | 30 | #include <linux/usb/musb.h> | |
| 31 | #include <plat/usb.h> | ||
| 32 | 31 | ||
| 33 | #include "soc.h" | 32 | #include "soc.h" |
| 34 | #include "control.h" | 33 | #include "control.h" |
| 34 | #include "usb.h" | ||
| 35 | 35 | ||
| 36 | void am35x_musb_reset(void) | 36 | void am35x_musb_reset(void) |
| 37 | { | 37 | { |
diff --git a/arch/arm/mach-omap2/omap_twl.c b/arch/arm/mach-omap2/omap_twl.c index f515a1a056d5..2bf35dc091be 100644 --- a/arch/arm/mach-omap2/omap_twl.c +++ b/arch/arm/mach-omap2/omap_twl.c | |||
| @@ -18,6 +18,7 @@ | |||
| 18 | #include <linux/kernel.h> | 18 | #include <linux/kernel.h> |
| 19 | #include <linux/i2c/twl.h> | 19 | #include <linux/i2c/twl.h> |
| 20 | 20 | ||
| 21 | #include "soc.h" | ||
| 21 | #include "voltage.h" | 22 | #include "voltage.h" |
| 22 | 23 | ||
| 23 | #include "pm.h" | 24 | #include "pm.h" |
diff --git a/arch/arm/mach-omap2/opp.c b/arch/arm/mach-omap2/opp.c index 58e16aef40bb..bd41d59a7cab 100644 --- a/arch/arm/mach-omap2/opp.c +++ b/arch/arm/mach-omap2/opp.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | #include <linux/opp.h> | 20 | #include <linux/opp.h> |
| 21 | #include <linux/cpu.h> | 21 | #include <linux/cpu.h> |
| 22 | 22 | ||
| 23 | #include <plat/omap_device.h> | 23 | #include "omap_device.h" |
| 24 | 24 | ||
| 25 | #include "omap_opp_data.h" | 25 | #include "omap_opp_data.h" |
| 26 | 26 | ||
diff --git a/arch/arm/mach-omap2/opp3xxx_data.c b/arch/arm/mach-omap2/opp3xxx_data.c index 75cef5f67a8a..62772e0e0d69 100644 --- a/arch/arm/mach-omap2/opp3xxx_data.c +++ b/arch/arm/mach-omap2/opp3xxx_data.c | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | */ | 19 | */ |
| 20 | #include <linux/module.h> | 20 | #include <linux/module.h> |
| 21 | 21 | ||
| 22 | #include "soc.h" | ||
| 22 | #include "control.h" | 23 | #include "control.h" |
| 23 | #include "omap_opp_data.h" | 24 | #include "omap_opp_data.h" |
| 24 | #include "pm.h" | 25 | #include "pm.h" |
diff --git a/arch/arm/mach-omap2/pm-debug.c b/arch/arm/mach-omap2/pm-debug.c index 46092cd806fa..3cf4fdfd7ab0 100644 --- a/arch/arm/mach-omap2/pm-debug.c +++ b/arch/arm/mach-omap2/pm-debug.c | |||
| @@ -27,12 +27,13 @@ | |||
| 27 | #include <linux/module.h> | 27 | #include <linux/module.h> |
| 28 | #include <linux/slab.h> | 28 | #include <linux/slab.h> |
| 29 | 29 | ||
| 30 | #include <plat/clock.h> | 30 | #include "clock.h" |
| 31 | #include "powerdomain.h" | 31 | #include "powerdomain.h" |
| 32 | #include "clockdomain.h" | 32 | #include "clockdomain.h" |
| 33 | #include <plat/dmtimer.h> | 33 | #include <plat/dmtimer.h> |
| 34 | #include <plat/omap-pm.h> | 34 | #include "omap-pm.h" |
| 35 | 35 | ||
| 36 | #include "soc.h" | ||
| 36 | #include "cm2xxx_3xxx.h" | 37 | #include "cm2xxx_3xxx.h" |
| 37 | #include "prm2xxx_3xxx.h" | 38 | #include "prm2xxx_3xxx.h" |
| 38 | #include "pm.h" | 39 | #include "pm.h" |
diff --git a/arch/arm/mach-omap2/pm.c b/arch/arm/mach-omap2/pm.c index ea61c32957bd..331478f9b864 100644 --- a/arch/arm/mach-omap2/pm.c +++ b/arch/arm/mach-omap2/pm.c | |||
| @@ -20,10 +20,11 @@ | |||
| 20 | 20 | ||
| 21 | #include <asm/system_misc.h> | 21 | #include <asm/system_misc.h> |
| 22 | 22 | ||
| 23 | #include <plat/omap-pm.h> | 23 | #include "omap-pm.h" |
| 24 | #include <plat/omap_device.h> | 24 | #include "omap_device.h" |
| 25 | #include "common.h" | 25 | #include "common.h" |
| 26 | 26 | ||
| 27 | #include "soc.h" | ||
| 27 | #include "prcm-common.h" | 28 | #include "prcm-common.h" |
| 28 | #include "voltage.h" | 29 | #include "voltage.h" |
| 29 | #include "powerdomain.h" | 30 | #include "powerdomain.h" |
diff --git a/arch/arm/mach-omap2/pm24xx.c b/arch/arm/mach-omap2/pm24xx.c index 8af6cd6ac331..13e1f4303989 100644 --- a/arch/arm/mach-omap2/pm24xx.c +++ b/arch/arm/mach-omap2/pm24xx.c | |||
| @@ -31,21 +31,24 @@ | |||
| 31 | #include <linux/gpio.h> | 31 | #include <linux/gpio.h> |
| 32 | #include <linux/platform_data/gpio-omap.h> | 32 | #include <linux/platform_data/gpio-omap.h> |
| 33 | 33 | ||
| 34 | #include <asm/fncpy.h> | ||
| 35 | |||
| 34 | #include <asm/mach/time.h> | 36 | #include <asm/mach/time.h> |
| 35 | #include <asm/mach/irq.h> | 37 | #include <asm/mach/irq.h> |
| 36 | #include <asm/mach-types.h> | 38 | #include <asm/mach-types.h> |
| 37 | #include <asm/system_misc.h> | 39 | #include <asm/system_misc.h> |
| 38 | 40 | ||
| 39 | #include <plat/clock.h> | 41 | #include <plat-omap/dma-omap.h> |
| 40 | #include <plat/sram.h> | ||
| 41 | #include <plat/dma.h> | ||
| 42 | 42 | ||
| 43 | #include "soc.h" | ||
| 43 | #include "common.h" | 44 | #include "common.h" |
| 44 | #include "prm2xxx_3xxx.h" | 45 | #include "clock.h" |
| 46 | #include "prm2xxx.h" | ||
| 45 | #include "prm-regbits-24xx.h" | 47 | #include "prm-regbits-24xx.h" |
| 46 | #include "cm2xxx_3xxx.h" | 48 | #include "cm2xxx.h" |
| 47 | #include "cm-regbits-24xx.h" | 49 | #include "cm-regbits-24xx.h" |
| 48 | #include "sdrc.h" | 50 | #include "sdrc.h" |
| 51 | #include "sram.h" | ||
| 49 | #include "pm.h" | 52 | #include "pm.h" |
| 50 | #include "control.h" | 53 | #include "control.h" |
| 51 | #include "powerdomain.h" | 54 | #include "powerdomain.h" |
diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c index 3a904de4313e..a8b43da0b6f4 100644 --- a/arch/arm/mach-omap2/pm34xx.c +++ b/arch/arm/mach-omap2/pm34xx.c | |||
| @@ -32,25 +32,25 @@ | |||
| 32 | 32 | ||
| 33 | #include <trace/events/power.h> | 33 | #include <trace/events/power.h> |
| 34 | 34 | ||
| 35 | #include <asm/fncpy.h> | ||
| 35 | #include <asm/suspend.h> | 36 | #include <asm/suspend.h> |
| 36 | #include <asm/system_misc.h> | 37 | #include <asm/system_misc.h> |
| 37 | 38 | ||
| 38 | #include <plat/sram.h> | ||
| 39 | #include "clockdomain.h" | 39 | #include "clockdomain.h" |
| 40 | #include "powerdomain.h" | 40 | #include "powerdomain.h" |
| 41 | #include <plat/sdrc.h> | ||
| 42 | #include <plat/prcm.h> | 41 | #include <plat/prcm.h> |
| 43 | #include <plat/gpmc.h> | 42 | #include <plat-omap/dma-omap.h> |
| 44 | #include <plat/dma.h> | ||
| 45 | 43 | ||
| 44 | #include "soc.h" | ||
| 46 | #include "common.h" | 45 | #include "common.h" |
| 47 | #include "cm2xxx_3xxx.h" | 46 | #include "cm3xxx.h" |
| 48 | #include "cm-regbits-34xx.h" | 47 | #include "cm-regbits-34xx.h" |
| 48 | #include "gpmc.h" | ||
| 49 | #include "prm-regbits-34xx.h" | 49 | #include "prm-regbits-34xx.h" |
| 50 | 50 | #include "prm3xxx.h" | |
| 51 | #include "prm2xxx_3xxx.h" | ||
| 52 | #include "pm.h" | 51 | #include "pm.h" |
| 53 | #include "sdrc.h" | 52 | #include "sdrc.h" |
| 53 | #include "sram.h" | ||
| 54 | #include "control.h" | 54 | #include "control.h" |
| 55 | 55 | ||
| 56 | /* pm34xx errata defined in pm.h */ | 56 | /* pm34xx errata defined in pm.h */ |
diff --git a/arch/arm/mach-omap2/pm44xx.c b/arch/arm/mach-omap2/pm44xx.c index 04922d149068..7da75aed1514 100644 --- a/arch/arm/mach-omap2/pm44xx.c +++ b/arch/arm/mach-omap2/pm44xx.c | |||
| @@ -18,6 +18,7 @@ | |||
| 18 | #include <linux/slab.h> | 18 | #include <linux/slab.h> |
| 19 | #include <asm/system_misc.h> | 19 | #include <asm/system_misc.h> |
| 20 | 20 | ||
| 21 | #include "soc.h" | ||
| 21 | #include "common.h" | 22 | #include "common.h" |
| 22 | #include "clockdomain.h" | 23 | #include "clockdomain.h" |
| 23 | #include "powerdomain.h" | 24 | #include "powerdomain.h" |
diff --git a/arch/arm/mach-omap2/pmu.c b/arch/arm/mach-omap2/pmu.c index 2a791766283d..3cf79b54ce61 100644 --- a/arch/arm/mach-omap2/pmu.c +++ b/arch/arm/mach-omap2/pmu.c | |||
| @@ -15,8 +15,9 @@ | |||
| 15 | 15 | ||
| 16 | #include <asm/pmu.h> | 16 | #include <asm/pmu.h> |
| 17 | 17 | ||
| 18 | #include <plat/omap_hwmod.h> | 18 | #include "soc.h" |
| 19 | #include <plat/omap_device.h> | 19 | #include "omap_hwmod.h" |
| 20 | #include "omap_device.h" | ||
| 20 | 21 | ||
| 21 | static char *omap2_pmu_oh_names[] = {"mpu"}; | 22 | static char *omap2_pmu_oh_names[] = {"mpu"}; |
| 22 | static char *omap3_pmu_oh_names[] = {"mpu", "debugss"}; | 23 | static char *omap3_pmu_oh_names[] = {"mpu", "debugss"}; |
diff --git a/arch/arm/mach-omap2/powerdomain.h b/arch/arm/mach-omap2/powerdomain.h index baee90608d11..5277d56eb37f 100644 --- a/arch/arm/mach-omap2/powerdomain.h +++ b/arch/arm/mach-omap2/powerdomain.h | |||
| @@ -22,8 +22,6 @@ | |||
| 22 | 22 | ||
| 23 | #include <linux/atomic.h> | 23 | #include <linux/atomic.h> |
| 24 | 24 | ||
| 25 | #include <plat/cpu.h> | ||
| 26 | |||
| 27 | #include "voltage.h" | 25 | #include "voltage.h" |
| 28 | 26 | ||
| 29 | /* Powerdomain basic power states */ | 27 | /* Powerdomain basic power states */ |
diff --git a/arch/arm/mach-omap2/powerdomain2xxx_3xxx.c b/arch/arm/mach-omap2/powerdomain2xxx_3xxx.c deleted file mode 100644 index 3950ccfe5f4a..000000000000 --- a/arch/arm/mach-omap2/powerdomain2xxx_3xxx.c +++ /dev/null | |||
| @@ -1,242 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * OMAP2 and OMAP3 powerdomain control | ||
| 3 | * | ||
| 4 | * Copyright (C) 2009-2011 Texas Instruments, Inc. | ||
| 5 | * Copyright (C) 2007-2009 Nokia Corporation | ||
| 6 | * | ||
| 7 | * Derived from mach-omap2/powerdomain.c written by Paul Walmsley | ||
| 8 | * Rajendra Nayak <rnayak@ti.com> | ||
| 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/io.h> | ||
| 16 | #include <linux/errno.h> | ||
| 17 | #include <linux/delay.h> | ||
| 18 | #include <linux/bug.h> | ||
| 19 | |||
| 20 | #include <plat/prcm.h> | ||
| 21 | |||
| 22 | #include "powerdomain.h" | ||
| 23 | #include "prm.h" | ||
| 24 | #include "prm-regbits-24xx.h" | ||
| 25 | #include "prm-regbits-34xx.h" | ||
| 26 | |||
| 27 | |||
| 28 | /* Common functions across OMAP2 and OMAP3 */ | ||
| 29 | static int omap2_pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst) | ||
| 30 | { | ||
| 31 | omap2_prm_rmw_mod_reg_bits(OMAP_POWERSTATE_MASK, | ||
| 32 | (pwrst << OMAP_POWERSTATE_SHIFT), | ||
| 33 | pwrdm->prcm_offs, OMAP2_PM_PWSTCTRL); | ||
| 34 | return 0; | ||
| 35 | } | ||
| 36 | |||
| 37 | static int omap2_pwrdm_read_next_pwrst(struct powerdomain *pwrdm) | ||
| 38 | { | ||
| 39 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, | ||
| 40 | OMAP2_PM_PWSTCTRL, | ||
| 41 | OMAP_POWERSTATE_MASK); | ||
| 42 | } | ||
| 43 | |||
| 44 | static int omap2_pwrdm_read_pwrst(struct powerdomain *pwrdm) | ||
| 45 | { | ||
| 46 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, | ||
| 47 | OMAP2_PM_PWSTST, | ||
| 48 | OMAP_POWERSTATEST_MASK); | ||
| 49 | } | ||
| 50 | |||
| 51 | static int omap2_pwrdm_set_mem_onst(struct powerdomain *pwrdm, u8 bank, | ||
| 52 | u8 pwrst) | ||
| 53 | { | ||
| 54 | u32 m; | ||
| 55 | |||
| 56 | m = omap2_pwrdm_get_mem_bank_onstate_mask(bank); | ||
| 57 | |||
| 58 | omap2_prm_rmw_mod_reg_bits(m, (pwrst << __ffs(m)), pwrdm->prcm_offs, | ||
| 59 | OMAP2_PM_PWSTCTRL); | ||
| 60 | |||
| 61 | return 0; | ||
| 62 | } | ||
| 63 | |||
| 64 | static int omap2_pwrdm_set_mem_retst(struct powerdomain *pwrdm, u8 bank, | ||
| 65 | u8 pwrst) | ||
| 66 | { | ||
| 67 | u32 m; | ||
| 68 | |||
| 69 | m = omap2_pwrdm_get_mem_bank_retst_mask(bank); | ||
| 70 | |||
| 71 | omap2_prm_rmw_mod_reg_bits(m, (pwrst << __ffs(m)), pwrdm->prcm_offs, | ||
| 72 | OMAP2_PM_PWSTCTRL); | ||
| 73 | |||
| 74 | return 0; | ||
| 75 | } | ||
| 76 | |||
| 77 | static int omap2_pwrdm_read_mem_pwrst(struct powerdomain *pwrdm, u8 bank) | ||
| 78 | { | ||
| 79 | u32 m; | ||
| 80 | |||
| 81 | m = omap2_pwrdm_get_mem_bank_stst_mask(bank); | ||
| 82 | |||
| 83 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, OMAP2_PM_PWSTST, | ||
| 84 | m); | ||
| 85 | } | ||
| 86 | |||
| 87 | static int omap2_pwrdm_read_mem_retst(struct powerdomain *pwrdm, u8 bank) | ||
| 88 | { | ||
| 89 | u32 m; | ||
| 90 | |||
| 91 | m = omap2_pwrdm_get_mem_bank_retst_mask(bank); | ||
| 92 | |||
| 93 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, | ||
| 94 | OMAP2_PM_PWSTCTRL, m); | ||
| 95 | } | ||
| 96 | |||
| 97 | static int omap2_pwrdm_set_logic_retst(struct powerdomain *pwrdm, u8 pwrst) | ||
| 98 | { | ||
| 99 | u32 v; | ||
| 100 | |||
| 101 | v = pwrst << __ffs(OMAP3430_LOGICL1CACHERETSTATE_MASK); | ||
| 102 | omap2_prm_rmw_mod_reg_bits(OMAP3430_LOGICL1CACHERETSTATE_MASK, v, | ||
| 103 | pwrdm->prcm_offs, OMAP2_PM_PWSTCTRL); | ||
| 104 | |||
| 105 | return 0; | ||
| 106 | } | ||
| 107 | |||
| 108 | static int omap2_pwrdm_wait_transition(struct powerdomain *pwrdm) | ||
| 109 | { | ||
| 110 | u32 c = 0; | ||
| 111 | |||
| 112 | /* | ||
| 113 | * REVISIT: pwrdm_wait_transition() may be better implemented | ||
| 114 | * via a callback and a periodic timer check -- how long do we expect | ||
| 115 | * powerdomain transitions to take? | ||
| 116 | */ | ||
| 117 | |||
| 118 | /* XXX Is this udelay() value meaningful? */ | ||
| 119 | while ((omap2_prm_read_mod_reg(pwrdm->prcm_offs, OMAP2_PM_PWSTST) & | ||
| 120 | OMAP_INTRANSITION_MASK) && | ||
| 121 | (c++ < PWRDM_TRANSITION_BAILOUT)) | ||
| 122 | udelay(1); | ||
| 123 | |||
| 124 | if (c > PWRDM_TRANSITION_BAILOUT) { | ||
| 125 | pr_err("powerdomain: %s: waited too long to complete transition\n", | ||
| 126 | pwrdm->name); | ||
| 127 | return -EAGAIN; | ||
| 128 | } | ||
| 129 | |||
| 130 | pr_debug("powerdomain: completed transition in %d loops\n", c); | ||
| 131 | |||
| 132 | return 0; | ||
| 133 | } | ||
| 134 | |||
| 135 | /* Applicable only for OMAP3. Not supported on OMAP2 */ | ||
| 136 | static int omap3_pwrdm_read_prev_pwrst(struct powerdomain *pwrdm) | ||
| 137 | { | ||
| 138 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, | ||
| 139 | OMAP3430_PM_PREPWSTST, | ||
| 140 | OMAP3430_LASTPOWERSTATEENTERED_MASK); | ||
| 141 | } | ||
| 142 | |||
| 143 | static int omap3_pwrdm_read_logic_pwrst(struct powerdomain *pwrdm) | ||
| 144 | { | ||
| 145 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, | ||
| 146 | OMAP2_PM_PWSTST, | ||
| 147 | OMAP3430_LOGICSTATEST_MASK); | ||
| 148 | } | ||
| 149 | |||
| 150 | static int omap3_pwrdm_read_logic_retst(struct powerdomain *pwrdm) | ||
| 151 | { | ||
| 152 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, | ||
| 153 | OMAP2_PM_PWSTCTRL, | ||
| 154 | OMAP3430_LOGICSTATEST_MASK); | ||
| 155 | } | ||
| 156 | |||
| 157 | static int omap3_pwrdm_read_prev_logic_pwrst(struct powerdomain *pwrdm) | ||
| 158 | { | ||
| 159 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, | ||
| 160 | OMAP3430_PM_PREPWSTST, | ||
| 161 | OMAP3430_LASTLOGICSTATEENTERED_MASK); | ||
| 162 | } | ||
| 163 | |||
| 164 | static int omap3_get_mem_bank_lastmemst_mask(u8 bank) | ||
| 165 | { | ||
| 166 | switch (bank) { | ||
| 167 | case 0: | ||
| 168 | return OMAP3430_LASTMEM1STATEENTERED_MASK; | ||
| 169 | case 1: | ||
| 170 | return OMAP3430_LASTMEM2STATEENTERED_MASK; | ||
| 171 | case 2: | ||
| 172 | return OMAP3430_LASTSHAREDL2CACHEFLATSTATEENTERED_MASK; | ||
| 173 | case 3: | ||
| 174 | return OMAP3430_LASTL2FLATMEMSTATEENTERED_MASK; | ||
| 175 | default: | ||
| 176 | WARN_ON(1); /* should never happen */ | ||
| 177 | return -EEXIST; | ||
| 178 | } | ||
| 179 | return 0; | ||
| 180 | } | ||
| 181 | |||
| 182 | static int omap3_pwrdm_read_prev_mem_pwrst(struct powerdomain *pwrdm, u8 bank) | ||
| 183 | { | ||
| 184 | u32 m; | ||
| 185 | |||
| 186 | m = omap3_get_mem_bank_lastmemst_mask(bank); | ||
| 187 | |||
| 188 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, | ||
| 189 | OMAP3430_PM_PREPWSTST, m); | ||
| 190 | } | ||
| 191 | |||
| 192 | static int omap3_pwrdm_clear_all_prev_pwrst(struct powerdomain *pwrdm) | ||
| 193 | { | ||
| 194 | omap2_prm_write_mod_reg(0, pwrdm->prcm_offs, OMAP3430_PM_PREPWSTST); | ||
| 195 | return 0; | ||
| 196 | } | ||
| 197 | |||
| 198 | static int omap3_pwrdm_enable_hdwr_sar(struct powerdomain *pwrdm) | ||
| 199 | { | ||
| 200 | return omap2_prm_rmw_mod_reg_bits(0, | ||
| 201 | 1 << OMAP3430ES2_SAVEANDRESTORE_SHIFT, | ||
| 202 | pwrdm->prcm_offs, OMAP2_PM_PWSTCTRL); | ||
| 203 | } | ||
| 204 | |||
| 205 | static int omap3_pwrdm_disable_hdwr_sar(struct powerdomain *pwrdm) | ||
| 206 | { | ||
| 207 | return omap2_prm_rmw_mod_reg_bits(1 << OMAP3430ES2_SAVEANDRESTORE_SHIFT, | ||
| 208 | 0, pwrdm->prcm_offs, | ||
| 209 | OMAP2_PM_PWSTCTRL); | ||
| 210 | } | ||
| 211 | |||
| 212 | struct pwrdm_ops omap2_pwrdm_operations = { | ||
| 213 | .pwrdm_set_next_pwrst = omap2_pwrdm_set_next_pwrst, | ||
| 214 | .pwrdm_read_next_pwrst = omap2_pwrdm_read_next_pwrst, | ||
| 215 | .pwrdm_read_pwrst = omap2_pwrdm_read_pwrst, | ||
| 216 | .pwrdm_set_logic_retst = omap2_pwrdm_set_logic_retst, | ||
| 217 | .pwrdm_set_mem_onst = omap2_pwrdm_set_mem_onst, | ||
| 218 | .pwrdm_set_mem_retst = omap2_pwrdm_set_mem_retst, | ||
| 219 | .pwrdm_read_mem_pwrst = omap2_pwrdm_read_mem_pwrst, | ||
| 220 | .pwrdm_read_mem_retst = omap2_pwrdm_read_mem_retst, | ||
| 221 | .pwrdm_wait_transition = omap2_pwrdm_wait_transition, | ||
| 222 | }; | ||
| 223 | |||
| 224 | struct pwrdm_ops omap3_pwrdm_operations = { | ||
| 225 | .pwrdm_set_next_pwrst = omap2_pwrdm_set_next_pwrst, | ||
| 226 | .pwrdm_read_next_pwrst = omap2_pwrdm_read_next_pwrst, | ||
| 227 | .pwrdm_read_pwrst = omap2_pwrdm_read_pwrst, | ||
| 228 | .pwrdm_read_prev_pwrst = omap3_pwrdm_read_prev_pwrst, | ||
| 229 | .pwrdm_set_logic_retst = omap2_pwrdm_set_logic_retst, | ||
| 230 | .pwrdm_read_logic_pwrst = omap3_pwrdm_read_logic_pwrst, | ||
| 231 | .pwrdm_read_logic_retst = omap3_pwrdm_read_logic_retst, | ||
| 232 | .pwrdm_read_prev_logic_pwrst = omap3_pwrdm_read_prev_logic_pwrst, | ||
| 233 | .pwrdm_set_mem_onst = omap2_pwrdm_set_mem_onst, | ||
| 234 | .pwrdm_set_mem_retst = omap2_pwrdm_set_mem_retst, | ||
| 235 | .pwrdm_read_mem_pwrst = omap2_pwrdm_read_mem_pwrst, | ||
| 236 | .pwrdm_read_mem_retst = omap2_pwrdm_read_mem_retst, | ||
| 237 | .pwrdm_read_prev_mem_pwrst = omap3_pwrdm_read_prev_mem_pwrst, | ||
| 238 | .pwrdm_clear_all_prev_pwrst = omap3_pwrdm_clear_all_prev_pwrst, | ||
| 239 | .pwrdm_enable_hdwr_sar = omap3_pwrdm_enable_hdwr_sar, | ||
| 240 | .pwrdm_disable_hdwr_sar = omap3_pwrdm_disable_hdwr_sar, | ||
| 241 | .pwrdm_wait_transition = omap2_pwrdm_wait_transition, | ||
| 242 | }; | ||
diff --git a/arch/arm/mach-omap2/powerdomain33xx.c b/arch/arm/mach-omap2/powerdomain33xx.c deleted file mode 100644 index 67c5663899b6..000000000000 --- a/arch/arm/mach-omap2/powerdomain33xx.c +++ /dev/null | |||
| @@ -1,229 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * AM33XX Powerdomain control | ||
| 3 | * | ||
| 4 | * Copyright (C) 2011-2012 Texas Instruments Incorporated - http://www.ti.com/ | ||
| 5 | * | ||
| 6 | * Derived from mach-omap2/powerdomain44xx.c written by Rajendra Nayak | ||
| 7 | * <rnayak@ti.com> | ||
| 8 | * | ||
| 9 | * This program is free software; you can redistribute it and/or | ||
| 10 | * modify it under the terms of the GNU General Public License as | ||
| 11 | * published by the Free Software Foundation version 2. | ||
| 12 | * | ||
| 13 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any | ||
| 14 | * kind, whether express or implied; without even the implied warranty | ||
| 15 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | * GNU General Public License for more details. | ||
| 17 | */ | ||
| 18 | |||
| 19 | #include <linux/io.h> | ||
| 20 | #include <linux/errno.h> | ||
| 21 | #include <linux/delay.h> | ||
| 22 | |||
| 23 | #include <plat/prcm.h> | ||
| 24 | |||
| 25 | #include "powerdomain.h" | ||
| 26 | #include "prm33xx.h" | ||
| 27 | #include "prm-regbits-33xx.h" | ||
| 28 | |||
| 29 | |||
| 30 | static int am33xx_pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst) | ||
| 31 | { | ||
| 32 | am33xx_prm_rmw_reg_bits(OMAP_POWERSTATE_MASK, | ||
| 33 | (pwrst << OMAP_POWERSTATE_SHIFT), | ||
| 34 | pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 35 | return 0; | ||
| 36 | } | ||
| 37 | |||
| 38 | static int am33xx_pwrdm_read_next_pwrst(struct powerdomain *pwrdm) | ||
| 39 | { | ||
| 40 | u32 v; | ||
| 41 | |||
| 42 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 43 | v &= OMAP_POWERSTATE_MASK; | ||
| 44 | v >>= OMAP_POWERSTATE_SHIFT; | ||
| 45 | |||
| 46 | return v; | ||
| 47 | } | ||
| 48 | |||
| 49 | static int am33xx_pwrdm_read_pwrst(struct powerdomain *pwrdm) | ||
| 50 | { | ||
| 51 | u32 v; | ||
| 52 | |||
| 53 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs); | ||
| 54 | v &= OMAP_POWERSTATEST_MASK; | ||
| 55 | v >>= OMAP_POWERSTATEST_SHIFT; | ||
| 56 | |||
| 57 | return v; | ||
| 58 | } | ||
| 59 | |||
| 60 | static int am33xx_pwrdm_read_prev_pwrst(struct powerdomain *pwrdm) | ||
| 61 | { | ||
| 62 | u32 v; | ||
| 63 | |||
| 64 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs); | ||
| 65 | v &= AM33XX_LASTPOWERSTATEENTERED_MASK; | ||
| 66 | v >>= AM33XX_LASTPOWERSTATEENTERED_SHIFT; | ||
| 67 | |||
| 68 | return v; | ||
| 69 | } | ||
| 70 | |||
| 71 | static int am33xx_pwrdm_set_lowpwrstchange(struct powerdomain *pwrdm) | ||
| 72 | { | ||
| 73 | am33xx_prm_rmw_reg_bits(AM33XX_LOWPOWERSTATECHANGE_MASK, | ||
| 74 | (1 << AM33XX_LOWPOWERSTATECHANGE_SHIFT), | ||
| 75 | pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 76 | return 0; | ||
| 77 | } | ||
| 78 | |||
| 79 | static int am33xx_pwrdm_clear_all_prev_pwrst(struct powerdomain *pwrdm) | ||
| 80 | { | ||
| 81 | am33xx_prm_rmw_reg_bits(AM33XX_LASTPOWERSTATEENTERED_MASK, | ||
| 82 | AM33XX_LASTPOWERSTATEENTERED_MASK, | ||
| 83 | pwrdm->prcm_offs, pwrdm->pwrstst_offs); | ||
| 84 | return 0; | ||
| 85 | } | ||
| 86 | |||
| 87 | static int am33xx_pwrdm_set_logic_retst(struct powerdomain *pwrdm, u8 pwrst) | ||
| 88 | { | ||
| 89 | u32 m; | ||
| 90 | |||
| 91 | m = pwrdm->logicretstate_mask; | ||
| 92 | if (!m) | ||
| 93 | return -EINVAL; | ||
| 94 | |||
| 95 | am33xx_prm_rmw_reg_bits(m, (pwrst << __ffs(m)), | ||
| 96 | pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 97 | |||
| 98 | return 0; | ||
| 99 | } | ||
| 100 | |||
| 101 | static int am33xx_pwrdm_read_logic_pwrst(struct powerdomain *pwrdm) | ||
| 102 | { | ||
| 103 | u32 v; | ||
| 104 | |||
| 105 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs); | ||
| 106 | v &= AM33XX_LOGICSTATEST_MASK; | ||
| 107 | v >>= AM33XX_LOGICSTATEST_SHIFT; | ||
| 108 | |||
| 109 | return v; | ||
| 110 | } | ||
| 111 | |||
| 112 | static int am33xx_pwrdm_read_logic_retst(struct powerdomain *pwrdm) | ||
| 113 | { | ||
| 114 | u32 v, m; | ||
| 115 | |||
| 116 | m = pwrdm->logicretstate_mask; | ||
| 117 | if (!m) | ||
| 118 | return -EINVAL; | ||
| 119 | |||
| 120 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 121 | v &= m; | ||
| 122 | v >>= __ffs(m); | ||
| 123 | |||
| 124 | return v; | ||
| 125 | } | ||
| 126 | |||
| 127 | static int am33xx_pwrdm_set_mem_onst(struct powerdomain *pwrdm, u8 bank, | ||
| 128 | u8 pwrst) | ||
| 129 | { | ||
| 130 | u32 m; | ||
| 131 | |||
| 132 | m = pwrdm->mem_on_mask[bank]; | ||
| 133 | if (!m) | ||
| 134 | return -EINVAL; | ||
| 135 | |||
| 136 | am33xx_prm_rmw_reg_bits(m, (pwrst << __ffs(m)), | ||
| 137 | pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 138 | |||
| 139 | return 0; | ||
| 140 | } | ||
| 141 | |||
| 142 | static int am33xx_pwrdm_set_mem_retst(struct powerdomain *pwrdm, u8 bank, | ||
| 143 | u8 pwrst) | ||
| 144 | { | ||
| 145 | u32 m; | ||
| 146 | |||
| 147 | m = pwrdm->mem_ret_mask[bank]; | ||
| 148 | if (!m) | ||
| 149 | return -EINVAL; | ||
| 150 | |||
| 151 | am33xx_prm_rmw_reg_bits(m, (pwrst << __ffs(m)), | ||
| 152 | pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 153 | |||
| 154 | return 0; | ||
| 155 | } | ||
| 156 | |||
| 157 | static int am33xx_pwrdm_read_mem_pwrst(struct powerdomain *pwrdm, u8 bank) | ||
| 158 | { | ||
| 159 | u32 m, v; | ||
| 160 | |||
| 161 | m = pwrdm->mem_pwrst_mask[bank]; | ||
| 162 | if (!m) | ||
| 163 | return -EINVAL; | ||
| 164 | |||
| 165 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs); | ||
| 166 | v &= m; | ||
| 167 | v >>= __ffs(m); | ||
| 168 | |||
| 169 | return v; | ||
| 170 | } | ||
| 171 | |||
| 172 | static int am33xx_pwrdm_read_mem_retst(struct powerdomain *pwrdm, u8 bank) | ||
| 173 | { | ||
| 174 | u32 m, v; | ||
| 175 | |||
| 176 | m = pwrdm->mem_retst_mask[bank]; | ||
| 177 | if (!m) | ||
| 178 | return -EINVAL; | ||
| 179 | |||
| 180 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 181 | v &= m; | ||
| 182 | v >>= __ffs(m); | ||
| 183 | |||
| 184 | return v; | ||
| 185 | } | ||
| 186 | |||
| 187 | static int am33xx_pwrdm_wait_transition(struct powerdomain *pwrdm) | ||
| 188 | { | ||
| 189 | u32 c = 0; | ||
| 190 | |||
| 191 | /* | ||
| 192 | * REVISIT: pwrdm_wait_transition() may be better implemented | ||
| 193 | * via a callback and a periodic timer check -- how long do we expect | ||
| 194 | * powerdomain transitions to take? | ||
| 195 | */ | ||
| 196 | |||
| 197 | /* XXX Is this udelay() value meaningful? */ | ||
| 198 | while ((am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs) | ||
| 199 | & OMAP_INTRANSITION_MASK) && | ||
| 200 | (c++ < PWRDM_TRANSITION_BAILOUT)) | ||
| 201 | udelay(1); | ||
| 202 | |||
| 203 | if (c > PWRDM_TRANSITION_BAILOUT) { | ||
| 204 | pr_err("powerdomain: %s: waited too long to complete transition\n", | ||
| 205 | pwrdm->name); | ||
| 206 | return -EAGAIN; | ||
| 207 | } | ||
| 208 | |||
| 209 | pr_debug("powerdomain: completed transition in %d loops\n", c); | ||
| 210 | |||
| 211 | return 0; | ||
| 212 | } | ||
| 213 | |||
| 214 | struct pwrdm_ops am33xx_pwrdm_operations = { | ||
| 215 | .pwrdm_set_next_pwrst = am33xx_pwrdm_set_next_pwrst, | ||
| 216 | .pwrdm_read_next_pwrst = am33xx_pwrdm_read_next_pwrst, | ||
| 217 | .pwrdm_read_pwrst = am33xx_pwrdm_read_pwrst, | ||
| 218 | .pwrdm_read_prev_pwrst = am33xx_pwrdm_read_prev_pwrst, | ||
| 219 | .pwrdm_set_logic_retst = am33xx_pwrdm_set_logic_retst, | ||
| 220 | .pwrdm_read_logic_pwrst = am33xx_pwrdm_read_logic_pwrst, | ||
| 221 | .pwrdm_read_logic_retst = am33xx_pwrdm_read_logic_retst, | ||
| 222 | .pwrdm_clear_all_prev_pwrst = am33xx_pwrdm_clear_all_prev_pwrst, | ||
| 223 | .pwrdm_set_lowpwrstchange = am33xx_pwrdm_set_lowpwrstchange, | ||
| 224 | .pwrdm_read_mem_pwrst = am33xx_pwrdm_read_mem_pwrst, | ||
| 225 | .pwrdm_read_mem_retst = am33xx_pwrdm_read_mem_retst, | ||
| 226 | .pwrdm_set_mem_onst = am33xx_pwrdm_set_mem_onst, | ||
| 227 | .pwrdm_set_mem_retst = am33xx_pwrdm_set_mem_retst, | ||
| 228 | .pwrdm_wait_transition = am33xx_pwrdm_wait_transition, | ||
| 229 | }; | ||
diff --git a/arch/arm/mach-omap2/powerdomain44xx.c b/arch/arm/mach-omap2/powerdomain44xx.c deleted file mode 100644 index aceb4f464c9b..000000000000 --- a/arch/arm/mach-omap2/powerdomain44xx.c +++ /dev/null | |||
| @@ -1,285 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * OMAP4 powerdomain control | ||
| 3 | * | ||
| 4 | * Copyright (C) 2009-2010, 2012 Texas Instruments, Inc. | ||
| 5 | * Copyright (C) 2007-2009 Nokia Corporation | ||
| 6 | * | ||
| 7 | * Derived from mach-omap2/powerdomain.c written by Paul Walmsley | ||
| 8 | * Rajendra Nayak <rnayak@ti.com> | ||
| 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/io.h> | ||
| 16 | #include <linux/errno.h> | ||
| 17 | #include <linux/delay.h> | ||
| 18 | #include <linux/bug.h> | ||
| 19 | |||
| 20 | #include "powerdomain.h" | ||
| 21 | #include <plat/prcm.h> | ||
| 22 | #include "prm2xxx_3xxx.h" | ||
| 23 | #include "prm44xx.h" | ||
| 24 | #include "prminst44xx.h" | ||
| 25 | #include "prm-regbits-44xx.h" | ||
| 26 | |||
| 27 | static int omap4_pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst) | ||
| 28 | { | ||
| 29 | omap4_prminst_rmw_inst_reg_bits(OMAP_POWERSTATE_MASK, | ||
| 30 | (pwrst << OMAP_POWERSTATE_SHIFT), | ||
| 31 | pwrdm->prcm_partition, | ||
| 32 | pwrdm->prcm_offs, OMAP4_PM_PWSTCTRL); | ||
| 33 | return 0; | ||
| 34 | } | ||
| 35 | |||
| 36 | static int omap4_pwrdm_read_next_pwrst(struct powerdomain *pwrdm) | ||
| 37 | { | ||
| 38 | u32 v; | ||
| 39 | |||
| 40 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 41 | OMAP4_PM_PWSTCTRL); | ||
| 42 | v &= OMAP_POWERSTATE_MASK; | ||
| 43 | v >>= OMAP_POWERSTATE_SHIFT; | ||
| 44 | |||
| 45 | return v; | ||
| 46 | } | ||
| 47 | |||
| 48 | static int omap4_pwrdm_read_pwrst(struct powerdomain *pwrdm) | ||
| 49 | { | ||
| 50 | u32 v; | ||
| 51 | |||
| 52 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 53 | OMAP4_PM_PWSTST); | ||
| 54 | v &= OMAP_POWERSTATEST_MASK; | ||
| 55 | v >>= OMAP_POWERSTATEST_SHIFT; | ||
| 56 | |||
| 57 | return v; | ||
| 58 | } | ||
| 59 | |||
| 60 | static int omap4_pwrdm_read_prev_pwrst(struct powerdomain *pwrdm) | ||
| 61 | { | ||
| 62 | u32 v; | ||
| 63 | |||
| 64 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 65 | OMAP4_PM_PWSTST); | ||
| 66 | v &= OMAP4430_LASTPOWERSTATEENTERED_MASK; | ||
| 67 | v >>= OMAP4430_LASTPOWERSTATEENTERED_SHIFT; | ||
| 68 | |||
| 69 | return v; | ||
| 70 | } | ||
| 71 | |||
| 72 | static int omap4_pwrdm_set_lowpwrstchange(struct powerdomain *pwrdm) | ||
| 73 | { | ||
| 74 | omap4_prminst_rmw_inst_reg_bits(OMAP4430_LOWPOWERSTATECHANGE_MASK, | ||
| 75 | (1 << OMAP4430_LOWPOWERSTATECHANGE_SHIFT), | ||
| 76 | pwrdm->prcm_partition, | ||
| 77 | pwrdm->prcm_offs, OMAP4_PM_PWSTCTRL); | ||
| 78 | return 0; | ||
| 79 | } | ||
| 80 | |||
| 81 | static int omap4_pwrdm_clear_all_prev_pwrst(struct powerdomain *pwrdm) | ||
| 82 | { | ||
| 83 | omap4_prminst_rmw_inst_reg_bits(OMAP4430_LASTPOWERSTATEENTERED_MASK, | ||
| 84 | OMAP4430_LASTPOWERSTATEENTERED_MASK, | ||
| 85 | pwrdm->prcm_partition, | ||
| 86 | pwrdm->prcm_offs, OMAP4_PM_PWSTST); | ||
| 87 | return 0; | ||
| 88 | } | ||
| 89 | |||
| 90 | static int omap4_pwrdm_set_logic_retst(struct powerdomain *pwrdm, u8 pwrst) | ||
| 91 | { | ||
| 92 | u32 v; | ||
| 93 | |||
| 94 | v = pwrst << __ffs(OMAP4430_LOGICRETSTATE_MASK); | ||
| 95 | omap4_prminst_rmw_inst_reg_bits(OMAP4430_LOGICRETSTATE_MASK, v, | ||
| 96 | pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 97 | OMAP4_PM_PWSTCTRL); | ||
| 98 | |||
| 99 | return 0; | ||
| 100 | } | ||
| 101 | |||
| 102 | static int omap4_pwrdm_set_mem_onst(struct powerdomain *pwrdm, u8 bank, | ||
| 103 | u8 pwrst) | ||
| 104 | { | ||
| 105 | u32 m; | ||
| 106 | |||
| 107 | m = omap2_pwrdm_get_mem_bank_onstate_mask(bank); | ||
| 108 | |||
| 109 | omap4_prminst_rmw_inst_reg_bits(m, (pwrst << __ffs(m)), | ||
| 110 | pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 111 | OMAP4_PM_PWSTCTRL); | ||
| 112 | |||
| 113 | return 0; | ||
| 114 | } | ||
| 115 | |||
| 116 | static int omap4_pwrdm_set_mem_retst(struct powerdomain *pwrdm, u8 bank, | ||
| 117 | u8 pwrst) | ||
| 118 | { | ||
| 119 | u32 m; | ||
| 120 | |||
| 121 | m = omap2_pwrdm_get_mem_bank_retst_mask(bank); | ||
| 122 | |||
| 123 | omap4_prminst_rmw_inst_reg_bits(m, (pwrst << __ffs(m)), | ||
| 124 | pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 125 | OMAP4_PM_PWSTCTRL); | ||
| 126 | |||
| 127 | return 0; | ||
| 128 | } | ||
| 129 | |||
| 130 | static int omap4_pwrdm_read_logic_pwrst(struct powerdomain *pwrdm) | ||
| 131 | { | ||
| 132 | u32 v; | ||
| 133 | |||
| 134 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 135 | OMAP4_PM_PWSTST); | ||
| 136 | v &= OMAP4430_LOGICSTATEST_MASK; | ||
| 137 | v >>= OMAP4430_LOGICSTATEST_SHIFT; | ||
| 138 | |||
| 139 | return v; | ||
| 140 | } | ||
| 141 | |||
| 142 | static int omap4_pwrdm_read_logic_retst(struct powerdomain *pwrdm) | ||
| 143 | { | ||
| 144 | u32 v; | ||
| 145 | |||
| 146 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 147 | OMAP4_PM_PWSTCTRL); | ||
| 148 | v &= OMAP4430_LOGICRETSTATE_MASK; | ||
| 149 | v >>= OMAP4430_LOGICRETSTATE_SHIFT; | ||
| 150 | |||
| 151 | return v; | ||
| 152 | } | ||
| 153 | |||
| 154 | /** | ||
| 155 | * omap4_pwrdm_read_prev_logic_pwrst - read the previous logic powerstate | ||
| 156 | * @pwrdm: struct powerdomain * to read the state for | ||
| 157 | * | ||
| 158 | * Reads the previous logic powerstate for a powerdomain. This | ||
| 159 | * function must determine the previous logic powerstate by first | ||
| 160 | * checking the previous powerstate for the domain. If that was OFF, | ||
| 161 | * then logic has been lost. If previous state was RETENTION, the | ||
| 162 | * function reads the setting for the next retention logic state to | ||
| 163 | * see the actual value. In every other case, the logic is | ||
| 164 | * retained. Returns either PWRDM_POWER_OFF or PWRDM_POWER_RET | ||
| 165 | * depending whether the logic was retained or not. | ||
| 166 | */ | ||
| 167 | static int omap4_pwrdm_read_prev_logic_pwrst(struct powerdomain *pwrdm) | ||
| 168 | { | ||
| 169 | int state; | ||
| 170 | |||
| 171 | state = omap4_pwrdm_read_prev_pwrst(pwrdm); | ||
| 172 | |||
| 173 | if (state == PWRDM_POWER_OFF) | ||
| 174 | return PWRDM_POWER_OFF; | ||
| 175 | |||
| 176 | if (state != PWRDM_POWER_RET) | ||
| 177 | return PWRDM_POWER_RET; | ||
| 178 | |||
| 179 | return omap4_pwrdm_read_logic_retst(pwrdm); | ||
| 180 | } | ||
| 181 | |||
| 182 | static int omap4_pwrdm_read_mem_pwrst(struct powerdomain *pwrdm, u8 bank) | ||
| 183 | { | ||
| 184 | u32 m, v; | ||
| 185 | |||
| 186 | m = omap2_pwrdm_get_mem_bank_stst_mask(bank); | ||
| 187 | |||
| 188 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 189 | OMAP4_PM_PWSTST); | ||
| 190 | v &= m; | ||
| 191 | v >>= __ffs(m); | ||
| 192 | |||
| 193 | return v; | ||
| 194 | } | ||
| 195 | |||
| 196 | static int omap4_pwrdm_read_mem_retst(struct powerdomain *pwrdm, u8 bank) | ||
| 197 | { | ||
| 198 | u32 m, v; | ||
| 199 | |||
| 200 | m = omap2_pwrdm_get_mem_bank_retst_mask(bank); | ||
| 201 | |||
| 202 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 203 | OMAP4_PM_PWSTCTRL); | ||
| 204 | v &= m; | ||
| 205 | v >>= __ffs(m); | ||
| 206 | |||
| 207 | return v; | ||
| 208 | } | ||
| 209 | |||
| 210 | /** | ||
| 211 | * omap4_pwrdm_read_prev_mem_pwrst - reads the previous memory powerstate | ||
| 212 | * @pwrdm: struct powerdomain * to read mem powerstate for | ||
| 213 | * @bank: memory bank index | ||
| 214 | * | ||
| 215 | * Reads the previous memory powerstate for a powerdomain. This | ||
| 216 | * function must determine the previous memory powerstate by first | ||
| 217 | * checking the previous powerstate for the domain. If that was OFF, | ||
| 218 | * then logic has been lost. If previous state was RETENTION, the | ||
| 219 | * function reads the setting for the next memory retention state to | ||
| 220 | * see the actual value. In every other case, the logic is | ||
| 221 | * retained. Returns either PWRDM_POWER_OFF or PWRDM_POWER_RET | ||
| 222 | * depending whether logic was retained or not. | ||
| 223 | */ | ||
| 224 | static int omap4_pwrdm_read_prev_mem_pwrst(struct powerdomain *pwrdm, u8 bank) | ||
| 225 | { | ||
| 226 | int state; | ||
| 227 | |||
| 228 | state = omap4_pwrdm_read_prev_pwrst(pwrdm); | ||
| 229 | |||
| 230 | if (state == PWRDM_POWER_OFF) | ||
| 231 | return PWRDM_POWER_OFF; | ||
| 232 | |||
| 233 | if (state != PWRDM_POWER_RET) | ||
| 234 | return PWRDM_POWER_RET; | ||
| 235 | |||
| 236 | return omap4_pwrdm_read_mem_retst(pwrdm, bank); | ||
| 237 | } | ||
| 238 | |||
| 239 | static int omap4_pwrdm_wait_transition(struct powerdomain *pwrdm) | ||
| 240 | { | ||
| 241 | u32 c = 0; | ||
| 242 | |||
| 243 | /* | ||
| 244 | * REVISIT: pwrdm_wait_transition() may be better implemented | ||
| 245 | * via a callback and a periodic timer check -- how long do we expect | ||
| 246 | * powerdomain transitions to take? | ||
| 247 | */ | ||
| 248 | |||
| 249 | /* XXX Is this udelay() value meaningful? */ | ||
| 250 | while ((omap4_prminst_read_inst_reg(pwrdm->prcm_partition, | ||
| 251 | pwrdm->prcm_offs, | ||
| 252 | OMAP4_PM_PWSTST) & | ||
| 253 | OMAP_INTRANSITION_MASK) && | ||
| 254 | (c++ < PWRDM_TRANSITION_BAILOUT)) | ||
| 255 | udelay(1); | ||
| 256 | |||
| 257 | if (c > PWRDM_TRANSITION_BAILOUT) { | ||
| 258 | pr_err("powerdomain: %s: waited too long to complete transition\n", | ||
| 259 | pwrdm->name); | ||
| 260 | return -EAGAIN; | ||
| 261 | } | ||
| 262 | |||
| 263 | pr_debug("powerdomain: completed transition in %d loops\n", c); | ||
| 264 | |||
| 265 | return 0; | ||
| 266 | } | ||
| 267 | |||
| 268 | struct pwrdm_ops omap4_pwrdm_operations = { | ||
| 269 | .pwrdm_set_next_pwrst = omap4_pwrdm_set_next_pwrst, | ||
| 270 | .pwrdm_read_next_pwrst = omap4_pwrdm_read_next_pwrst, | ||
| 271 | .pwrdm_read_pwrst = omap4_pwrdm_read_pwrst, | ||
| 272 | .pwrdm_read_prev_pwrst = omap4_pwrdm_read_prev_pwrst, | ||
| 273 | .pwrdm_set_lowpwrstchange = omap4_pwrdm_set_lowpwrstchange, | ||
| 274 | .pwrdm_clear_all_prev_pwrst = omap4_pwrdm_clear_all_prev_pwrst, | ||
| 275 | .pwrdm_set_logic_retst = omap4_pwrdm_set_logic_retst, | ||
| 276 | .pwrdm_read_logic_pwrst = omap4_pwrdm_read_logic_pwrst, | ||
| 277 | .pwrdm_read_prev_logic_pwrst = omap4_pwrdm_read_prev_logic_pwrst, | ||
| 278 | .pwrdm_read_logic_retst = omap4_pwrdm_read_logic_retst, | ||
| 279 | .pwrdm_read_mem_pwrst = omap4_pwrdm_read_mem_pwrst, | ||
| 280 | .pwrdm_read_mem_retst = omap4_pwrdm_read_mem_retst, | ||
| 281 | .pwrdm_read_prev_mem_pwrst = omap4_pwrdm_read_prev_mem_pwrst, | ||
| 282 | .pwrdm_set_mem_onst = omap4_pwrdm_set_mem_onst, | ||
| 283 | .pwrdm_set_mem_retst = omap4_pwrdm_set_mem_retst, | ||
| 284 | .pwrdm_wait_transition = omap4_pwrdm_wait_transition, | ||
| 285 | }; | ||
diff --git a/arch/arm/mach-omap2/powerdomains2xxx_data.c b/arch/arm/mach-omap2/powerdomains2xxx_data.c index 2385c1f009ee..ba520d4f7c7b 100644 --- a/arch/arm/mach-omap2/powerdomains2xxx_data.c +++ b/arch/arm/mach-omap2/powerdomains2xxx_data.c | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
| 15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
| 16 | 16 | ||
| 17 | #include "soc.h" | ||
| 17 | #include "powerdomain.h" | 18 | #include "powerdomain.h" |
| 18 | #include "powerdomains2xxx_3xxx_data.h" | 19 | #include "powerdomains2xxx_3xxx_data.h" |
| 19 | 20 | ||
diff --git a/arch/arm/mach-omap2/prcm.c b/arch/arm/mach-omap2/prcm.c index 0f51e034e0aa..cff270a178c5 100644 --- a/arch/arm/mach-omap2/prcm.c +++ b/arch/arm/mach-omap2/prcm.c | |||
| @@ -28,6 +28,7 @@ | |||
| 28 | #include "common.h" | 28 | #include "common.h" |
| 29 | #include <plat/prcm.h> | 29 | #include <plat/prcm.h> |
| 30 | 30 | ||
| 31 | #include "soc.h" | ||
| 31 | #include "clock.h" | 32 | #include "clock.h" |
| 32 | #include "clock2xxx.h" | 33 | #include "clock2xxx.h" |
| 33 | #include "cm2xxx_3xxx.h" | 34 | #include "cm2xxx_3xxx.h" |
diff --git a/arch/arm/mach-omap2/prm-regbits-24xx.h b/arch/arm/mach-omap2/prm-regbits-24xx.h index 6ac966103f34..638da6dd41c3 100644 --- a/arch/arm/mach-omap2/prm-regbits-24xx.h +++ b/arch/arm/mach-omap2/prm-regbits-24xx.h | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | * published by the Free Software Foundation. | 14 | * published by the Free Software Foundation. |
| 15 | */ | 15 | */ |
| 16 | 16 | ||
| 17 | #include "prm2xxx_3xxx.h" | 17 | #include "prm2xxx.h" |
| 18 | 18 | ||
| 19 | /* Bits shared between registers */ | 19 | /* Bits shared between registers */ |
| 20 | 20 | ||
| @@ -209,9 +209,13 @@ | |||
| 209 | 209 | ||
| 210 | /* RM_RSTST_WKUP specific bits */ | 210 | /* RM_RSTST_WKUP specific bits */ |
| 211 | /* 2430 calls EXTWMPU_RST "EXTWARM_RST" and GLOBALWMPU_RST "GLOBALWARM_RST" */ | 211 | /* 2430 calls EXTWMPU_RST "EXTWARM_RST" and GLOBALWMPU_RST "GLOBALWARM_RST" */ |
| 212 | #define OMAP24XX_EXTWMPU_RST_SHIFT 6 | ||
| 212 | #define OMAP24XX_EXTWMPU_RST_MASK (1 << 6) | 213 | #define OMAP24XX_EXTWMPU_RST_MASK (1 << 6) |
| 214 | #define OMAP24XX_SECU_WD_RST_SHIFT 5 | ||
| 213 | #define OMAP24XX_SECU_WD_RST_MASK (1 << 5) | 215 | #define OMAP24XX_SECU_WD_RST_MASK (1 << 5) |
| 216 | #define OMAP24XX_MPU_WD_RST_SHIFT 4 | ||
| 214 | #define OMAP24XX_MPU_WD_RST_MASK (1 << 4) | 217 | #define OMAP24XX_MPU_WD_RST_MASK (1 << 4) |
| 218 | #define OMAP24XX_SECU_VIOL_RST_SHIFT 3 | ||
| 215 | #define OMAP24XX_SECU_VIOL_RST_MASK (1 << 3) | 219 | #define OMAP24XX_SECU_VIOL_RST_MASK (1 << 3) |
| 216 | 220 | ||
| 217 | /* PM_WKEN_WKUP specific bits */ | 221 | /* PM_WKEN_WKUP specific bits */ |
diff --git a/arch/arm/mach-omap2/prm-regbits-34xx.h b/arch/arm/mach-omap2/prm-regbits-34xx.h index 64c087af6a8b..838b594d4e13 100644 --- a/arch/arm/mach-omap2/prm-regbits-34xx.h +++ b/arch/arm/mach-omap2/prm-regbits-34xx.h | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | #define __ARCH_ARM_MACH_OMAP2_PRM_REGBITS_34XX_H | 14 | #define __ARCH_ARM_MACH_OMAP2_PRM_REGBITS_34XX_H |
| 15 | 15 | ||
| 16 | 16 | ||
| 17 | #include "prm2xxx_3xxx.h" | 17 | #include "prm3xxx.h" |
| 18 | 18 | ||
| 19 | /* Shared register bits */ | 19 | /* Shared register bits */ |
| 20 | 20 | ||
| @@ -509,15 +509,25 @@ | |||
| 509 | #define OMAP3430_RSTTIME1_MASK (0xff << 0) | 509 | #define OMAP3430_RSTTIME1_MASK (0xff << 0) |
| 510 | 510 | ||
| 511 | /* PRM_RSTST */ | 511 | /* PRM_RSTST */ |
| 512 | #define OMAP3430_ICECRUSHER_RST_SHIFT 10 | ||
| 512 | #define OMAP3430_ICECRUSHER_RST_MASK (1 << 10) | 513 | #define OMAP3430_ICECRUSHER_RST_MASK (1 << 10) |
| 514 | #define OMAP3430_ICEPICK_RST_SHIFT 9 | ||
| 513 | #define OMAP3430_ICEPICK_RST_MASK (1 << 9) | 515 | #define OMAP3430_ICEPICK_RST_MASK (1 << 9) |
| 516 | #define OMAP3430_VDD2_VOLTAGE_MANAGER_RST_SHIFT 8 | ||
| 514 | #define OMAP3430_VDD2_VOLTAGE_MANAGER_RST_MASK (1 << 8) | 517 | #define OMAP3430_VDD2_VOLTAGE_MANAGER_RST_MASK (1 << 8) |
| 518 | #define OMAP3430_VDD1_VOLTAGE_MANAGER_RST_SHIFT 7 | ||
| 515 | #define OMAP3430_VDD1_VOLTAGE_MANAGER_RST_MASK (1 << 7) | 519 | #define OMAP3430_VDD1_VOLTAGE_MANAGER_RST_MASK (1 << 7) |
| 520 | #define OMAP3430_EXTERNAL_WARM_RST_SHIFT 6 | ||
| 516 | #define OMAP3430_EXTERNAL_WARM_RST_MASK (1 << 6) | 521 | #define OMAP3430_EXTERNAL_WARM_RST_MASK (1 << 6) |
| 522 | #define OMAP3430_SECURE_WD_RST_SHIFT 5 | ||
| 517 | #define OMAP3430_SECURE_WD_RST_MASK (1 << 5) | 523 | #define OMAP3430_SECURE_WD_RST_MASK (1 << 5) |
| 524 | #define OMAP3430_MPU_WD_RST_SHIFT 4 | ||
| 518 | #define OMAP3430_MPU_WD_RST_MASK (1 << 4) | 525 | #define OMAP3430_MPU_WD_RST_MASK (1 << 4) |
| 526 | #define OMAP3430_SECURITY_VIOL_RST_SHIFT 3 | ||
| 519 | #define OMAP3430_SECURITY_VIOL_RST_MASK (1 << 3) | 527 | #define OMAP3430_SECURITY_VIOL_RST_MASK (1 << 3) |
| 528 | #define OMAP3430_GLOBAL_SW_RST_SHIFT 1 | ||
| 520 | #define OMAP3430_GLOBAL_SW_RST_MASK (1 << 1) | 529 | #define OMAP3430_GLOBAL_SW_RST_MASK (1 << 1) |
| 530 | #define OMAP3430_GLOBAL_COLD_RST_SHIFT 0 | ||
| 521 | #define OMAP3430_GLOBAL_COLD_RST_MASK (1 << 0) | 531 | #define OMAP3430_GLOBAL_COLD_RST_MASK (1 << 0) |
| 522 | 532 | ||
| 523 | /* PRM_VOLTCTRL */ | 533 | /* PRM_VOLTCTRL */ |
diff --git a/arch/arm/mach-omap2/prm.h b/arch/arm/mach-omap2/prm.h index 39d562169d18..c30ab5de8d1d 100644 --- a/arch/arm/mach-omap2/prm.h +++ b/arch/arm/mach-omap2/prm.h | |||
| @@ -52,5 +52,58 @@ | |||
| 52 | #define OMAP_POWERSTATE_SHIFT 0 | 52 | #define OMAP_POWERSTATE_SHIFT 0 |
| 53 | #define OMAP_POWERSTATE_MASK (0x3 << 0) | 53 | #define OMAP_POWERSTATE_MASK (0x3 << 0) |
| 54 | 54 | ||
| 55 | /* | ||
| 56 | * Standardized OMAP reset source bits | ||
| 57 | * | ||
| 58 | * To the extent these happen to match the hardware register bit | ||
| 59 | * shifts, it's purely coincidental. Used by omap-wdt.c. | ||
| 60 | * OMAP_UNKNOWN_RST_SRC_ID_SHIFT is a special value, used whenever | ||
| 61 | * there are any bits remaining in the global PRM_RSTST register that | ||
| 62 | * haven't been identified, or when the PRM code for the current SoC | ||
| 63 | * doesn't know how to interpret the register. | ||
| 64 | */ | ||
| 65 | #define OMAP_GLOBAL_COLD_RST_SRC_ID_SHIFT 0 | ||
| 66 | #define OMAP_GLOBAL_WARM_RST_SRC_ID_SHIFT 1 | ||
| 67 | #define OMAP_SECU_VIOL_RST_SRC_ID_SHIFT 2 | ||
| 68 | #define OMAP_MPU_WD_RST_SRC_ID_SHIFT 3 | ||
| 69 | #define OMAP_SECU_WD_RST_SRC_ID_SHIFT 4 | ||
| 70 | #define OMAP_EXTWARM_RST_SRC_ID_SHIFT 5 | ||
| 71 | #define OMAP_VDD_MPU_VM_RST_SRC_ID_SHIFT 6 | ||
| 72 | #define OMAP_VDD_IVA_VM_RST_SRC_ID_SHIFT 7 | ||
| 73 | #define OMAP_VDD_CORE_VM_RST_SRC_ID_SHIFT 8 | ||
| 74 | #define OMAP_ICEPICK_RST_SRC_ID_SHIFT 9 | ||
| 75 | #define OMAP_ICECRUSHER_RST_SRC_ID_SHIFT 10 | ||
| 76 | #define OMAP_C2C_RST_SRC_ID_SHIFT 11 | ||
| 77 | #define OMAP_UNKNOWN_RST_SRC_ID_SHIFT 12 | ||
| 78 | |||
| 79 | #ifndef __ASSEMBLER__ | ||
| 80 | |||
| 81 | /** | ||
| 82 | * struct prm_reset_src_map - map register bitshifts to standard bitshifts | ||
| 83 | * @reg_shift: bitshift in the PRM reset source register | ||
| 84 | * @std_shift: bitshift equivalent in the standard reset source list | ||
| 85 | * | ||
| 86 | * The fields are signed because -1 is used as a terminator. | ||
| 87 | */ | ||
| 88 | struct prm_reset_src_map { | ||
| 89 | s8 reg_shift; | ||
| 90 | s8 std_shift; | ||
| 91 | }; | ||
| 92 | |||
| 93 | /** | ||
| 94 | * struct prm_ll_data - fn ptrs to per-SoC PRM function implementations | ||
| 95 | * @read_reset_sources: ptr to the Soc PRM-specific get_reset_source impl | ||
| 96 | */ | ||
| 97 | struct prm_ll_data { | ||
| 98 | u32 (*read_reset_sources)(void); | ||
| 99 | }; | ||
| 100 | |||
| 101 | extern int prm_register(struct prm_ll_data *pld); | ||
| 102 | extern int prm_unregister(struct prm_ll_data *pld); | ||
| 103 | |||
| 104 | extern u32 prm_read_reset_sources(void); | ||
| 105 | |||
| 106 | #endif | ||
| 107 | |||
| 55 | 108 | ||
| 56 | #endif | 109 | #endif |
diff --git a/arch/arm/mach-omap2/prm2xxx.c b/arch/arm/mach-omap2/prm2xxx.c new file mode 100644 index 000000000000..e2860f9c111d --- /dev/null +++ b/arch/arm/mach-omap2/prm2xxx.c | |||
| @@ -0,0 +1,126 @@ | |||
| 1 | /* | ||
| 2 | * OMAP2xxx PRM module functions | ||
| 3 | * | ||
| 4 | * Copyright (C) 2010-2012 Texas Instruments, Inc. | ||
| 5 | * Copyright (C) 2010 Nokia Corporation | ||
| 6 | * Benoît Cousson | ||
| 7 | * Paul Walmsley | ||
| 8 | * Rajendra Nayak <rnayak@ti.com> | ||
| 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/errno.h> | ||
| 17 | #include <linux/err.h> | ||
| 18 | #include <linux/io.h> | ||
| 19 | #include <linux/irq.h> | ||
| 20 | |||
| 21 | #include "common.h" | ||
| 22 | #include <plat/cpu.h> | ||
| 23 | #include <plat/prcm.h> | ||
| 24 | |||
| 25 | #include "vp.h" | ||
| 26 | #include "powerdomain.h" | ||
| 27 | #include "clockdomain.h" | ||
| 28 | #include "prm2xxx.h" | ||
| 29 | #include "cm2xxx_3xxx.h" | ||
| 30 | #include "prm-regbits-24xx.h" | ||
| 31 | |||
| 32 | /* | ||
| 33 | * omap2xxx_prm_reset_src_map - map from bits in the PRM_RSTST_WKUP | ||
| 34 | * hardware register (which are specific to the OMAP2xxx SoCs) to | ||
| 35 | * reset source ID bit shifts (which is an OMAP SoC-independent | ||
| 36 | * enumeration) | ||
| 37 | */ | ||
| 38 | static struct prm_reset_src_map omap2xxx_prm_reset_src_map[] = { | ||
| 39 | { OMAP_GLOBALCOLD_RST_SHIFT, OMAP_GLOBAL_COLD_RST_SRC_ID_SHIFT }, | ||
| 40 | { OMAP_GLOBALWARM_RST_SHIFT, OMAP_GLOBAL_WARM_RST_SRC_ID_SHIFT }, | ||
| 41 | { OMAP24XX_SECU_VIOL_RST_SHIFT, OMAP_SECU_VIOL_RST_SRC_ID_SHIFT }, | ||
| 42 | { OMAP24XX_MPU_WD_RST_SHIFT, OMAP_MPU_WD_RST_SRC_ID_SHIFT }, | ||
| 43 | { OMAP24XX_SECU_WD_RST_SHIFT, OMAP_SECU_WD_RST_SRC_ID_SHIFT }, | ||
| 44 | { OMAP24XX_EXTWMPU_RST_SHIFT, OMAP_EXTWARM_RST_SRC_ID_SHIFT }, | ||
| 45 | { -1, -1 }, | ||
| 46 | }; | ||
| 47 | |||
| 48 | /** | ||
| 49 | * omap2xxx_prm_read_reset_sources - return the last SoC reset source | ||
| 50 | * | ||
| 51 | * Return a u32 representing the last reset sources of the SoC. The | ||
| 52 | * returned reset source bits are standardized across OMAP SoCs. | ||
| 53 | */ | ||
| 54 | static u32 omap2xxx_prm_read_reset_sources(void) | ||
| 55 | { | ||
| 56 | struct prm_reset_src_map *p; | ||
| 57 | u32 r = 0; | ||
| 58 | u32 v; | ||
| 59 | |||
| 60 | v = omap2_prm_read_mod_reg(WKUP_MOD, OMAP2_RM_RSTST); | ||
| 61 | |||
| 62 | p = omap2xxx_prm_reset_src_map; | ||
| 63 | while (p->reg_shift >= 0 && p->std_shift >= 0) { | ||
| 64 | if (v & (1 << p->reg_shift)) | ||
| 65 | r |= 1 << p->std_shift; | ||
| 66 | p++; | ||
| 67 | } | ||
| 68 | |||
| 69 | return r; | ||
| 70 | } | ||
| 71 | |||
| 72 | int omap2xxx_clkdm_sleep(struct clockdomain *clkdm) | ||
| 73 | { | ||
| 74 | omap2_prm_set_mod_reg_bits(OMAP24XX_FORCESTATE_MASK, | ||
| 75 | clkdm->pwrdm.ptr->prcm_offs, | ||
| 76 | OMAP2_PM_PWSTCTRL); | ||
| 77 | return 0; | ||
| 78 | } | ||
| 79 | |||
| 80 | int omap2xxx_clkdm_wakeup(struct clockdomain *clkdm) | ||
| 81 | { | ||
| 82 | omap2_prm_clear_mod_reg_bits(OMAP24XX_FORCESTATE_MASK, | ||
| 83 | clkdm->pwrdm.ptr->prcm_offs, | ||
| 84 | OMAP2_PM_PWSTCTRL); | ||
| 85 | return 0; | ||
| 86 | } | ||
| 87 | |||
| 88 | struct pwrdm_ops omap2_pwrdm_operations = { | ||
| 89 | .pwrdm_set_next_pwrst = omap2_pwrdm_set_next_pwrst, | ||
| 90 | .pwrdm_read_next_pwrst = omap2_pwrdm_read_next_pwrst, | ||
| 91 | .pwrdm_read_pwrst = omap2_pwrdm_read_pwrst, | ||
| 92 | .pwrdm_set_logic_retst = omap2_pwrdm_set_logic_retst, | ||
| 93 | .pwrdm_set_mem_onst = omap2_pwrdm_set_mem_onst, | ||
| 94 | .pwrdm_set_mem_retst = omap2_pwrdm_set_mem_retst, | ||
| 95 | .pwrdm_read_mem_pwrst = omap2_pwrdm_read_mem_pwrst, | ||
| 96 | .pwrdm_read_mem_retst = omap2_pwrdm_read_mem_retst, | ||
| 97 | .pwrdm_wait_transition = omap2_pwrdm_wait_transition, | ||
| 98 | }; | ||
| 99 | |||
| 100 | /* | ||
| 101 | * | ||
| 102 | */ | ||
| 103 | |||
| 104 | static struct prm_ll_data omap2xxx_prm_ll_data = { | ||
| 105 | .read_reset_sources = &omap2xxx_prm_read_reset_sources, | ||
| 106 | }; | ||
| 107 | |||
| 108 | static int __init omap2xxx_prm_init(void) | ||
| 109 | { | ||
| 110 | if (!cpu_is_omap24xx()) | ||
| 111 | return 0; | ||
| 112 | |||
| 113 | return prm_register(&omap2xxx_prm_ll_data); | ||
| 114 | } | ||
| 115 | subsys_initcall(omap2xxx_prm_init); | ||
| 116 | |||
| 117 | static void __exit omap2xxx_prm_exit(void) | ||
| 118 | { | ||
| 119 | if (!cpu_is_omap24xx()) | ||
| 120 | return; | ||
| 121 | |||
| 122 | /* Should never happen */ | ||
| 123 | WARN(prm_unregister(&omap2xxx_prm_ll_data), | ||
| 124 | "%s: prm_ll_data function pointer mismatch\n", __func__); | ||
| 125 | } | ||
| 126 | __exitcall(omap2xxx_prm_exit); | ||
diff --git a/arch/arm/mach-omap2/prm2xxx.h b/arch/arm/mach-omap2/prm2xxx.h new file mode 100644 index 000000000000..1d97112524f1 --- /dev/null +++ b/arch/arm/mach-omap2/prm2xxx.h | |||
| @@ -0,0 +1,132 @@ | |||
| 1 | /* | ||
| 2 | * OMAP2xxx Power/Reset Management (PRM) register definitions | ||
| 3 | * | ||
| 4 | * Copyright (C) 2007-2009, 2011-2012 Texas Instruments, Inc. | ||
| 5 | * Copyright (C) 2008-2010 Nokia Corporation | ||
| 6 | * Paul Walmsley | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License version 2 as | ||
| 10 | * published by the Free Software Foundation. | ||
| 11 | * | ||
| 12 | * The PRM hardware modules on the OMAP2/3 are quite similar to each | ||
| 13 | * other. The PRM on OMAP4 has a new register layout, and is handled | ||
| 14 | * in a separate file. | ||
| 15 | */ | ||
| 16 | #ifndef __ARCH_ARM_MACH_OMAP2_PRM2XXX_H | ||
| 17 | #define __ARCH_ARM_MACH_OMAP2_PRM2XXX_H | ||
| 18 | |||
| 19 | #include "prcm-common.h" | ||
| 20 | #include "prm.h" | ||
| 21 | #include "prm2xxx_3xxx.h" | ||
| 22 | |||
| 23 | #define OMAP2420_PRM_REGADDR(module, reg) \ | ||
| 24 | OMAP2_L4_IO_ADDRESS(OMAP2420_PRM_BASE + (module) + (reg)) | ||
| 25 | #define OMAP2430_PRM_REGADDR(module, reg) \ | ||
| 26 | OMAP2_L4_IO_ADDRESS(OMAP2430_PRM_BASE + (module) + (reg)) | ||
| 27 | |||
| 28 | /* | ||
| 29 | * OMAP2-specific global PRM registers | ||
| 30 | * Use __raw_{read,write}l() with these registers. | ||
| 31 | * | ||
| 32 | * With a few exceptions, these are the register names beginning with | ||
| 33 | * PRCM_* on 24xx. (The exceptions are the IRQSTATUS and IRQENABLE | ||
| 34 | * bits.) | ||
| 35 | * | ||
| 36 | */ | ||
| 37 | |||
| 38 | #define OMAP2_PRCM_REVISION_OFFSET 0x0000 | ||
| 39 | #define OMAP2420_PRCM_REVISION OMAP2420_PRM_REGADDR(OCP_MOD, 0x0000) | ||
| 40 | #define OMAP2_PRCM_SYSCONFIG_OFFSET 0x0010 | ||
| 41 | #define OMAP2420_PRCM_SYSCONFIG OMAP2420_PRM_REGADDR(OCP_MOD, 0x0010) | ||
| 42 | |||
| 43 | #define OMAP2_PRCM_IRQSTATUS_MPU_OFFSET 0x0018 | ||
| 44 | #define OMAP2420_PRCM_IRQSTATUS_MPU OMAP2420_PRM_REGADDR(OCP_MOD, 0x0018) | ||
| 45 | #define OMAP2_PRCM_IRQENABLE_MPU_OFFSET 0x001c | ||
| 46 | #define OMAP2420_PRCM_IRQENABLE_MPU OMAP2420_PRM_REGADDR(OCP_MOD, 0x001c) | ||
| 47 | |||
| 48 | #define OMAP2_PRCM_VOLTCTRL_OFFSET 0x0050 | ||
| 49 | #define OMAP2420_PRCM_VOLTCTRL OMAP2420_PRM_REGADDR(OCP_MOD, 0x0050) | ||
| 50 | #define OMAP2_PRCM_VOLTST_OFFSET 0x0054 | ||
| 51 | #define OMAP2420_PRCM_VOLTST OMAP2420_PRM_REGADDR(OCP_MOD, 0x0054) | ||
| 52 | #define OMAP2_PRCM_CLKSRC_CTRL_OFFSET 0x0060 | ||
| 53 | #define OMAP2420_PRCM_CLKSRC_CTRL OMAP2420_PRM_REGADDR(OCP_MOD, 0x0060) | ||
| 54 | #define OMAP2_PRCM_CLKOUT_CTRL_OFFSET 0x0070 | ||
| 55 | #define OMAP2420_PRCM_CLKOUT_CTRL OMAP2420_PRM_REGADDR(OCP_MOD, 0x0070) | ||
| 56 | #define OMAP2_PRCM_CLKEMUL_CTRL_OFFSET 0x0078 | ||
| 57 | #define OMAP2420_PRCM_CLKEMUL_CTRL OMAP2420_PRM_REGADDR(OCP_MOD, 0x0078) | ||
| 58 | #define OMAP2_PRCM_CLKCFG_CTRL_OFFSET 0x0080 | ||
| 59 | #define OMAP2420_PRCM_CLKCFG_CTRL OMAP2420_PRM_REGADDR(OCP_MOD, 0x0080) | ||
| 60 | #define OMAP2_PRCM_CLKCFG_STATUS_OFFSET 0x0084 | ||
| 61 | #define OMAP2420_PRCM_CLKCFG_STATUS OMAP2420_PRM_REGADDR(OCP_MOD, 0x0084) | ||
| 62 | #define OMAP2_PRCM_VOLTSETUP_OFFSET 0x0090 | ||
| 63 | #define OMAP2420_PRCM_VOLTSETUP OMAP2420_PRM_REGADDR(OCP_MOD, 0x0090) | ||
| 64 | #define OMAP2_PRCM_CLKSSETUP_OFFSET 0x0094 | ||
| 65 | #define OMAP2420_PRCM_CLKSSETUP OMAP2420_PRM_REGADDR(OCP_MOD, 0x0094) | ||
| 66 | #define OMAP2_PRCM_POLCTRL_OFFSET 0x0098 | ||
| 67 | #define OMAP2420_PRCM_POLCTRL OMAP2420_PRM_REGADDR(OCP_MOD, 0x0098) | ||
| 68 | |||
| 69 | #define OMAP2430_PRCM_REVISION OMAP2430_PRM_REGADDR(OCP_MOD, 0x0000) | ||
| 70 | #define OMAP2430_PRCM_SYSCONFIG OMAP2430_PRM_REGADDR(OCP_MOD, 0x0010) | ||
| 71 | |||
| 72 | #define OMAP2430_PRCM_IRQSTATUS_MPU OMAP2430_PRM_REGADDR(OCP_MOD, 0x0018) | ||
| 73 | #define OMAP2430_PRCM_IRQENABLE_MPU OMAP2430_PRM_REGADDR(OCP_MOD, 0x001c) | ||
| 74 | |||
| 75 | #define OMAP2430_PRCM_VOLTCTRL OMAP2430_PRM_REGADDR(OCP_MOD, 0x0050) | ||
| 76 | #define OMAP2430_PRCM_VOLTST OMAP2430_PRM_REGADDR(OCP_MOD, 0x0054) | ||
| 77 | #define OMAP2430_PRCM_CLKSRC_CTRL OMAP2430_PRM_REGADDR(OCP_MOD, 0x0060) | ||
| 78 | #define OMAP2430_PRCM_CLKOUT_CTRL OMAP2430_PRM_REGADDR(OCP_MOD, 0x0070) | ||
| 79 | #define OMAP2430_PRCM_CLKEMUL_CTRL OMAP2430_PRM_REGADDR(OCP_MOD, 0x0078) | ||
| 80 | #define OMAP2430_PRCM_CLKCFG_CTRL OMAP2430_PRM_REGADDR(OCP_MOD, 0x0080) | ||
| 81 | #define OMAP2430_PRCM_CLKCFG_STATUS OMAP2430_PRM_REGADDR(OCP_MOD, 0x0084) | ||
| 82 | #define OMAP2430_PRCM_VOLTSETUP OMAP2430_PRM_REGADDR(OCP_MOD, 0x0090) | ||
| 83 | #define OMAP2430_PRCM_CLKSSETUP OMAP2430_PRM_REGADDR(OCP_MOD, 0x0094) | ||
| 84 | #define OMAP2430_PRCM_POLCTRL OMAP2430_PRM_REGADDR(OCP_MOD, 0x0098) | ||
| 85 | |||
| 86 | /* | ||
| 87 | * Module specific PRM register offsets from PRM_BASE + domain offset | ||
| 88 | * | ||
| 89 | * Use prm_{read,write}_mod_reg() with these registers. | ||
| 90 | * | ||
| 91 | * With a few exceptions, these are the register names beginning with | ||
| 92 | * {PM,RM}_* on both OMAP2/3 SoC families.. (The exceptions are the | ||
| 93 | * IRQSTATUS and IRQENABLE bits.) | ||
| 94 | */ | ||
| 95 | |||
| 96 | /* Register offsets appearing on both OMAP2 and OMAP3 */ | ||
| 97 | |||
| 98 | #define OMAP2_RM_RSTCTRL 0x0050 | ||
| 99 | #define OMAP2_RM_RSTTIME 0x0054 | ||
| 100 | #define OMAP2_RM_RSTST 0x0058 | ||
| 101 | #define OMAP2_PM_PWSTCTRL 0x00e0 | ||
| 102 | #define OMAP2_PM_PWSTST 0x00e4 | ||
| 103 | |||
| 104 | #define PM_WKEN 0x00a0 | ||
| 105 | #define PM_WKEN1 PM_WKEN | ||
| 106 | #define PM_WKST 0x00b0 | ||
| 107 | #define PM_WKST1 PM_WKST | ||
| 108 | #define PM_WKDEP 0x00c8 | ||
| 109 | #define PM_EVGENCTRL 0x00d4 | ||
| 110 | #define PM_EVGENONTIM 0x00d8 | ||
| 111 | #define PM_EVGENOFFTIM 0x00dc | ||
| 112 | |||
| 113 | /* OMAP2xxx specific register offsets */ | ||
| 114 | #define OMAP24XX_PM_WKEN2 0x00a4 | ||
| 115 | #define OMAP24XX_PM_WKST2 0x00b4 | ||
| 116 | |||
| 117 | #define OMAP24XX_PRCM_IRQSTATUS_DSP 0x00f0 /* IVA mod */ | ||
| 118 | #define OMAP24XX_PRCM_IRQENABLE_DSP 0x00f4 /* IVA mod */ | ||
| 119 | #define OMAP24XX_PRCM_IRQSTATUS_IVA 0x00f8 | ||
| 120 | #define OMAP24XX_PRCM_IRQENABLE_IVA 0x00fc | ||
| 121 | |||
| 122 | #ifndef __ASSEMBLER__ | ||
| 123 | /* Function prototypes */ | ||
| 124 | extern int omap2xxx_clkdm_sleep(struct clockdomain *clkdm); | ||
| 125 | extern int omap2xxx_clkdm_wakeup(struct clockdomain *clkdm); | ||
| 126 | |||
| 127 | extern int __init prm2xxx_init(void); | ||
| 128 | extern int __exit prm2xxx_exit(void); | ||
| 129 | |||
| 130 | #endif | ||
| 131 | |||
| 132 | #endif | ||
diff --git a/arch/arm/mach-omap2/prm2xxx_3xxx.c b/arch/arm/mach-omap2/prm2xxx_3xxx.c index 9529984d8d2b..30517f5af707 100644 --- a/arch/arm/mach-omap2/prm2xxx_3xxx.c +++ b/arch/arm/mach-omap2/prm2xxx_3xxx.c | |||
| @@ -15,82 +15,12 @@ | |||
| 15 | #include <linux/errno.h> | 15 | #include <linux/errno.h> |
| 16 | #include <linux/err.h> | 16 | #include <linux/err.h> |
| 17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
| 18 | #include <linux/irq.h> | ||
| 19 | 18 | ||
| 20 | #include <plat/prcm.h> | ||
| 21 | |||
| 22 | #include "soc.h" | ||
| 23 | #include "common.h" | 19 | #include "common.h" |
| 24 | #include "vp.h" | 20 | #include "powerdomain.h" |
| 25 | |||
| 26 | #include "prm2xxx_3xxx.h" | 21 | #include "prm2xxx_3xxx.h" |
| 27 | #include "cm2xxx_3xxx.h" | ||
| 28 | #include "prm-regbits-24xx.h" | 22 | #include "prm-regbits-24xx.h" |
| 29 | #include "prm-regbits-34xx.h" | 23 | #include "clockdomain.h" |
| 30 | |||
| 31 | static const struct omap_prcm_irq omap3_prcm_irqs[] = { | ||
| 32 | OMAP_PRCM_IRQ("wkup", 0, 0), | ||
| 33 | OMAP_PRCM_IRQ("io", 9, 1), | ||
| 34 | }; | ||
| 35 | |||
| 36 | static struct omap_prcm_irq_setup omap3_prcm_irq_setup = { | ||
| 37 | .ack = OMAP3_PRM_IRQSTATUS_MPU_OFFSET, | ||
| 38 | .mask = OMAP3_PRM_IRQENABLE_MPU_OFFSET, | ||
| 39 | .nr_regs = 1, | ||
| 40 | .irqs = omap3_prcm_irqs, | ||
| 41 | .nr_irqs = ARRAY_SIZE(omap3_prcm_irqs), | ||
| 42 | .irq = 11 + OMAP_INTC_START, | ||
| 43 | .read_pending_irqs = &omap3xxx_prm_read_pending_irqs, | ||
| 44 | .ocp_barrier = &omap3xxx_prm_ocp_barrier, | ||
| 45 | .save_and_clear_irqen = &omap3xxx_prm_save_and_clear_irqen, | ||
| 46 | .restore_irqen = &omap3xxx_prm_restore_irqen, | ||
| 47 | }; | ||
| 48 | |||
| 49 | u32 omap2_prm_read_mod_reg(s16 module, u16 idx) | ||
| 50 | { | ||
| 51 | return __raw_readl(prm_base + module + idx); | ||
| 52 | } | ||
| 53 | |||
| 54 | void omap2_prm_write_mod_reg(u32 val, s16 module, u16 idx) | ||
| 55 | { | ||
| 56 | __raw_writel(val, prm_base + module + idx); | ||
| 57 | } | ||
| 58 | |||
| 59 | /* Read-modify-write a register in a PRM module. Caller must lock */ | ||
| 60 | u32 omap2_prm_rmw_mod_reg_bits(u32 mask, u32 bits, s16 module, s16 idx) | ||
| 61 | { | ||
| 62 | u32 v; | ||
| 63 | |||
| 64 | v = omap2_prm_read_mod_reg(module, idx); | ||
| 65 | v &= ~mask; | ||
| 66 | v |= bits; | ||
| 67 | omap2_prm_write_mod_reg(v, module, idx); | ||
| 68 | |||
| 69 | return v; | ||
| 70 | } | ||
| 71 | |||
| 72 | /* Read a PRM register, AND it, and shift the result down to bit 0 */ | ||
| 73 | u32 omap2_prm_read_mod_bits_shift(s16 domain, s16 idx, u32 mask) | ||
| 74 | { | ||
| 75 | u32 v; | ||
| 76 | |||
| 77 | v = omap2_prm_read_mod_reg(domain, idx); | ||
| 78 | v &= mask; | ||
| 79 | v >>= __ffs(mask); | ||
| 80 | |||
| 81 | return v; | ||
| 82 | } | ||
| 83 | |||
| 84 | u32 omap2_prm_set_mod_reg_bits(u32 bits, s16 module, s16 idx) | ||
| 85 | { | ||
| 86 | return omap2_prm_rmw_mod_reg_bits(bits, bits, module, idx); | ||
| 87 | } | ||
| 88 | |||
| 89 | u32 omap2_prm_clear_mod_reg_bits(u32 bits, s16 module, s16 idx) | ||
| 90 | { | ||
| 91 | return omap2_prm_rmw_mod_reg_bits(bits, 0x0, module, idx); | ||
| 92 | } | ||
| 93 | |||
| 94 | 24 | ||
| 95 | /** | 25 | /** |
| 96 | * omap2_prm_is_hardreset_asserted - read the HW reset line state of | 26 | * omap2_prm_is_hardreset_asserted - read the HW reset line state of |
| @@ -104,9 +34,6 @@ u32 omap2_prm_clear_mod_reg_bits(u32 bits, s16 module, s16 idx) | |||
| 104 | */ | 34 | */ |
| 105 | int omap2_prm_is_hardreset_asserted(s16 prm_mod, u8 shift) | 35 | int omap2_prm_is_hardreset_asserted(s16 prm_mod, u8 shift) |
| 106 | { | 36 | { |
| 107 | if (!(cpu_is_omap24xx() || cpu_is_omap34xx())) | ||
| 108 | return -EINVAL; | ||
| 109 | |||
| 110 | return omap2_prm_read_mod_bits_shift(prm_mod, OMAP2_RM_RSTCTRL, | 37 | return omap2_prm_read_mod_bits_shift(prm_mod, OMAP2_RM_RSTCTRL, |
| 111 | (1 << shift)); | 38 | (1 << shift)); |
| 112 | } | 39 | } |
| @@ -127,9 +54,6 @@ int omap2_prm_assert_hardreset(s16 prm_mod, u8 shift) | |||
| 127 | { | 54 | { |
| 128 | u32 mask; | 55 | u32 mask; |
| 129 | 56 | ||
| 130 | if (!(cpu_is_omap24xx() || cpu_is_omap34xx())) | ||
| 131 | return -EINVAL; | ||
| 132 | |||
| 133 | mask = 1 << shift; | 57 | mask = 1 << shift; |
| 134 | omap2_prm_rmw_mod_reg_bits(mask, mask, prm_mod, OMAP2_RM_RSTCTRL); | 58 | omap2_prm_rmw_mod_reg_bits(mask, mask, prm_mod, OMAP2_RM_RSTCTRL); |
| 135 | 59 | ||
| @@ -156,9 +80,6 @@ int omap2_prm_deassert_hardreset(s16 prm_mod, u8 rst_shift, u8 st_shift) | |||
| 156 | u32 rst, st; | 80 | u32 rst, st; |
| 157 | int c; | 81 | int c; |
| 158 | 82 | ||
| 159 | if (!(cpu_is_omap24xx() || cpu_is_omap34xx())) | ||
| 160 | return -EINVAL; | ||
| 161 | |||
| 162 | rst = 1 << rst_shift; | 83 | rst = 1 << rst_shift; |
| 163 | st = 1 << st_shift; | 84 | st = 1 << st_shift; |
| 164 | 85 | ||
| @@ -178,188 +99,155 @@ int omap2_prm_deassert_hardreset(s16 prm_mod, u8 rst_shift, u8 st_shift) | |||
| 178 | return (c == MAX_MODULE_HARDRESET_WAIT) ? -EBUSY : 0; | 99 | return (c == MAX_MODULE_HARDRESET_WAIT) ? -EBUSY : 0; |
| 179 | } | 100 | } |
| 180 | 101 | ||
| 181 | /* PRM VP */ | ||
| 182 | |||
| 183 | /* | ||
| 184 | * struct omap3_vp - OMAP3 VP register access description. | ||
| 185 | * @tranxdone_status: VP_TRANXDONE_ST bitmask in PRM_IRQSTATUS_MPU reg | ||
| 186 | */ | ||
| 187 | struct omap3_vp { | ||
| 188 | u32 tranxdone_status; | ||
| 189 | }; | ||
| 190 | |||
| 191 | static struct omap3_vp omap3_vp[] = { | ||
| 192 | [OMAP3_VP_VDD_MPU_ID] = { | ||
| 193 | .tranxdone_status = OMAP3430_VP1_TRANXDONE_ST_MASK, | ||
| 194 | }, | ||
| 195 | [OMAP3_VP_VDD_CORE_ID] = { | ||
| 196 | .tranxdone_status = OMAP3430_VP2_TRANXDONE_ST_MASK, | ||
| 197 | }, | ||
| 198 | }; | ||
| 199 | |||
| 200 | #define MAX_VP_ID ARRAY_SIZE(omap3_vp); | ||
| 201 | |||
| 202 | u32 omap3_prm_vp_check_txdone(u8 vp_id) | ||
| 203 | { | ||
| 204 | struct omap3_vp *vp = &omap3_vp[vp_id]; | ||
| 205 | u32 irqstatus; | ||
| 206 | 102 | ||
| 207 | irqstatus = omap2_prm_read_mod_reg(OCP_MOD, | 103 | /* Powerdomain low-level functions */ |
| 208 | OMAP3_PRM_IRQSTATUS_MPU_OFFSET); | ||
| 209 | return irqstatus & vp->tranxdone_status; | ||
| 210 | } | ||
| 211 | 104 | ||
| 212 | void omap3_prm_vp_clear_txdone(u8 vp_id) | 105 | /* Common functions across OMAP2 and OMAP3 */ |
| 106 | int omap2_pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst) | ||
| 213 | { | 107 | { |
| 214 | struct omap3_vp *vp = &omap3_vp[vp_id]; | 108 | omap2_prm_rmw_mod_reg_bits(OMAP_POWERSTATE_MASK, |
| 215 | 109 | (pwrst << OMAP_POWERSTATE_SHIFT), | |
| 216 | omap2_prm_write_mod_reg(vp->tranxdone_status, | 110 | pwrdm->prcm_offs, OMAP2_PM_PWSTCTRL); |
| 217 | OCP_MOD, OMAP3_PRM_IRQSTATUS_MPU_OFFSET); | 111 | return 0; |
| 218 | } | 112 | } |
| 219 | 113 | ||
| 220 | u32 omap3_prm_vcvp_read(u8 offset) | 114 | int omap2_pwrdm_read_next_pwrst(struct powerdomain *pwrdm) |
| 221 | { | 115 | { |
| 222 | return omap2_prm_read_mod_reg(OMAP3430_GR_MOD, offset); | 116 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, |
| 117 | OMAP2_PM_PWSTCTRL, | ||
| 118 | OMAP_POWERSTATE_MASK); | ||
| 223 | } | 119 | } |
| 224 | 120 | ||
| 225 | void omap3_prm_vcvp_write(u32 val, u8 offset) | 121 | int omap2_pwrdm_read_pwrst(struct powerdomain *pwrdm) |
| 226 | { | 122 | { |
| 227 | omap2_prm_write_mod_reg(val, OMAP3430_GR_MOD, offset); | 123 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, |
| 124 | OMAP2_PM_PWSTST, | ||
| 125 | OMAP_POWERSTATEST_MASK); | ||
| 228 | } | 126 | } |
| 229 | 127 | ||
| 230 | u32 omap3_prm_vcvp_rmw(u32 mask, u32 bits, u8 offset) | 128 | int omap2_pwrdm_set_mem_onst(struct powerdomain *pwrdm, u8 bank, |
| 129 | u8 pwrst) | ||
| 231 | { | 130 | { |
| 232 | return omap2_prm_rmw_mod_reg_bits(mask, bits, OMAP3430_GR_MOD, offset); | 131 | u32 m; |
| 132 | |||
| 133 | m = omap2_pwrdm_get_mem_bank_onstate_mask(bank); | ||
| 134 | |||
| 135 | omap2_prm_rmw_mod_reg_bits(m, (pwrst << __ffs(m)), pwrdm->prcm_offs, | ||
| 136 | OMAP2_PM_PWSTCTRL); | ||
| 137 | |||
| 138 | return 0; | ||
| 233 | } | 139 | } |
| 234 | 140 | ||
| 235 | /** | 141 | int omap2_pwrdm_set_mem_retst(struct powerdomain *pwrdm, u8 bank, |
| 236 | * omap3xxx_prm_read_pending_irqs - read pending PRM MPU IRQs into @events | 142 | u8 pwrst) |
| 237 | * @events: ptr to a u32, preallocated by caller | ||
| 238 | * | ||
| 239 | * Read PRM_IRQSTATUS_MPU bits, AND'ed with the currently-enabled PRM | ||
| 240 | * MPU IRQs, and store the result into the u32 pointed to by @events. | ||
| 241 | * No return value. | ||
| 242 | */ | ||
| 243 | void omap3xxx_prm_read_pending_irqs(unsigned long *events) | ||
| 244 | { | 143 | { |
| 245 | u32 mask, st; | 144 | u32 m; |
| 145 | |||
| 146 | m = omap2_pwrdm_get_mem_bank_retst_mask(bank); | ||
| 246 | 147 | ||
| 247 | /* XXX Can the mask read be avoided (e.g., can it come from RAM?) */ | 148 | omap2_prm_rmw_mod_reg_bits(m, (pwrst << __ffs(m)), pwrdm->prcm_offs, |
| 248 | mask = omap2_prm_read_mod_reg(OCP_MOD, OMAP3_PRM_IRQENABLE_MPU_OFFSET); | 149 | OMAP2_PM_PWSTCTRL); |
| 249 | st = omap2_prm_read_mod_reg(OCP_MOD, OMAP3_PRM_IRQSTATUS_MPU_OFFSET); | ||
| 250 | 150 | ||
| 251 | events[0] = mask & st; | 151 | return 0; |
| 252 | } | 152 | } |
| 253 | 153 | ||
| 254 | /** | 154 | int omap2_pwrdm_read_mem_pwrst(struct powerdomain *pwrdm, u8 bank) |
| 255 | * omap3xxx_prm_ocp_barrier - force buffered MPU writes to the PRM to complete | ||
| 256 | * | ||
| 257 | * Force any buffered writes to the PRM IP block to complete. Needed | ||
| 258 | * by the PRM IRQ handler, which reads and writes directly to the IP | ||
| 259 | * block, to avoid race conditions after acknowledging or clearing IRQ | ||
| 260 | * bits. No return value. | ||
| 261 | */ | ||
| 262 | void omap3xxx_prm_ocp_barrier(void) | ||
| 263 | { | 155 | { |
| 264 | omap2_prm_read_mod_reg(OCP_MOD, OMAP3_PRM_REVISION_OFFSET); | 156 | u32 m; |
| 157 | |||
| 158 | m = omap2_pwrdm_get_mem_bank_stst_mask(bank); | ||
| 159 | |||
| 160 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, OMAP2_PM_PWSTST, | ||
| 161 | m); | ||
| 265 | } | 162 | } |
| 266 | 163 | ||
| 267 | /** | 164 | int omap2_pwrdm_read_mem_retst(struct powerdomain *pwrdm, u8 bank) |
| 268 | * omap3xxx_prm_save_and_clear_irqen - save/clear PRM_IRQENABLE_MPU reg | ||
| 269 | * @saved_mask: ptr to a u32 array to save IRQENABLE bits | ||
| 270 | * | ||
| 271 | * Save the PRM_IRQENABLE_MPU register to @saved_mask. @saved_mask | ||
| 272 | * must be allocated by the caller. Intended to be used in the PRM | ||
| 273 | * interrupt handler suspend callback. The OCP barrier is needed to | ||
| 274 | * ensure the write to disable PRM interrupts reaches the PRM before | ||
| 275 | * returning; otherwise, spurious interrupts might occur. No return | ||
| 276 | * value. | ||
| 277 | */ | ||
| 278 | void omap3xxx_prm_save_and_clear_irqen(u32 *saved_mask) | ||
| 279 | { | 165 | { |
| 280 | saved_mask[0] = omap2_prm_read_mod_reg(OCP_MOD, | 166 | u32 m; |
| 281 | OMAP3_PRM_IRQENABLE_MPU_OFFSET); | 167 | |
| 282 | omap2_prm_write_mod_reg(0, OCP_MOD, OMAP3_PRM_IRQENABLE_MPU_OFFSET); | 168 | m = omap2_pwrdm_get_mem_bank_retst_mask(bank); |
| 283 | 169 | ||
| 284 | /* OCP barrier */ | 170 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, |
| 285 | omap2_prm_read_mod_reg(OCP_MOD, OMAP3_PRM_REVISION_OFFSET); | 171 | OMAP2_PM_PWSTCTRL, m); |
| 286 | } | 172 | } |
| 287 | 173 | ||
| 288 | /** | 174 | int omap2_pwrdm_set_logic_retst(struct powerdomain *pwrdm, u8 pwrst) |
| 289 | * omap3xxx_prm_restore_irqen - set PRM_IRQENABLE_MPU register from args | ||
| 290 | * @saved_mask: ptr to a u32 array of IRQENABLE bits saved previously | ||
| 291 | * | ||
| 292 | * Restore the PRM_IRQENABLE_MPU register from @saved_mask. Intended | ||
| 293 | * to be used in the PRM interrupt handler resume callback to restore | ||
| 294 | * values saved by omap3xxx_prm_save_and_clear_irqen(). No OCP | ||
| 295 | * barrier should be needed here; any pending PRM interrupts will fire | ||
| 296 | * once the writes reach the PRM. No return value. | ||
| 297 | */ | ||
| 298 | void omap3xxx_prm_restore_irqen(u32 *saved_mask) | ||
| 299 | { | 175 | { |
| 300 | omap2_prm_write_mod_reg(saved_mask[0], OCP_MOD, | 176 | u32 v; |
| 301 | OMAP3_PRM_IRQENABLE_MPU_OFFSET); | 177 | |
| 178 | v = pwrst << __ffs(OMAP_LOGICRETSTATE_MASK); | ||
| 179 | omap2_prm_rmw_mod_reg_bits(OMAP_LOGICRETSTATE_MASK, v, pwrdm->prcm_offs, | ||
| 180 | OMAP2_PM_PWSTCTRL); | ||
| 181 | |||
| 182 | return 0; | ||
| 302 | } | 183 | } |
| 303 | 184 | ||
| 304 | /** | 185 | int omap2_pwrdm_wait_transition(struct powerdomain *pwrdm) |
| 305 | * omap3xxx_prm_reconfigure_io_chain - clear latches and reconfigure I/O chain | ||
| 306 | * | ||
| 307 | * Clear any previously-latched I/O wakeup events and ensure that the | ||
| 308 | * I/O wakeup gates are aligned with the current mux settings. Works | ||
| 309 | * by asserting WUCLKIN, waiting for WUCLKOUT to be asserted, and then | ||
| 310 | * deasserting WUCLKIN and clearing the ST_IO_CHAIN WKST bit. No | ||
| 311 | * return value. | ||
| 312 | */ | ||
| 313 | void omap3xxx_prm_reconfigure_io_chain(void) | ||
| 314 | { | 186 | { |
| 315 | int i = 0; | 187 | u32 c = 0; |
| 316 | 188 | ||
| 317 | omap2_prm_set_mod_reg_bits(OMAP3430_EN_IO_CHAIN_MASK, WKUP_MOD, | 189 | /* |
| 318 | PM_WKEN); | 190 | * REVISIT: pwrdm_wait_transition() may be better implemented |
| 191 | * via a callback and a periodic timer check -- how long do we expect | ||
| 192 | * powerdomain transitions to take? | ||
| 193 | */ | ||
| 319 | 194 | ||
| 320 | omap_test_timeout(omap2_prm_read_mod_reg(WKUP_MOD, PM_WKST) & | 195 | /* XXX Is this udelay() value meaningful? */ |
| 321 | OMAP3430_ST_IO_CHAIN_MASK, | 196 | while ((omap2_prm_read_mod_reg(pwrdm->prcm_offs, OMAP2_PM_PWSTST) & |
| 322 | MAX_IOPAD_LATCH_TIME, i); | 197 | OMAP_INTRANSITION_MASK) && |
| 323 | if (i == MAX_IOPAD_LATCH_TIME) | 198 | (c++ < PWRDM_TRANSITION_BAILOUT)) |
| 324 | pr_warn("PRM: I/O chain clock line assertion timed out\n"); | 199 | udelay(1); |
| 325 | 200 | ||
| 326 | omap2_prm_clear_mod_reg_bits(OMAP3430_EN_IO_CHAIN_MASK, WKUP_MOD, | 201 | if (c > PWRDM_TRANSITION_BAILOUT) { |
| 327 | PM_WKEN); | 202 | pr_err("powerdomain: %s: waited too long to complete transition\n", |
| 203 | pwrdm->name); | ||
| 204 | return -EAGAIN; | ||
| 205 | } | ||
| 328 | 206 | ||
| 329 | omap2_prm_set_mod_reg_bits(OMAP3430_ST_IO_CHAIN_MASK, WKUP_MOD, | 207 | pr_debug("powerdomain: completed transition in %d loops\n", c); |
| 330 | PM_WKST); | ||
| 331 | 208 | ||
| 332 | omap2_prm_read_mod_reg(WKUP_MOD, PM_WKST); | 209 | return 0; |
| 333 | } | 210 | } |
| 334 | 211 | ||
| 335 | /** | 212 | int omap2_clkdm_add_wkdep(struct clockdomain *clkdm1, |
| 336 | * omap3xxx_prm_enable_io_wakeup - enable wakeup events from I/O wakeup latches | 213 | struct clockdomain *clkdm2) |
| 337 | * | 214 | { |
| 338 | * Activates the I/O wakeup event latches and allows events logged by | 215 | omap2_prm_set_mod_reg_bits((1 << clkdm2->dep_bit), |
| 339 | * those latches to signal a wakeup event to the PRCM. For I/O | 216 | clkdm1->pwrdm.ptr->prcm_offs, PM_WKDEP); |
| 340 | * wakeups to occur, WAKEUPENABLE bits must be set in the pad mux | 217 | return 0; |
| 341 | * registers, and omap3xxx_prm_reconfigure_io_chain() must be called. | 218 | } |
| 342 | * No return value. | 219 | |
| 343 | */ | 220 | int omap2_clkdm_del_wkdep(struct clockdomain *clkdm1, |
| 344 | static void __init omap3xxx_prm_enable_io_wakeup(void) | 221 | struct clockdomain *clkdm2) |
| 222 | { | ||
| 223 | omap2_prm_clear_mod_reg_bits((1 << clkdm2->dep_bit), | ||
| 224 | clkdm1->pwrdm.ptr->prcm_offs, PM_WKDEP); | ||
| 225 | return 0; | ||
| 226 | } | ||
| 227 | |||
| 228 | int omap2_clkdm_read_wkdep(struct clockdomain *clkdm1, | ||
| 229 | struct clockdomain *clkdm2) | ||
| 345 | { | 230 | { |
| 346 | if (omap3_has_io_wakeup()) | 231 | return omap2_prm_read_mod_bits_shift(clkdm1->pwrdm.ptr->prcm_offs, |
| 347 | omap2_prm_set_mod_reg_bits(OMAP3430_EN_IO_MASK, WKUP_MOD, | 232 | PM_WKDEP, (1 << clkdm2->dep_bit)); |
| 348 | PM_WKEN); | ||
| 349 | } | 233 | } |
| 350 | 234 | ||
| 351 | static int __init omap3xxx_prcm_init(void) | 235 | int omap2_clkdm_clear_all_wkdeps(struct clockdomain *clkdm) |
| 352 | { | 236 | { |
| 353 | int ret = 0; | 237 | struct clkdm_dep *cd; |
| 354 | 238 | u32 mask = 0; | |
| 355 | if (cpu_is_omap34xx()) { | 239 | |
| 356 | omap3xxx_prm_enable_io_wakeup(); | 240 | for (cd = clkdm->wkdep_srcs; cd && cd->clkdm_name; cd++) { |
| 357 | ret = omap_prcm_register_chain_handler(&omap3_prcm_irq_setup); | 241 | if (!cd->clkdm) |
| 358 | if (!ret) | 242 | continue; /* only happens if data is erroneous */ |
| 359 | irq_set_status_flags(omap_prcm_event_to_irq("io"), | 243 | |
| 360 | IRQ_NOAUTOEN); | 244 | /* PRM accesses are slow, so minimize them */ |
| 245 | mask |= 1 << cd->clkdm->dep_bit; | ||
| 246 | atomic_set(&cd->wkdep_usecount, 0); | ||
| 361 | } | 247 | } |
| 362 | 248 | ||
| 363 | return ret; | 249 | omap2_prm_clear_mod_reg_bits(mask, clkdm->pwrdm.ptr->prcm_offs, |
| 250 | PM_WKDEP); | ||
| 251 | return 0; | ||
| 364 | } | 252 | } |
| 365 | subsys_initcall(omap3xxx_prcm_init); | 253 | |
diff --git a/arch/arm/mach-omap2/prm2xxx_3xxx.h b/arch/arm/mach-omap2/prm2xxx_3xxx.h index c19d249b4816..3330b1bf789d 100644 --- a/arch/arm/mach-omap2/prm2xxx_3xxx.h +++ b/arch/arm/mach-omap2/prm2xxx_3xxx.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * OMAP2/3 Power/Reset Management (PRM) register definitions | 2 | * OMAP2xxx/3xxx-common Power/Reset Management (PRM) register definitions |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2007-2009, 2011 Texas Instruments, Inc. | 4 | * Copyright (C) 2007-2009, 2011-2012 Texas Instruments, Inc. |
| 5 | * Copyright (C) 2008-2010 Nokia Corporation | 5 | * Copyright (C) 2008-2010 Nokia Corporation |
| 6 | * Paul Walmsley | 6 | * Paul Walmsley |
| 7 | * | 7 | * |
| @@ -19,160 +19,6 @@ | |||
| 19 | #include "prcm-common.h" | 19 | #include "prcm-common.h" |
| 20 | #include "prm.h" | 20 | #include "prm.h" |
| 21 | 21 | ||
| 22 | #define OMAP2420_PRM_REGADDR(module, reg) \ | ||
| 23 | OMAP2_L4_IO_ADDRESS(OMAP2420_PRM_BASE + (module) + (reg)) | ||
| 24 | #define OMAP2430_PRM_REGADDR(module, reg) \ | ||
| 25 | OMAP2_L4_IO_ADDRESS(OMAP2430_PRM_BASE + (module) + (reg)) | ||
| 26 | #define OMAP34XX_PRM_REGADDR(module, reg) \ | ||
| 27 | OMAP2_L4_IO_ADDRESS(OMAP3430_PRM_BASE + (module) + (reg)) | ||
| 28 | |||
| 29 | |||
| 30 | /* | ||
| 31 | * OMAP2-specific global PRM registers | ||
| 32 | * Use __raw_{read,write}l() with these registers. | ||
| 33 | * | ||
| 34 | * With a few exceptions, these are the register names beginning with | ||
| 35 | * PRCM_* on 24xx. (The exceptions are the IRQSTATUS and IRQENABLE | ||
| 36 | * bits.) | ||
| 37 | * | ||
| 38 | */ | ||
| 39 | |||
| 40 | #define OMAP2_PRCM_REVISION_OFFSET 0x0000 | ||
| 41 | #define OMAP2420_PRCM_REVISION OMAP2420_PRM_REGADDR(OCP_MOD, 0x0000) | ||
| 42 | #define OMAP2_PRCM_SYSCONFIG_OFFSET 0x0010 | ||
| 43 | #define OMAP2420_PRCM_SYSCONFIG OMAP2420_PRM_REGADDR(OCP_MOD, 0x0010) | ||
| 44 | |||
| 45 | #define OMAP2_PRCM_IRQSTATUS_MPU_OFFSET 0x0018 | ||
| 46 | #define OMAP2420_PRCM_IRQSTATUS_MPU OMAP2420_PRM_REGADDR(OCP_MOD, 0x0018) | ||
| 47 | #define OMAP2_PRCM_IRQENABLE_MPU_OFFSET 0x001c | ||
| 48 | #define OMAP2420_PRCM_IRQENABLE_MPU OMAP2420_PRM_REGADDR(OCP_MOD, 0x001c) | ||
| 49 | |||
| 50 | #define OMAP2_PRCM_VOLTCTRL_OFFSET 0x0050 | ||
| 51 | #define OMAP2420_PRCM_VOLTCTRL OMAP2420_PRM_REGADDR(OCP_MOD, 0x0050) | ||
| 52 | #define OMAP2_PRCM_VOLTST_OFFSET 0x0054 | ||
| 53 | #define OMAP2420_PRCM_VOLTST OMAP2420_PRM_REGADDR(OCP_MOD, 0x0054) | ||
| 54 | #define OMAP2_PRCM_CLKSRC_CTRL_OFFSET 0x0060 | ||
| 55 | #define OMAP2420_PRCM_CLKSRC_CTRL OMAP2420_PRM_REGADDR(OCP_MOD, 0x0060) | ||
| 56 | #define OMAP2_PRCM_CLKOUT_CTRL_OFFSET 0x0070 | ||
| 57 | #define OMAP2420_PRCM_CLKOUT_CTRL OMAP2420_PRM_REGADDR(OCP_MOD, 0x0070) | ||
| 58 | #define OMAP2_PRCM_CLKEMUL_CTRL_OFFSET 0x0078 | ||
| 59 | #define OMAP2420_PRCM_CLKEMUL_CTRL OMAP2420_PRM_REGADDR(OCP_MOD, 0x0078) | ||
| 60 | #define OMAP2_PRCM_CLKCFG_CTRL_OFFSET 0x0080 | ||
| 61 | #define OMAP2420_PRCM_CLKCFG_CTRL OMAP2420_PRM_REGADDR(OCP_MOD, 0x0080) | ||
| 62 | #define OMAP2_PRCM_CLKCFG_STATUS_OFFSET 0x0084 | ||
| 63 | #define OMAP2420_PRCM_CLKCFG_STATUS OMAP2420_PRM_REGADDR(OCP_MOD, 0x0084) | ||
| 64 | #define OMAP2_PRCM_VOLTSETUP_OFFSET 0x0090 | ||
| 65 | #define OMAP2420_PRCM_VOLTSETUP OMAP2420_PRM_REGADDR(OCP_MOD, 0x0090) | ||
| 66 | #define OMAP2_PRCM_CLKSSETUP_OFFSET 0x0094 | ||
| 67 | #define OMAP2420_PRCM_CLKSSETUP OMAP2420_PRM_REGADDR(OCP_MOD, 0x0094) | ||
| 68 | #define OMAP2_PRCM_POLCTRL_OFFSET 0x0098 | ||
| 69 | #define OMAP2420_PRCM_POLCTRL OMAP2420_PRM_REGADDR(OCP_MOD, 0x0098) | ||
| 70 | |||
| 71 | #define OMAP2430_PRCM_REVISION OMAP2430_PRM_REGADDR(OCP_MOD, 0x0000) | ||
| 72 | #define OMAP2430_PRCM_SYSCONFIG OMAP2430_PRM_REGADDR(OCP_MOD, 0x0010) | ||
| 73 | |||
| 74 | #define OMAP2430_PRCM_IRQSTATUS_MPU OMAP2430_PRM_REGADDR(OCP_MOD, 0x0018) | ||
| 75 | #define OMAP2430_PRCM_IRQENABLE_MPU OMAP2430_PRM_REGADDR(OCP_MOD, 0x001c) | ||
| 76 | |||
| 77 | #define OMAP2430_PRCM_VOLTCTRL OMAP2430_PRM_REGADDR(OCP_MOD, 0x0050) | ||
| 78 | #define OMAP2430_PRCM_VOLTST OMAP2430_PRM_REGADDR(OCP_MOD, 0x0054) | ||
| 79 | #define OMAP2430_PRCM_CLKSRC_CTRL OMAP2430_PRM_REGADDR(OCP_MOD, 0x0060) | ||
| 80 | #define OMAP2430_PRCM_CLKOUT_CTRL OMAP2430_PRM_REGADDR(OCP_MOD, 0x0070) | ||
| 81 | #define OMAP2430_PRCM_CLKEMUL_CTRL OMAP2430_PRM_REGADDR(OCP_MOD, 0x0078) | ||
| 82 | #define OMAP2430_PRCM_CLKCFG_CTRL OMAP2430_PRM_REGADDR(OCP_MOD, 0x0080) | ||
| 83 | #define OMAP2430_PRCM_CLKCFG_STATUS OMAP2430_PRM_REGADDR(OCP_MOD, 0x0084) | ||
| 84 | #define OMAP2430_PRCM_VOLTSETUP OMAP2430_PRM_REGADDR(OCP_MOD, 0x0090) | ||
| 85 | #define OMAP2430_PRCM_CLKSSETUP OMAP2430_PRM_REGADDR(OCP_MOD, 0x0094) | ||
| 86 | #define OMAP2430_PRCM_POLCTRL OMAP2430_PRM_REGADDR(OCP_MOD, 0x0098) | ||
| 87 | |||
| 88 | /* | ||
| 89 | * OMAP3-specific global PRM registers | ||
| 90 | * Use __raw_{read,write}l() with these registers. | ||
| 91 | * | ||
| 92 | * With a few exceptions, these are the register names beginning with | ||
| 93 | * PRM_* on 34xx. (The exceptions are the IRQSTATUS and IRQENABLE | ||
| 94 | * bits.) | ||
| 95 | */ | ||
| 96 | |||
| 97 | #define OMAP3_PRM_REVISION_OFFSET 0x0004 | ||
| 98 | #define OMAP3430_PRM_REVISION OMAP34XX_PRM_REGADDR(OCP_MOD, 0x0004) | ||
| 99 | #define OMAP3_PRM_SYSCONFIG_OFFSET 0x0014 | ||
| 100 | #define OMAP3430_PRM_SYSCONFIG OMAP34XX_PRM_REGADDR(OCP_MOD, 0x0014) | ||
| 101 | |||
| 102 | #define OMAP3_PRM_IRQSTATUS_MPU_OFFSET 0x0018 | ||
| 103 | #define OMAP3430_PRM_IRQSTATUS_MPU OMAP34XX_PRM_REGADDR(OCP_MOD, 0x0018) | ||
| 104 | #define OMAP3_PRM_IRQENABLE_MPU_OFFSET 0x001c | ||
| 105 | #define OMAP3430_PRM_IRQENABLE_MPU OMAP34XX_PRM_REGADDR(OCP_MOD, 0x001c) | ||
| 106 | |||
| 107 | |||
| 108 | #define OMAP3_PRM_VC_SMPS_SA_OFFSET 0x0020 | ||
| 109 | #define OMAP3430_PRM_VC_SMPS_SA OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0020) | ||
| 110 | #define OMAP3_PRM_VC_SMPS_VOL_RA_OFFSET 0x0024 | ||
| 111 | #define OMAP3430_PRM_VC_SMPS_VOL_RA OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0024) | ||
| 112 | #define OMAP3_PRM_VC_SMPS_CMD_RA_OFFSET 0x0028 | ||
| 113 | #define OMAP3430_PRM_VC_SMPS_CMD_RA OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0028) | ||
| 114 | #define OMAP3_PRM_VC_CMD_VAL_0_OFFSET 0x002c | ||
| 115 | #define OMAP3430_PRM_VC_CMD_VAL_0 OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x002c) | ||
| 116 | #define OMAP3_PRM_VC_CMD_VAL_1_OFFSET 0x0030 | ||
| 117 | #define OMAP3430_PRM_VC_CMD_VAL_1 OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0030) | ||
| 118 | #define OMAP3_PRM_VC_CH_CONF_OFFSET 0x0034 | ||
| 119 | #define OMAP3430_PRM_VC_CH_CONF OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0034) | ||
| 120 | #define OMAP3_PRM_VC_I2C_CFG_OFFSET 0x0038 | ||
| 121 | #define OMAP3430_PRM_VC_I2C_CFG OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0038) | ||
| 122 | #define OMAP3_PRM_VC_BYPASS_VAL_OFFSET 0x003c | ||
| 123 | #define OMAP3430_PRM_VC_BYPASS_VAL OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x003c) | ||
| 124 | #define OMAP3_PRM_RSTCTRL_OFFSET 0x0050 | ||
| 125 | #define OMAP3430_PRM_RSTCTRL OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0050) | ||
| 126 | #define OMAP3_PRM_RSTTIME_OFFSET 0x0054 | ||
| 127 | #define OMAP3430_PRM_RSTTIME OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0054) | ||
| 128 | #define OMAP3_PRM_RSTST_OFFSET 0x0058 | ||
| 129 | #define OMAP3430_PRM_RSTST OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0058) | ||
| 130 | #define OMAP3_PRM_VOLTCTRL_OFFSET 0x0060 | ||
| 131 | #define OMAP3430_PRM_VOLTCTRL OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0060) | ||
| 132 | #define OMAP3_PRM_SRAM_PCHARGE_OFFSET 0x0064 | ||
| 133 | #define OMAP3430_PRM_SRAM_PCHARGE OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0064) | ||
| 134 | #define OMAP3_PRM_CLKSRC_CTRL_OFFSET 0x0070 | ||
| 135 | #define OMAP3430_PRM_CLKSRC_CTRL OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0070) | ||
| 136 | #define OMAP3_PRM_VOLTSETUP1_OFFSET 0x0090 | ||
| 137 | #define OMAP3430_PRM_VOLTSETUP1 OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0090) | ||
| 138 | #define OMAP3_PRM_VOLTOFFSET_OFFSET 0x0094 | ||
| 139 | #define OMAP3430_PRM_VOLTOFFSET OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0094) | ||
| 140 | #define OMAP3_PRM_CLKSETUP_OFFSET 0x0098 | ||
| 141 | #define OMAP3430_PRM_CLKSETUP OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0098) | ||
| 142 | #define OMAP3_PRM_POLCTRL_OFFSET 0x009c | ||
| 143 | #define OMAP3430_PRM_POLCTRL OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x009c) | ||
| 144 | #define OMAP3_PRM_VOLTSETUP2_OFFSET 0x00a0 | ||
| 145 | #define OMAP3430_PRM_VOLTSETUP2 OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00a0) | ||
| 146 | #define OMAP3_PRM_VP1_CONFIG_OFFSET 0x00b0 | ||
| 147 | #define OMAP3430_PRM_VP1_CONFIG OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00b0) | ||
| 148 | #define OMAP3_PRM_VP1_VSTEPMIN_OFFSET 0x00b4 | ||
| 149 | #define OMAP3430_PRM_VP1_VSTEPMIN OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00b4) | ||
| 150 | #define OMAP3_PRM_VP1_VSTEPMAX_OFFSET 0x00b8 | ||
| 151 | #define OMAP3430_PRM_VP1_VSTEPMAX OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00b8) | ||
| 152 | #define OMAP3_PRM_VP1_VLIMITTO_OFFSET 0x00bc | ||
| 153 | #define OMAP3430_PRM_VP1_VLIMITTO OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00bc) | ||
| 154 | #define OMAP3_PRM_VP1_VOLTAGE_OFFSET 0x00c0 | ||
| 155 | #define OMAP3430_PRM_VP1_VOLTAGE OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00c0) | ||
| 156 | #define OMAP3_PRM_VP1_STATUS_OFFSET 0x00c4 | ||
| 157 | #define OMAP3430_PRM_VP1_STATUS OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00c4) | ||
| 158 | #define OMAP3_PRM_VP2_CONFIG_OFFSET 0x00d0 | ||
| 159 | #define OMAP3430_PRM_VP2_CONFIG OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00d0) | ||
| 160 | #define OMAP3_PRM_VP2_VSTEPMIN_OFFSET 0x00d4 | ||
| 161 | #define OMAP3430_PRM_VP2_VSTEPMIN OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00d4) | ||
| 162 | #define OMAP3_PRM_VP2_VSTEPMAX_OFFSET 0x00d8 | ||
| 163 | #define OMAP3430_PRM_VP2_VSTEPMAX OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00d8) | ||
| 164 | #define OMAP3_PRM_VP2_VLIMITTO_OFFSET 0x00dc | ||
| 165 | #define OMAP3430_PRM_VP2_VLIMITTO OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00dc) | ||
| 166 | #define OMAP3_PRM_VP2_VOLTAGE_OFFSET 0x00e0 | ||
| 167 | #define OMAP3430_PRM_VP2_VOLTAGE OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00e0) | ||
| 168 | #define OMAP3_PRM_VP2_STATUS_OFFSET 0x00e4 | ||
| 169 | #define OMAP3430_PRM_VP2_STATUS OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00e4) | ||
| 170 | |||
| 171 | #define OMAP3_PRM_CLKSEL_OFFSET 0x0040 | ||
| 172 | #define OMAP3430_PRM_CLKSEL OMAP34XX_PRM_REGADDR(OMAP3430_CCR_MOD, 0x0040) | ||
| 173 | #define OMAP3_PRM_CLKOUT_CTRL_OFFSET 0x0070 | ||
| 174 | #define OMAP3430_PRM_CLKOUT_CTRL OMAP34XX_PRM_REGADDR(OMAP3430_CCR_MOD, 0x0070) | ||
| 175 | |||
| 176 | /* | 22 | /* |
| 177 | * Module specific PRM register offsets from PRM_BASE + domain offset | 23 | * Module specific PRM register offsets from PRM_BASE + domain offset |
| 178 | * | 24 | * |
| @@ -200,66 +46,83 @@ | |||
| 200 | #define PM_EVGENONTIM 0x00d8 | 46 | #define PM_EVGENONTIM 0x00d8 |
| 201 | #define PM_EVGENOFFTIM 0x00dc | 47 | #define PM_EVGENOFFTIM 0x00dc |
| 202 | 48 | ||
| 203 | /* OMAP2xxx specific register offsets */ | ||
| 204 | #define OMAP24XX_PM_WKEN2 0x00a4 | ||
| 205 | #define OMAP24XX_PM_WKST2 0x00b4 | ||
| 206 | |||
| 207 | #define OMAP24XX_PRCM_IRQSTATUS_DSP 0x00f0 /* IVA mod */ | ||
| 208 | #define OMAP24XX_PRCM_IRQENABLE_DSP 0x00f4 /* IVA mod */ | ||
| 209 | #define OMAP24XX_PRCM_IRQSTATUS_IVA 0x00f8 | ||
| 210 | #define OMAP24XX_PRCM_IRQENABLE_IVA 0x00fc | ||
| 211 | |||
| 212 | /* OMAP3 specific register offsets */ | ||
| 213 | #define OMAP3430ES2_PM_WKEN3 0x00f0 | ||
| 214 | #define OMAP3430ES2_PM_WKST3 0x00b8 | ||
| 215 | |||
| 216 | #define OMAP3430_PM_MPUGRPSEL 0x00a4 | ||
| 217 | #define OMAP3430_PM_MPUGRPSEL1 OMAP3430_PM_MPUGRPSEL | ||
| 218 | #define OMAP3430ES2_PM_MPUGRPSEL3 0x00f8 | ||
| 219 | 49 | ||
| 220 | #define OMAP3430_PM_IVAGRPSEL 0x00a8 | 50 | #ifndef __ASSEMBLER__ |
| 221 | #define OMAP3430_PM_IVAGRPSEL1 OMAP3430_PM_IVAGRPSEL | ||
| 222 | #define OMAP3430ES2_PM_IVAGRPSEL3 0x00f4 | ||
| 223 | |||
| 224 | #define OMAP3430_PM_PREPWSTST 0x00e8 | ||
| 225 | |||
| 226 | #define OMAP3430_PRM_IRQSTATUS_IVA2 0x00f8 | ||
| 227 | #define OMAP3430_PRM_IRQENABLE_IVA2 0x00fc | ||
| 228 | 51 | ||
| 52 | #include <linux/io.h> | ||
| 53 | #include "powerdomain.h" | ||
| 229 | 54 | ||
| 230 | #ifndef __ASSEMBLER__ | ||
| 231 | /* Power/reset management domain register get/set */ | 55 | /* Power/reset management domain register get/set */ |
| 232 | extern u32 omap2_prm_read_mod_reg(s16 module, u16 idx); | 56 | static inline u32 omap2_prm_read_mod_reg(s16 module, u16 idx) |
| 233 | extern void omap2_prm_write_mod_reg(u32 val, s16 module, u16 idx); | 57 | { |
| 234 | extern u32 omap2_prm_rmw_mod_reg_bits(u32 mask, u32 bits, s16 module, s16 idx); | 58 | return __raw_readl(prm_base + module + idx); |
| 235 | extern u32 omap2_prm_set_mod_reg_bits(u32 bits, s16 module, s16 idx); | 59 | } |
| 236 | extern u32 omap2_prm_clear_mod_reg_bits(u32 bits, s16 module, s16 idx); | 60 | |
| 237 | extern u32 omap2_prm_read_mod_bits_shift(s16 domain, s16 idx, u32 mask); | 61 | static inline void omap2_prm_write_mod_reg(u32 val, s16 module, u16 idx) |
| 62 | { | ||
| 63 | __raw_writel(val, prm_base + module + idx); | ||
| 64 | } | ||
| 65 | |||
| 66 | /* Read-modify-write a register in a PRM module. Caller must lock */ | ||
| 67 | static inline u32 omap2_prm_rmw_mod_reg_bits(u32 mask, u32 bits, s16 module, | ||
| 68 | s16 idx) | ||
| 69 | { | ||
| 70 | u32 v; | ||
| 71 | |||
| 72 | v = omap2_prm_read_mod_reg(module, idx); | ||
| 73 | v &= ~mask; | ||
| 74 | v |= bits; | ||
| 75 | omap2_prm_write_mod_reg(v, module, idx); | ||
| 76 | |||
| 77 | return v; | ||
| 78 | } | ||
| 79 | |||
| 80 | /* Read a PRM register, AND it, and shift the result down to bit 0 */ | ||
| 81 | static inline u32 omap2_prm_read_mod_bits_shift(s16 domain, s16 idx, u32 mask) | ||
| 82 | { | ||
| 83 | u32 v; | ||
| 84 | |||
| 85 | v = omap2_prm_read_mod_reg(domain, idx); | ||
| 86 | v &= mask; | ||
| 87 | v >>= __ffs(mask); | ||
| 88 | |||
| 89 | return v; | ||
| 90 | } | ||
| 91 | |||
| 92 | static inline u32 omap2_prm_set_mod_reg_bits(u32 bits, s16 module, s16 idx) | ||
| 93 | { | ||
| 94 | return omap2_prm_rmw_mod_reg_bits(bits, bits, module, idx); | ||
| 95 | } | ||
| 96 | |||
| 97 | static inline u32 omap2_prm_clear_mod_reg_bits(u32 bits, s16 module, s16 idx) | ||
| 98 | { | ||
| 99 | return omap2_prm_rmw_mod_reg_bits(bits, 0x0, module, idx); | ||
| 100 | } | ||
| 238 | 101 | ||
| 239 | /* These omap2_ PRM functions apply to both OMAP2 and 3 */ | 102 | /* These omap2_ PRM functions apply to both OMAP2 and 3 */ |
| 240 | extern int omap2_prm_is_hardreset_asserted(s16 prm_mod, u8 shift); | 103 | extern int omap2_prm_is_hardreset_asserted(s16 prm_mod, u8 shift); |
| 241 | extern int omap2_prm_assert_hardreset(s16 prm_mod, u8 shift); | 104 | extern int omap2_prm_assert_hardreset(s16 prm_mod, u8 shift); |
| 242 | extern int omap2_prm_deassert_hardreset(s16 prm_mod, u8 rst_shift, u8 st_shift); | 105 | extern int omap2_prm_deassert_hardreset(s16 prm_mod, u8 rst_shift, u8 st_shift); |
| 243 | 106 | ||
| 244 | /* OMAP3-specific VP functions */ | 107 | extern int omap2_pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst); |
| 245 | u32 omap3_prm_vp_check_txdone(u8 vp_id); | 108 | extern int omap2_pwrdm_read_next_pwrst(struct powerdomain *pwrdm); |
| 246 | void omap3_prm_vp_clear_txdone(u8 vp_id); | 109 | extern int omap2_pwrdm_read_pwrst(struct powerdomain *pwrdm); |
| 247 | 110 | extern int omap2_pwrdm_set_mem_onst(struct powerdomain *pwrdm, u8 bank, | |
| 248 | /* | 111 | u8 pwrst); |
| 249 | * OMAP3 access functions for voltage controller (VC) and | 112 | extern int omap2_pwrdm_set_mem_retst(struct powerdomain *pwrdm, u8 bank, |
| 250 | * voltage proccessor (VP) in the PRM. | 113 | u8 pwrst); |
| 251 | */ | 114 | extern int omap2_pwrdm_read_mem_pwrst(struct powerdomain *pwrdm, u8 bank); |
| 252 | extern u32 omap3_prm_vcvp_read(u8 offset); | 115 | extern int omap2_pwrdm_read_mem_retst(struct powerdomain *pwrdm, u8 bank); |
| 253 | extern void omap3_prm_vcvp_write(u32 val, u8 offset); | 116 | extern int omap2_pwrdm_set_logic_retst(struct powerdomain *pwrdm, u8 pwrst); |
| 254 | extern u32 omap3_prm_vcvp_rmw(u32 mask, u32 bits, u8 offset); | 117 | extern int omap2_pwrdm_wait_transition(struct powerdomain *pwrdm); |
| 255 | 118 | ||
| 256 | extern void omap3xxx_prm_reconfigure_io_chain(void); | 119 | extern int omap2_clkdm_add_wkdep(struct clockdomain *clkdm1, |
| 257 | 120 | struct clockdomain *clkdm2); | |
| 258 | /* PRM interrupt-related functions */ | 121 | extern int omap2_clkdm_del_wkdep(struct clockdomain *clkdm1, |
| 259 | extern void omap3xxx_prm_read_pending_irqs(unsigned long *events); | 122 | struct clockdomain *clkdm2); |
| 260 | extern void omap3xxx_prm_ocp_barrier(void); | 123 | extern int omap2_clkdm_read_wkdep(struct clockdomain *clkdm1, |
| 261 | extern void omap3xxx_prm_save_and_clear_irqen(u32 *saved_mask); | 124 | struct clockdomain *clkdm2); |
| 262 | extern void omap3xxx_prm_restore_irqen(u32 *saved_mask); | 125 | extern int omap2_clkdm_clear_all_wkdeps(struct clockdomain *clkdm); |
| 263 | 126 | ||
| 264 | #endif /* __ASSEMBLER */ | 127 | #endif /* __ASSEMBLER */ |
| 265 | 128 | ||
| @@ -348,7 +211,9 @@ extern void omap3xxx_prm_restore_irqen(u32 *saved_mask); | |||
| 348 | * | 211 | * |
| 349 | * 3430: RM_RSTST_CORE, RM_RSTST_EMU | 212 | * 3430: RM_RSTST_CORE, RM_RSTST_EMU |
| 350 | */ | 213 | */ |
| 214 | #define OMAP_GLOBALWARM_RST_SHIFT 1 | ||
| 351 | #define OMAP_GLOBALWARM_RST_MASK (1 << 1) | 215 | #define OMAP_GLOBALWARM_RST_MASK (1 << 1) |
| 216 | #define OMAP_GLOBALCOLD_RST_SHIFT 0 | ||
| 352 | #define OMAP_GLOBALCOLD_RST_MASK (1 << 0) | 217 | #define OMAP_GLOBALCOLD_RST_MASK (1 << 0) |
| 353 | 218 | ||
| 354 | /* | 219 | /* |
diff --git a/arch/arm/mach-omap2/prm33xx.c b/arch/arm/mach-omap2/prm33xx.c index e7dbb6cf1255..1ac73883f891 100644 --- a/arch/arm/mach-omap2/prm33xx.c +++ b/arch/arm/mach-omap2/prm33xx.c | |||
| @@ -19,9 +19,8 @@ | |||
| 19 | #include <linux/err.h> | 19 | #include <linux/err.h> |
| 20 | #include <linux/io.h> | 20 | #include <linux/io.h> |
| 21 | 21 | ||
| 22 | #include <plat/common.h> | ||
| 23 | |||
| 24 | #include "common.h" | 22 | #include "common.h" |
| 23 | #include "powerdomain.h" | ||
| 25 | #include "prm33xx.h" | 24 | #include "prm33xx.h" |
| 26 | #include "prm-regbits-33xx.h" | 25 | #include "prm-regbits-33xx.h" |
| 27 | 26 | ||
| @@ -133,3 +132,204 @@ int am33xx_prm_deassert_hardreset(u8 shift, s16 inst, | |||
| 133 | 132 | ||
| 134 | return (c == MAX_MODULE_HARDRESET_WAIT) ? -EBUSY : 0; | 133 | return (c == MAX_MODULE_HARDRESET_WAIT) ? -EBUSY : 0; |
| 135 | } | 134 | } |
| 135 | |||
| 136 | static int am33xx_pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst) | ||
| 137 | { | ||
| 138 | am33xx_prm_rmw_reg_bits(OMAP_POWERSTATE_MASK, | ||
| 139 | (pwrst << OMAP_POWERSTATE_SHIFT), | ||
| 140 | pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 141 | return 0; | ||
| 142 | } | ||
| 143 | |||
| 144 | static int am33xx_pwrdm_read_next_pwrst(struct powerdomain *pwrdm) | ||
| 145 | { | ||
| 146 | u32 v; | ||
| 147 | |||
| 148 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 149 | v &= OMAP_POWERSTATE_MASK; | ||
| 150 | v >>= OMAP_POWERSTATE_SHIFT; | ||
| 151 | |||
| 152 | return v; | ||
| 153 | } | ||
| 154 | |||
| 155 | static int am33xx_pwrdm_read_pwrst(struct powerdomain *pwrdm) | ||
| 156 | { | ||
| 157 | u32 v; | ||
| 158 | |||
| 159 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs); | ||
| 160 | v &= OMAP_POWERSTATEST_MASK; | ||
| 161 | v >>= OMAP_POWERSTATEST_SHIFT; | ||
| 162 | |||
| 163 | return v; | ||
| 164 | } | ||
| 165 | |||
| 166 | static int am33xx_pwrdm_read_prev_pwrst(struct powerdomain *pwrdm) | ||
| 167 | { | ||
| 168 | u32 v; | ||
| 169 | |||
| 170 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs); | ||
| 171 | v &= AM33XX_LASTPOWERSTATEENTERED_MASK; | ||
| 172 | v >>= AM33XX_LASTPOWERSTATEENTERED_SHIFT; | ||
| 173 | |||
| 174 | return v; | ||
| 175 | } | ||
| 176 | |||
| 177 | static int am33xx_pwrdm_set_lowpwrstchange(struct powerdomain *pwrdm) | ||
| 178 | { | ||
| 179 | am33xx_prm_rmw_reg_bits(AM33XX_LOWPOWERSTATECHANGE_MASK, | ||
| 180 | (1 << AM33XX_LOWPOWERSTATECHANGE_SHIFT), | ||
| 181 | pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 182 | return 0; | ||
| 183 | } | ||
| 184 | |||
| 185 | static int am33xx_pwrdm_clear_all_prev_pwrst(struct powerdomain *pwrdm) | ||
| 186 | { | ||
| 187 | am33xx_prm_rmw_reg_bits(AM33XX_LASTPOWERSTATEENTERED_MASK, | ||
| 188 | AM33XX_LASTPOWERSTATEENTERED_MASK, | ||
| 189 | pwrdm->prcm_offs, pwrdm->pwrstst_offs); | ||
| 190 | return 0; | ||
| 191 | } | ||
| 192 | |||
| 193 | static int am33xx_pwrdm_set_logic_retst(struct powerdomain *pwrdm, u8 pwrst) | ||
| 194 | { | ||
| 195 | u32 m; | ||
| 196 | |||
| 197 | m = pwrdm->logicretstate_mask; | ||
| 198 | if (!m) | ||
| 199 | return -EINVAL; | ||
| 200 | |||
| 201 | am33xx_prm_rmw_reg_bits(m, (pwrst << __ffs(m)), | ||
| 202 | pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 203 | |||
| 204 | return 0; | ||
| 205 | } | ||
| 206 | |||
| 207 | static int am33xx_pwrdm_read_logic_pwrst(struct powerdomain *pwrdm) | ||
| 208 | { | ||
| 209 | u32 v; | ||
| 210 | |||
| 211 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs); | ||
| 212 | v &= AM33XX_LOGICSTATEST_MASK; | ||
| 213 | v >>= AM33XX_LOGICSTATEST_SHIFT; | ||
| 214 | |||
| 215 | return v; | ||
| 216 | } | ||
| 217 | |||
| 218 | static int am33xx_pwrdm_read_logic_retst(struct powerdomain *pwrdm) | ||
| 219 | { | ||
| 220 | u32 v, m; | ||
| 221 | |||
| 222 | m = pwrdm->logicretstate_mask; | ||
| 223 | if (!m) | ||
| 224 | return -EINVAL; | ||
| 225 | |||
| 226 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 227 | v &= m; | ||
| 228 | v >>= __ffs(m); | ||
| 229 | |||
| 230 | return v; | ||
| 231 | } | ||
| 232 | |||
| 233 | static int am33xx_pwrdm_set_mem_onst(struct powerdomain *pwrdm, u8 bank, | ||
| 234 | u8 pwrst) | ||
| 235 | { | ||
| 236 | u32 m; | ||
| 237 | |||
| 238 | m = pwrdm->mem_on_mask[bank]; | ||
| 239 | if (!m) | ||
| 240 | return -EINVAL; | ||
| 241 | |||
| 242 | am33xx_prm_rmw_reg_bits(m, (pwrst << __ffs(m)), | ||
| 243 | pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 244 | |||
| 245 | return 0; | ||
| 246 | } | ||
| 247 | |||
| 248 | static int am33xx_pwrdm_set_mem_retst(struct powerdomain *pwrdm, u8 bank, | ||
| 249 | u8 pwrst) | ||
| 250 | { | ||
| 251 | u32 m; | ||
| 252 | |||
| 253 | m = pwrdm->mem_ret_mask[bank]; | ||
| 254 | if (!m) | ||
| 255 | return -EINVAL; | ||
| 256 | |||
| 257 | am33xx_prm_rmw_reg_bits(m, (pwrst << __ffs(m)), | ||
| 258 | pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 259 | |||
| 260 | return 0; | ||
| 261 | } | ||
| 262 | |||
| 263 | static int am33xx_pwrdm_read_mem_pwrst(struct powerdomain *pwrdm, u8 bank) | ||
| 264 | { | ||
| 265 | u32 m, v; | ||
| 266 | |||
| 267 | m = pwrdm->mem_pwrst_mask[bank]; | ||
| 268 | if (!m) | ||
| 269 | return -EINVAL; | ||
| 270 | |||
| 271 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs); | ||
| 272 | v &= m; | ||
| 273 | v >>= __ffs(m); | ||
| 274 | |||
| 275 | return v; | ||
| 276 | } | ||
| 277 | |||
| 278 | static int am33xx_pwrdm_read_mem_retst(struct powerdomain *pwrdm, u8 bank) | ||
| 279 | { | ||
| 280 | u32 m, v; | ||
| 281 | |||
| 282 | m = pwrdm->mem_retst_mask[bank]; | ||
| 283 | if (!m) | ||
| 284 | return -EINVAL; | ||
| 285 | |||
| 286 | v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstctrl_offs); | ||
| 287 | v &= m; | ||
| 288 | v >>= __ffs(m); | ||
| 289 | |||
| 290 | return v; | ||
| 291 | } | ||
| 292 | |||
| 293 | static int am33xx_pwrdm_wait_transition(struct powerdomain *pwrdm) | ||
| 294 | { | ||
| 295 | u32 c = 0; | ||
| 296 | |||
| 297 | /* | ||
| 298 | * REVISIT: pwrdm_wait_transition() may be better implemented | ||
| 299 | * via a callback and a periodic timer check -- how long do we expect | ||
| 300 | * powerdomain transitions to take? | ||
| 301 | */ | ||
| 302 | |||
| 303 | /* XXX Is this udelay() value meaningful? */ | ||
| 304 | while ((am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs) | ||
| 305 | & OMAP_INTRANSITION_MASK) && | ||
| 306 | (c++ < PWRDM_TRANSITION_BAILOUT)) | ||
| 307 | udelay(1); | ||
| 308 | |||
| 309 | if (c > PWRDM_TRANSITION_BAILOUT) { | ||
| 310 | pr_err("powerdomain: %s: waited too long to complete transition\n", | ||
| 311 | pwrdm->name); | ||
| 312 | return -EAGAIN; | ||
| 313 | } | ||
| 314 | |||
| 315 | pr_debug("powerdomain: completed transition in %d loops\n", c); | ||
| 316 | |||
| 317 | return 0; | ||
| 318 | } | ||
| 319 | |||
| 320 | struct pwrdm_ops am33xx_pwrdm_operations = { | ||
| 321 | .pwrdm_set_next_pwrst = am33xx_pwrdm_set_next_pwrst, | ||
| 322 | .pwrdm_read_next_pwrst = am33xx_pwrdm_read_next_pwrst, | ||
| 323 | .pwrdm_read_pwrst = am33xx_pwrdm_read_pwrst, | ||
| 324 | .pwrdm_read_prev_pwrst = am33xx_pwrdm_read_prev_pwrst, | ||
| 325 | .pwrdm_set_logic_retst = am33xx_pwrdm_set_logic_retst, | ||
| 326 | .pwrdm_read_logic_pwrst = am33xx_pwrdm_read_logic_pwrst, | ||
| 327 | .pwrdm_read_logic_retst = am33xx_pwrdm_read_logic_retst, | ||
| 328 | .pwrdm_clear_all_prev_pwrst = am33xx_pwrdm_clear_all_prev_pwrst, | ||
| 329 | .pwrdm_set_lowpwrstchange = am33xx_pwrdm_set_lowpwrstchange, | ||
| 330 | .pwrdm_read_mem_pwrst = am33xx_pwrdm_read_mem_pwrst, | ||
| 331 | .pwrdm_read_mem_retst = am33xx_pwrdm_read_mem_retst, | ||
| 332 | .pwrdm_set_mem_onst = am33xx_pwrdm_set_mem_onst, | ||
| 333 | .pwrdm_set_mem_retst = am33xx_pwrdm_set_mem_retst, | ||
| 334 | .pwrdm_wait_transition = am33xx_pwrdm_wait_transition, | ||
| 335 | }; | ||
diff --git a/arch/arm/mach-omap2/prm3xxx.c b/arch/arm/mach-omap2/prm3xxx.c new file mode 100644 index 000000000000..1fea656b2ca8 --- /dev/null +++ b/arch/arm/mach-omap2/prm3xxx.c | |||
| @@ -0,0 +1,403 @@ | |||
| 1 | /* | ||
| 2 | * OMAP3xxx PRM module functions | ||
| 3 | * | ||
| 4 | * Copyright (C) 2010-2012 Texas Instruments, Inc. | ||
| 5 | * Copyright (C) 2010 Nokia Corporation | ||
| 6 | * Benoît Cousson | ||
| 7 | * Paul Walmsley | ||
| 8 | * Rajendra Nayak <rnayak@ti.com> | ||
| 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/errno.h> | ||
| 17 | #include <linux/err.h> | ||
| 18 | #include <linux/io.h> | ||
| 19 | #include <linux/irq.h> | ||
| 20 | |||
| 21 | #include "common.h" | ||
| 22 | #include <plat/cpu.h> | ||
| 23 | #include <plat/prcm.h> | ||
| 24 | |||
| 25 | #include "vp.h" | ||
| 26 | #include "powerdomain.h" | ||
| 27 | #include "prm3xxx.h" | ||
| 28 | #include "prm2xxx_3xxx.h" | ||
| 29 | #include "cm2xxx_3xxx.h" | ||
| 30 | #include "prm-regbits-34xx.h" | ||
| 31 | |||
| 32 | static const struct omap_prcm_irq omap3_prcm_irqs[] = { | ||
| 33 | OMAP_PRCM_IRQ("wkup", 0, 0), | ||
| 34 | OMAP_PRCM_IRQ("io", 9, 1), | ||
| 35 | }; | ||
| 36 | |||
| 37 | static struct omap_prcm_irq_setup omap3_prcm_irq_setup = { | ||
| 38 | .ack = OMAP3_PRM_IRQSTATUS_MPU_OFFSET, | ||
| 39 | .mask = OMAP3_PRM_IRQENABLE_MPU_OFFSET, | ||
| 40 | .nr_regs = 1, | ||
| 41 | .irqs = omap3_prcm_irqs, | ||
| 42 | .nr_irqs = ARRAY_SIZE(omap3_prcm_irqs), | ||
| 43 | .irq = 11 + OMAP_INTC_START, | ||
| 44 | .read_pending_irqs = &omap3xxx_prm_read_pending_irqs, | ||
| 45 | .ocp_barrier = &omap3xxx_prm_ocp_barrier, | ||
| 46 | .save_and_clear_irqen = &omap3xxx_prm_save_and_clear_irqen, | ||
| 47 | .restore_irqen = &omap3xxx_prm_restore_irqen, | ||
| 48 | }; | ||
| 49 | |||
| 50 | /* | ||
| 51 | * omap3_prm_reset_src_map - map from bits in the PRM_RSTST hardware | ||
| 52 | * register (which are specific to OMAP3xxx SoCs) to reset source ID | ||
| 53 | * bit shifts (which is an OMAP SoC-independent enumeration) | ||
| 54 | */ | ||
| 55 | static struct prm_reset_src_map omap3xxx_prm_reset_src_map[] = { | ||
| 56 | { OMAP3430_GLOBAL_COLD_RST_SHIFT, OMAP_GLOBAL_COLD_RST_SRC_ID_SHIFT }, | ||
| 57 | { OMAP3430_GLOBAL_SW_RST_SHIFT, OMAP_GLOBAL_WARM_RST_SRC_ID_SHIFT }, | ||
| 58 | { OMAP3430_SECURITY_VIOL_RST_SHIFT, OMAP_SECU_VIOL_RST_SRC_ID_SHIFT }, | ||
| 59 | { OMAP3430_MPU_WD_RST_SHIFT, OMAP_MPU_WD_RST_SRC_ID_SHIFT }, | ||
| 60 | { OMAP3430_SECURE_WD_RST_SHIFT, OMAP_MPU_WD_RST_SRC_ID_SHIFT }, | ||
| 61 | { OMAP3430_EXTERNAL_WARM_RST_SHIFT, OMAP_EXTWARM_RST_SRC_ID_SHIFT }, | ||
| 62 | { OMAP3430_VDD1_VOLTAGE_MANAGER_RST_SHIFT, | ||
| 63 | OMAP_VDD_MPU_VM_RST_SRC_ID_SHIFT }, | ||
| 64 | { OMAP3430_VDD2_VOLTAGE_MANAGER_RST_SHIFT, | ||
| 65 | OMAP_VDD_CORE_VM_RST_SRC_ID_SHIFT }, | ||
| 66 | { OMAP3430_ICEPICK_RST_SHIFT, OMAP_ICEPICK_RST_SRC_ID_SHIFT }, | ||
| 67 | { OMAP3430_ICECRUSHER_RST_SHIFT, OMAP_ICECRUSHER_RST_SRC_ID_SHIFT }, | ||
| 68 | { -1, -1 }, | ||
| 69 | }; | ||
| 70 | |||
| 71 | /* PRM VP */ | ||
| 72 | |||
| 73 | /* | ||
| 74 | * struct omap3_vp - OMAP3 VP register access description. | ||
| 75 | * @tranxdone_status: VP_TRANXDONE_ST bitmask in PRM_IRQSTATUS_MPU reg | ||
| 76 | */ | ||
| 77 | struct omap3_vp { | ||
| 78 | u32 tranxdone_status; | ||
| 79 | }; | ||
| 80 | |||
| 81 | static struct omap3_vp omap3_vp[] = { | ||
| 82 | [OMAP3_VP_VDD_MPU_ID] = { | ||
| 83 | .tranxdone_status = OMAP3430_VP1_TRANXDONE_ST_MASK, | ||
| 84 | }, | ||
| 85 | [OMAP3_VP_VDD_CORE_ID] = { | ||
| 86 | .tranxdone_status = OMAP3430_VP2_TRANXDONE_ST_MASK, | ||
| 87 | }, | ||
| 88 | }; | ||
| 89 | |||
| 90 | #define MAX_VP_ID ARRAY_SIZE(omap3_vp); | ||
| 91 | |||
| 92 | u32 omap3_prm_vp_check_txdone(u8 vp_id) | ||
| 93 | { | ||
| 94 | struct omap3_vp *vp = &omap3_vp[vp_id]; | ||
| 95 | u32 irqstatus; | ||
| 96 | |||
| 97 | irqstatus = omap2_prm_read_mod_reg(OCP_MOD, | ||
| 98 | OMAP3_PRM_IRQSTATUS_MPU_OFFSET); | ||
| 99 | return irqstatus & vp->tranxdone_status; | ||
| 100 | } | ||
| 101 | |||
| 102 | void omap3_prm_vp_clear_txdone(u8 vp_id) | ||
| 103 | { | ||
| 104 | struct omap3_vp *vp = &omap3_vp[vp_id]; | ||
| 105 | |||
| 106 | omap2_prm_write_mod_reg(vp->tranxdone_status, | ||
| 107 | OCP_MOD, OMAP3_PRM_IRQSTATUS_MPU_OFFSET); | ||
| 108 | } | ||
| 109 | |||
| 110 | u32 omap3_prm_vcvp_read(u8 offset) | ||
| 111 | { | ||
| 112 | return omap2_prm_read_mod_reg(OMAP3430_GR_MOD, offset); | ||
| 113 | } | ||
| 114 | |||
| 115 | void omap3_prm_vcvp_write(u32 val, u8 offset) | ||
| 116 | { | ||
| 117 | omap2_prm_write_mod_reg(val, OMAP3430_GR_MOD, offset); | ||
| 118 | } | ||
| 119 | |||
| 120 | u32 omap3_prm_vcvp_rmw(u32 mask, u32 bits, u8 offset) | ||
| 121 | { | ||
| 122 | return omap2_prm_rmw_mod_reg_bits(mask, bits, OMAP3430_GR_MOD, offset); | ||
| 123 | } | ||
| 124 | |||
| 125 | /** | ||
| 126 | * omap3xxx_prm_read_pending_irqs - read pending PRM MPU IRQs into @events | ||
| 127 | * @events: ptr to a u32, preallocated by caller | ||
| 128 | * | ||
| 129 | * Read PRM_IRQSTATUS_MPU bits, AND'ed with the currently-enabled PRM | ||
| 130 | * MPU IRQs, and store the result into the u32 pointed to by @events. | ||
| 131 | * No return value. | ||
| 132 | */ | ||
| 133 | void omap3xxx_prm_read_pending_irqs(unsigned long *events) | ||
| 134 | { | ||
| 135 | u32 mask, st; | ||
| 136 | |||
| 137 | /* XXX Can the mask read be avoided (e.g., can it come from RAM?) */ | ||
| 138 | mask = omap2_prm_read_mod_reg(OCP_MOD, OMAP3_PRM_IRQENABLE_MPU_OFFSET); | ||
| 139 | st = omap2_prm_read_mod_reg(OCP_MOD, OMAP3_PRM_IRQSTATUS_MPU_OFFSET); | ||
| 140 | |||
| 141 | events[0] = mask & st; | ||
| 142 | } | ||
| 143 | |||
| 144 | /** | ||
| 145 | * omap3xxx_prm_ocp_barrier - force buffered MPU writes to the PRM to complete | ||
| 146 | * | ||
| 147 | * Force any buffered writes to the PRM IP block to complete. Needed | ||
| 148 | * by the PRM IRQ handler, which reads and writes directly to the IP | ||
| 149 | * block, to avoid race conditions after acknowledging or clearing IRQ | ||
| 150 | * bits. No return value. | ||
| 151 | */ | ||
| 152 | void omap3xxx_prm_ocp_barrier(void) | ||
| 153 | { | ||
| 154 | omap2_prm_read_mod_reg(OCP_MOD, OMAP3_PRM_REVISION_OFFSET); | ||
| 155 | } | ||
| 156 | |||
| 157 | /** | ||
| 158 | * omap3xxx_prm_save_and_clear_irqen - save/clear PRM_IRQENABLE_MPU reg | ||
| 159 | * @saved_mask: ptr to a u32 array to save IRQENABLE bits | ||
| 160 | * | ||
| 161 | * Save the PRM_IRQENABLE_MPU register to @saved_mask. @saved_mask | ||
| 162 | * must be allocated by the caller. Intended to be used in the PRM | ||
| 163 | * interrupt handler suspend callback. The OCP barrier is needed to | ||
| 164 | * ensure the write to disable PRM interrupts reaches the PRM before | ||
| 165 | * returning; otherwise, spurious interrupts might occur. No return | ||
| 166 | * value. | ||
| 167 | */ | ||
| 168 | void omap3xxx_prm_save_and_clear_irqen(u32 *saved_mask) | ||
| 169 | { | ||
| 170 | saved_mask[0] = omap2_prm_read_mod_reg(OCP_MOD, | ||
| 171 | OMAP3_PRM_IRQENABLE_MPU_OFFSET); | ||
| 172 | omap2_prm_write_mod_reg(0, OCP_MOD, OMAP3_PRM_IRQENABLE_MPU_OFFSET); | ||
| 173 | |||
| 174 | /* OCP barrier */ | ||
| 175 | omap2_prm_read_mod_reg(OCP_MOD, OMAP3_PRM_REVISION_OFFSET); | ||
| 176 | } | ||
| 177 | |||
| 178 | /** | ||
| 179 | * omap3xxx_prm_restore_irqen - set PRM_IRQENABLE_MPU register from args | ||
| 180 | * @saved_mask: ptr to a u32 array of IRQENABLE bits saved previously | ||
| 181 | * | ||
| 182 | * Restore the PRM_IRQENABLE_MPU register from @saved_mask. Intended | ||
| 183 | * to be used in the PRM interrupt handler resume callback to restore | ||
| 184 | * values saved by omap3xxx_prm_save_and_clear_irqen(). No OCP | ||
| 185 | * barrier should be needed here; any pending PRM interrupts will fire | ||
| 186 | * once the writes reach the PRM. No return value. | ||
| 187 | */ | ||
| 188 | void omap3xxx_prm_restore_irqen(u32 *saved_mask) | ||
| 189 | { | ||
| 190 | omap2_prm_write_mod_reg(saved_mask[0], OCP_MOD, | ||
| 191 | OMAP3_PRM_IRQENABLE_MPU_OFFSET); | ||
| 192 | } | ||
| 193 | |||
| 194 | /** | ||
| 195 | * omap3xxx_prm_reconfigure_io_chain - clear latches and reconfigure I/O chain | ||
| 196 | * | ||
| 197 | * Clear any previously-latched I/O wakeup events and ensure that the | ||
| 198 | * I/O wakeup gates are aligned with the current mux settings. Works | ||
| 199 | * by asserting WUCLKIN, waiting for WUCLKOUT to be asserted, and then | ||
| 200 | * deasserting WUCLKIN and clearing the ST_IO_CHAIN WKST bit. No | ||
| 201 | * return value. | ||
| 202 | */ | ||
| 203 | void omap3xxx_prm_reconfigure_io_chain(void) | ||
| 204 | { | ||
| 205 | int i = 0; | ||
| 206 | |||
| 207 | omap2_prm_set_mod_reg_bits(OMAP3430_EN_IO_CHAIN_MASK, WKUP_MOD, | ||
| 208 | PM_WKEN); | ||
| 209 | |||
| 210 | omap_test_timeout(omap2_prm_read_mod_reg(WKUP_MOD, PM_WKST) & | ||
| 211 | OMAP3430_ST_IO_CHAIN_MASK, | ||
| 212 | MAX_IOPAD_LATCH_TIME, i); | ||
| 213 | if (i == MAX_IOPAD_LATCH_TIME) | ||
| 214 | pr_warn("PRM: I/O chain clock line assertion timed out\n"); | ||
| 215 | |||
| 216 | omap2_prm_clear_mod_reg_bits(OMAP3430_EN_IO_CHAIN_MASK, WKUP_MOD, | ||
| 217 | PM_WKEN); | ||
| 218 | |||
| 219 | omap2_prm_set_mod_reg_bits(OMAP3430_ST_IO_CHAIN_MASK, WKUP_MOD, | ||
| 220 | PM_WKST); | ||
| 221 | |||
| 222 | omap2_prm_read_mod_reg(WKUP_MOD, PM_WKST); | ||
| 223 | } | ||
| 224 | |||
| 225 | /** | ||
| 226 | * omap3xxx_prm_enable_io_wakeup - enable wakeup events from I/O wakeup latches | ||
| 227 | * | ||
| 228 | * Activates the I/O wakeup event latches and allows events logged by | ||
| 229 | * those latches to signal a wakeup event to the PRCM. For I/O | ||
| 230 | * wakeups to occur, WAKEUPENABLE bits must be set in the pad mux | ||
| 231 | * registers, and omap3xxx_prm_reconfigure_io_chain() must be called. | ||
| 232 | * No return value. | ||
| 233 | */ | ||
| 234 | static void __init omap3xxx_prm_enable_io_wakeup(void) | ||
| 235 | { | ||
| 236 | if (omap3_has_io_wakeup()) | ||
| 237 | omap2_prm_set_mod_reg_bits(OMAP3430_EN_IO_MASK, WKUP_MOD, | ||
| 238 | PM_WKEN); | ||
| 239 | } | ||
| 240 | |||
| 241 | /** | ||
| 242 | * omap3xxx_prm_read_reset_sources - return the last SoC reset source | ||
| 243 | * | ||
| 244 | * Return a u32 representing the last reset sources of the SoC. The | ||
| 245 | * returned reset source bits are standardized across OMAP SoCs. | ||
| 246 | */ | ||
| 247 | static u32 omap3xxx_prm_read_reset_sources(void) | ||
| 248 | { | ||
| 249 | struct prm_reset_src_map *p; | ||
| 250 | u32 r = 0; | ||
| 251 | u32 v; | ||
| 252 | |||
| 253 | v = omap2_prm_read_mod_reg(WKUP_MOD, OMAP2_RM_RSTST); | ||
| 254 | |||
| 255 | p = omap3xxx_prm_reset_src_map; | ||
| 256 | while (p->reg_shift >= 0 && p->std_shift >= 0) { | ||
| 257 | if (v & (1 << p->reg_shift)) | ||
| 258 | r |= 1 << p->std_shift; | ||
| 259 | p++; | ||
| 260 | } | ||
| 261 | |||
| 262 | return r; | ||
| 263 | } | ||
| 264 | |||
| 265 | /* Powerdomain low-level functions */ | ||
| 266 | |||
| 267 | /* Applicable only for OMAP3. Not supported on OMAP2 */ | ||
| 268 | static int omap3_pwrdm_read_prev_pwrst(struct powerdomain *pwrdm) | ||
| 269 | { | ||
| 270 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, | ||
| 271 | OMAP3430_PM_PREPWSTST, | ||
| 272 | OMAP3430_LASTPOWERSTATEENTERED_MASK); | ||
| 273 | } | ||
| 274 | |||
| 275 | static int omap3_pwrdm_read_logic_pwrst(struct powerdomain *pwrdm) | ||
| 276 | { | ||
| 277 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, | ||
| 278 | OMAP2_PM_PWSTST, | ||
| 279 | OMAP3430_LOGICSTATEST_MASK); | ||
| 280 | } | ||
| 281 | |||
| 282 | static int omap3_pwrdm_read_logic_retst(struct powerdomain *pwrdm) | ||
| 283 | { | ||
| 284 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, | ||
| 285 | OMAP2_PM_PWSTCTRL, | ||
| 286 | OMAP3430_LOGICSTATEST_MASK); | ||
| 287 | } | ||
| 288 | |||
| 289 | static int omap3_pwrdm_read_prev_logic_pwrst(struct powerdomain *pwrdm) | ||
| 290 | { | ||
| 291 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, | ||
| 292 | OMAP3430_PM_PREPWSTST, | ||
| 293 | OMAP3430_LASTLOGICSTATEENTERED_MASK); | ||
| 294 | } | ||
| 295 | |||
| 296 | static int omap3_get_mem_bank_lastmemst_mask(u8 bank) | ||
| 297 | { | ||
| 298 | switch (bank) { | ||
| 299 | case 0: | ||
| 300 | return OMAP3430_LASTMEM1STATEENTERED_MASK; | ||
| 301 | case 1: | ||
| 302 | return OMAP3430_LASTMEM2STATEENTERED_MASK; | ||
| 303 | case 2: | ||
| 304 | return OMAP3430_LASTSHAREDL2CACHEFLATSTATEENTERED_MASK; | ||
| 305 | case 3: | ||
| 306 | return OMAP3430_LASTL2FLATMEMSTATEENTERED_MASK; | ||
| 307 | default: | ||
| 308 | WARN_ON(1); /* should never happen */ | ||
| 309 | return -EEXIST; | ||
| 310 | } | ||
| 311 | return 0; | ||
| 312 | } | ||
| 313 | |||
| 314 | static int omap3_pwrdm_read_prev_mem_pwrst(struct powerdomain *pwrdm, u8 bank) | ||
| 315 | { | ||
| 316 | u32 m; | ||
| 317 | |||
| 318 | m = omap3_get_mem_bank_lastmemst_mask(bank); | ||
| 319 | |||
| 320 | return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, | ||
| 321 | OMAP3430_PM_PREPWSTST, m); | ||
| 322 | } | ||
| 323 | |||
| 324 | static int omap3_pwrdm_clear_all_prev_pwrst(struct powerdomain *pwrdm) | ||
| 325 | { | ||
| 326 | omap2_prm_write_mod_reg(0, pwrdm->prcm_offs, OMAP3430_PM_PREPWSTST); | ||
| 327 | return 0; | ||
| 328 | } | ||
| 329 | |||
| 330 | static int omap3_pwrdm_enable_hdwr_sar(struct powerdomain *pwrdm) | ||
| 331 | { | ||
| 332 | return omap2_prm_rmw_mod_reg_bits(0, | ||
| 333 | 1 << OMAP3430ES2_SAVEANDRESTORE_SHIFT, | ||
| 334 | pwrdm->prcm_offs, OMAP2_PM_PWSTCTRL); | ||
| 335 | } | ||
| 336 | |||
| 337 | static int omap3_pwrdm_disable_hdwr_sar(struct powerdomain *pwrdm) | ||
| 338 | { | ||
| 339 | return omap2_prm_rmw_mod_reg_bits(1 << OMAP3430ES2_SAVEANDRESTORE_SHIFT, | ||
| 340 | 0, pwrdm->prcm_offs, | ||
| 341 | OMAP2_PM_PWSTCTRL); | ||
| 342 | } | ||
| 343 | |||
| 344 | struct pwrdm_ops omap3_pwrdm_operations = { | ||
| 345 | .pwrdm_set_next_pwrst = omap2_pwrdm_set_next_pwrst, | ||
| 346 | .pwrdm_read_next_pwrst = omap2_pwrdm_read_next_pwrst, | ||
| 347 | .pwrdm_read_pwrst = omap2_pwrdm_read_pwrst, | ||
| 348 | .pwrdm_read_prev_pwrst = omap3_pwrdm_read_prev_pwrst, | ||
| 349 | .pwrdm_set_logic_retst = omap2_pwrdm_set_logic_retst, | ||
| 350 | .pwrdm_read_logic_pwrst = omap3_pwrdm_read_logic_pwrst, | ||
| 351 | .pwrdm_read_logic_retst = omap3_pwrdm_read_logic_retst, | ||
| 352 | .pwrdm_read_prev_logic_pwrst = omap3_pwrdm_read_prev_logic_pwrst, | ||
| 353 | .pwrdm_set_mem_onst = omap2_pwrdm_set_mem_onst, | ||
| 354 | .pwrdm_set_mem_retst = omap2_pwrdm_set_mem_retst, | ||
| 355 | .pwrdm_read_mem_pwrst = omap2_pwrdm_read_mem_pwrst, | ||
| 356 | .pwrdm_read_mem_retst = omap2_pwrdm_read_mem_retst, | ||
| 357 | .pwrdm_read_prev_mem_pwrst = omap3_pwrdm_read_prev_mem_pwrst, | ||
| 358 | .pwrdm_clear_all_prev_pwrst = omap3_pwrdm_clear_all_prev_pwrst, | ||
| 359 | .pwrdm_enable_hdwr_sar = omap3_pwrdm_enable_hdwr_sar, | ||
| 360 | .pwrdm_disable_hdwr_sar = omap3_pwrdm_disable_hdwr_sar, | ||
| 361 | .pwrdm_wait_transition = omap2_pwrdm_wait_transition, | ||
| 362 | }; | ||
| 363 | |||
| 364 | /* | ||
| 365 | * | ||
| 366 | */ | ||
| 367 | |||
| 368 | static struct prm_ll_data omap3xxx_prm_ll_data = { | ||
| 369 | .read_reset_sources = &omap3xxx_prm_read_reset_sources, | ||
| 370 | }; | ||
| 371 | |||
| 372 | static int __init omap3xxx_prm_init(void) | ||
| 373 | { | ||
| 374 | int ret; | ||
| 375 | |||
| 376 | if (!cpu_is_omap34xx()) | ||
| 377 | return 0; | ||
| 378 | |||
| 379 | ret = prm_register(&omap3xxx_prm_ll_data); | ||
| 380 | if (ret) | ||
| 381 | return ret; | ||
| 382 | |||
| 383 | omap3xxx_prm_enable_io_wakeup(); | ||
| 384 | ret = omap_prcm_register_chain_handler(&omap3_prcm_irq_setup); | ||
| 385 | if (!ret) | ||
| 386 | irq_set_status_flags(omap_prcm_event_to_irq("io"), | ||
| 387 | IRQ_NOAUTOEN); | ||
| 388 | |||
| 389 | |||
| 390 | return ret; | ||
| 391 | } | ||
| 392 | subsys_initcall(omap3xxx_prm_init); | ||
| 393 | |||
| 394 | static void __exit omap3xxx_prm_exit(void) | ||
| 395 | { | ||
| 396 | if (!cpu_is_omap34xx()) | ||
| 397 | return; | ||
| 398 | |||
| 399 | /* Should never happen */ | ||
| 400 | WARN(prm_unregister(&omap3xxx_prm_ll_data), | ||
| 401 | "%s: prm_ll_data function pointer mismatch\n", __func__); | ||
| 402 | } | ||
| 403 | __exitcall(omap3xxx_prm_exit); | ||
diff --git a/arch/arm/mach-omap2/prm3xxx.h b/arch/arm/mach-omap2/prm3xxx.h new file mode 100644 index 000000000000..a3c28a875410 --- /dev/null +++ b/arch/arm/mach-omap2/prm3xxx.h | |||
| @@ -0,0 +1,160 @@ | |||
| 1 | /* | ||
| 2 | * OMAP3xxx Power/Reset Management (PRM) register definitions | ||
| 3 | * | ||
| 4 | * Copyright (C) 2007-2009, 2011-2012 Texas Instruments, Inc. | ||
| 5 | * Copyright (C) 2008-2010 Nokia Corporation | ||
| 6 | * Paul Walmsley | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License version 2 as | ||
| 10 | * published by the Free Software Foundation. | ||
| 11 | * | ||
| 12 | * The PRM hardware modules on the OMAP2/3 are quite similar to each | ||
| 13 | * other. The PRM on OMAP4 has a new register layout, and is handled | ||
| 14 | * in a separate file. | ||
| 15 | */ | ||
| 16 | #ifndef __ARCH_ARM_MACH_OMAP2_PRM3XXX_H | ||
| 17 | #define __ARCH_ARM_MACH_OMAP2_PRM3XXX_H | ||
| 18 | |||
| 19 | #include "prcm-common.h" | ||
| 20 | #include "prm.h" | ||
| 21 | #include "prm2xxx_3xxx.h" | ||
| 22 | |||
| 23 | #define OMAP34XX_PRM_REGADDR(module, reg) \ | ||
| 24 | OMAP2_L4_IO_ADDRESS(OMAP3430_PRM_BASE + (module) + (reg)) | ||
| 25 | |||
| 26 | |||
| 27 | /* | ||
| 28 | * OMAP3-specific global PRM registers | ||
| 29 | * Use __raw_{read,write}l() with these registers. | ||
| 30 | * | ||
| 31 | * With a few exceptions, these are the register names beginning with | ||
| 32 | * PRM_* on 34xx. (The exceptions are the IRQSTATUS and IRQENABLE | ||
| 33 | * bits.) | ||
| 34 | */ | ||
| 35 | |||
| 36 | #define OMAP3_PRM_REVISION_OFFSET 0x0004 | ||
| 37 | #define OMAP3430_PRM_REVISION OMAP34XX_PRM_REGADDR(OCP_MOD, 0x0004) | ||
| 38 | #define OMAP3_PRM_SYSCONFIG_OFFSET 0x0014 | ||
| 39 | #define OMAP3430_PRM_SYSCONFIG OMAP34XX_PRM_REGADDR(OCP_MOD, 0x0014) | ||
| 40 | |||
| 41 | #define OMAP3_PRM_IRQSTATUS_MPU_OFFSET 0x0018 | ||
| 42 | #define OMAP3430_PRM_IRQSTATUS_MPU OMAP34XX_PRM_REGADDR(OCP_MOD, 0x0018) | ||
| 43 | #define OMAP3_PRM_IRQENABLE_MPU_OFFSET 0x001c | ||
| 44 | #define OMAP3430_PRM_IRQENABLE_MPU OMAP34XX_PRM_REGADDR(OCP_MOD, 0x001c) | ||
| 45 | |||
| 46 | |||
| 47 | #define OMAP3_PRM_VC_SMPS_SA_OFFSET 0x0020 | ||
| 48 | #define OMAP3430_PRM_VC_SMPS_SA OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0020) | ||
| 49 | #define OMAP3_PRM_VC_SMPS_VOL_RA_OFFSET 0x0024 | ||
| 50 | #define OMAP3430_PRM_VC_SMPS_VOL_RA OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0024) | ||
| 51 | #define OMAP3_PRM_VC_SMPS_CMD_RA_OFFSET 0x0028 | ||
| 52 | #define OMAP3430_PRM_VC_SMPS_CMD_RA OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0028) | ||
| 53 | #define OMAP3_PRM_VC_CMD_VAL_0_OFFSET 0x002c | ||
| 54 | #define OMAP3430_PRM_VC_CMD_VAL_0 OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x002c) | ||
| 55 | #define OMAP3_PRM_VC_CMD_VAL_1_OFFSET 0x0030 | ||
| 56 | #define OMAP3430_PRM_VC_CMD_VAL_1 OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0030) | ||
| 57 | #define OMAP3_PRM_VC_CH_CONF_OFFSET 0x0034 | ||
| 58 | #define OMAP3430_PRM_VC_CH_CONF OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0034) | ||
| 59 | #define OMAP3_PRM_VC_I2C_CFG_OFFSET 0x0038 | ||
| 60 | #define OMAP3430_PRM_VC_I2C_CFG OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0038) | ||
| 61 | #define OMAP3_PRM_VC_BYPASS_VAL_OFFSET 0x003c | ||
| 62 | #define OMAP3430_PRM_VC_BYPASS_VAL OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x003c) | ||
| 63 | #define OMAP3_PRM_RSTCTRL_OFFSET 0x0050 | ||
| 64 | #define OMAP3430_PRM_RSTCTRL OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0050) | ||
| 65 | #define OMAP3_PRM_RSTTIME_OFFSET 0x0054 | ||
| 66 | #define OMAP3430_PRM_RSTTIME OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0054) | ||
| 67 | #define OMAP3_PRM_RSTST_OFFSET 0x0058 | ||
| 68 | #define OMAP3430_PRM_RSTST OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0058) | ||
| 69 | #define OMAP3_PRM_VOLTCTRL_OFFSET 0x0060 | ||
| 70 | #define OMAP3430_PRM_VOLTCTRL OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0060) | ||
| 71 | #define OMAP3_PRM_SRAM_PCHARGE_OFFSET 0x0064 | ||
| 72 | #define OMAP3430_PRM_SRAM_PCHARGE OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0064) | ||
| 73 | #define OMAP3_PRM_CLKSRC_CTRL_OFFSET 0x0070 | ||
| 74 | #define OMAP3430_PRM_CLKSRC_CTRL OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0070) | ||
| 75 | #define OMAP3_PRM_VOLTSETUP1_OFFSET 0x0090 | ||
| 76 | #define OMAP3430_PRM_VOLTSETUP1 OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0090) | ||
| 77 | #define OMAP3_PRM_VOLTOFFSET_OFFSET 0x0094 | ||
| 78 | #define OMAP3430_PRM_VOLTOFFSET OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0094) | ||
| 79 | #define OMAP3_PRM_CLKSETUP_OFFSET 0x0098 | ||
| 80 | #define OMAP3430_PRM_CLKSETUP OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x0098) | ||
| 81 | #define OMAP3_PRM_POLCTRL_OFFSET 0x009c | ||
| 82 | #define OMAP3430_PRM_POLCTRL OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x009c) | ||
| 83 | #define OMAP3_PRM_VOLTSETUP2_OFFSET 0x00a0 | ||
| 84 | #define OMAP3430_PRM_VOLTSETUP2 OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00a0) | ||
| 85 | #define OMAP3_PRM_VP1_CONFIG_OFFSET 0x00b0 | ||
| 86 | #define OMAP3430_PRM_VP1_CONFIG OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00b0) | ||
| 87 | #define OMAP3_PRM_VP1_VSTEPMIN_OFFSET 0x00b4 | ||
| 88 | #define OMAP3430_PRM_VP1_VSTEPMIN OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00b4) | ||
| 89 | #define OMAP3_PRM_VP1_VSTEPMAX_OFFSET 0x00b8 | ||
| 90 | #define OMAP3430_PRM_VP1_VSTEPMAX OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00b8) | ||
| 91 | #define OMAP3_PRM_VP1_VLIMITTO_OFFSET 0x00bc | ||
| 92 | #define OMAP3430_PRM_VP1_VLIMITTO OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00bc) | ||
| 93 | #define OMAP3_PRM_VP1_VOLTAGE_OFFSET 0x00c0 | ||
| 94 | #define OMAP3430_PRM_VP1_VOLTAGE OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00c0) | ||
| 95 | #define OMAP3_PRM_VP1_STATUS_OFFSET 0x00c4 | ||
| 96 | #define OMAP3430_PRM_VP1_STATUS OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00c4) | ||
| 97 | #define OMAP3_PRM_VP2_CONFIG_OFFSET 0x00d0 | ||
| 98 | #define OMAP3430_PRM_VP2_CONFIG OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00d0) | ||
| 99 | #define OMAP3_PRM_VP2_VSTEPMIN_OFFSET 0x00d4 | ||
| 100 | #define OMAP3430_PRM_VP2_VSTEPMIN OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00d4) | ||
| 101 | #define OMAP3_PRM_VP2_VSTEPMAX_OFFSET 0x00d8 | ||
| 102 | #define OMAP3430_PRM_VP2_VSTEPMAX OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00d8) | ||
| 103 | #define OMAP3_PRM_VP2_VLIMITTO_OFFSET 0x00dc | ||
| 104 | #define OMAP3430_PRM_VP2_VLIMITTO OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00dc) | ||
| 105 | #define OMAP3_PRM_VP2_VOLTAGE_OFFSET 0x00e0 | ||
| 106 | #define OMAP3430_PRM_VP2_VOLTAGE OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00e0) | ||
| 107 | #define OMAP3_PRM_VP2_STATUS_OFFSET 0x00e4 | ||
| 108 | #define OMAP3430_PRM_VP2_STATUS OMAP34XX_PRM_REGADDR(OMAP3430_GR_MOD, 0x00e4) | ||
| 109 | |||
| 110 | #define OMAP3_PRM_CLKSEL_OFFSET 0x0040 | ||
| 111 | #define OMAP3430_PRM_CLKSEL OMAP34XX_PRM_REGADDR(OMAP3430_CCR_MOD, 0x0040) | ||
| 112 | #define OMAP3_PRM_CLKOUT_CTRL_OFFSET 0x0070 | ||
| 113 | #define OMAP3430_PRM_CLKOUT_CTRL OMAP34XX_PRM_REGADDR(OMAP3430_CCR_MOD, 0x0070) | ||
| 114 | |||
| 115 | /* OMAP3 specific register offsets */ | ||
| 116 | #define OMAP3430ES2_PM_WKEN3 0x00f0 | ||
| 117 | #define OMAP3430ES2_PM_WKST3 0x00b8 | ||
| 118 | |||
| 119 | #define OMAP3430_PM_MPUGRPSEL 0x00a4 | ||
| 120 | #define OMAP3430_PM_MPUGRPSEL1 OMAP3430_PM_MPUGRPSEL | ||
| 121 | #define OMAP3430ES2_PM_MPUGRPSEL3 0x00f8 | ||
| 122 | |||
| 123 | #define OMAP3430_PM_IVAGRPSEL 0x00a8 | ||
| 124 | #define OMAP3430_PM_IVAGRPSEL1 OMAP3430_PM_IVAGRPSEL | ||
| 125 | #define OMAP3430ES2_PM_IVAGRPSEL3 0x00f4 | ||
| 126 | |||
| 127 | #define OMAP3430_PM_PREPWSTST 0x00e8 | ||
| 128 | |||
| 129 | #define OMAP3430_PRM_IRQSTATUS_IVA2 0x00f8 | ||
| 130 | #define OMAP3430_PRM_IRQENABLE_IVA2 0x00fc | ||
| 131 | |||
| 132 | |||
| 133 | #ifndef __ASSEMBLER__ | ||
| 134 | |||
| 135 | /* OMAP3-specific VP functions */ | ||
| 136 | u32 omap3_prm_vp_check_txdone(u8 vp_id); | ||
| 137 | void omap3_prm_vp_clear_txdone(u8 vp_id); | ||
| 138 | |||
| 139 | /* | ||
| 140 | * OMAP3 access functions for voltage controller (VC) and | ||
| 141 | * voltage proccessor (VP) in the PRM. | ||
| 142 | */ | ||
| 143 | extern u32 omap3_prm_vcvp_read(u8 offset); | ||
| 144 | extern void omap3_prm_vcvp_write(u32 val, u8 offset); | ||
| 145 | extern u32 omap3_prm_vcvp_rmw(u32 mask, u32 bits, u8 offset); | ||
| 146 | |||
| 147 | extern void omap3xxx_prm_reconfigure_io_chain(void); | ||
| 148 | |||
| 149 | /* PRM interrupt-related functions */ | ||
| 150 | extern void omap3xxx_prm_read_pending_irqs(unsigned long *events); | ||
| 151 | extern void omap3xxx_prm_ocp_barrier(void); | ||
| 152 | extern void omap3xxx_prm_save_and_clear_irqen(u32 *saved_mask); | ||
| 153 | extern void omap3xxx_prm_restore_irqen(u32 *saved_mask); | ||
| 154 | |||
| 155 | extern u32 omap3xxx_prm_get_reset_sources(void); | ||
| 156 | |||
| 157 | #endif /* __ASSEMBLER */ | ||
| 158 | |||
| 159 | |||
| 160 | #endif | ||
diff --git a/arch/arm/mach-omap2/prm44xx.c b/arch/arm/mach-omap2/prm44xx.c index f0c4d5f4a174..a799e9552fbf 100644 --- a/arch/arm/mach-omap2/prm44xx.c +++ b/arch/arm/mach-omap2/prm44xx.c | |||
| @@ -1,10 +1,11 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * OMAP4 PRM module functions | 2 | * OMAP4 PRM module functions |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2011 Texas Instruments, Inc. | 4 | * Copyright (C) 2011-2012 Texas Instruments, Inc. |
| 5 | * Copyright (C) 2010 Nokia Corporation | 5 | * Copyright (C) 2010 Nokia Corporation |
| 6 | * Benoît Cousson | 6 | * Benoît Cousson |
| 7 | * Paul Walmsley | 7 | * Paul Walmsley |
| 8 | * Rajendra Nayak <rnayak@ti.com> | ||
| 8 | * | 9 | * |
| 9 | * This program is free software; you can redistribute it and/or modify | 10 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as | 11 | * it under the terms of the GNU General Public License version 2 as |
| @@ -27,6 +28,9 @@ | |||
| 27 | #include "prm-regbits-44xx.h" | 28 | #include "prm-regbits-44xx.h" |
| 28 | #include "prcm44xx.h" | 29 | #include "prcm44xx.h" |
| 29 | #include "prminst44xx.h" | 30 | #include "prminst44xx.h" |
| 31 | #include "powerdomain.h" | ||
| 32 | |||
| 33 | /* Static data */ | ||
| 30 | 34 | ||
| 31 | static const struct omap_prcm_irq omap4_prcm_irqs[] = { | 35 | static const struct omap_prcm_irq omap4_prcm_irqs[] = { |
| 32 | OMAP_PRCM_IRQ("wkup", 0, 0), | 36 | OMAP_PRCM_IRQ("wkup", 0, 0), |
| @@ -46,6 +50,33 @@ static struct omap_prcm_irq_setup omap4_prcm_irq_setup = { | |||
| 46 | .restore_irqen = &omap44xx_prm_restore_irqen, | 50 | .restore_irqen = &omap44xx_prm_restore_irqen, |
| 47 | }; | 51 | }; |
| 48 | 52 | ||
| 53 | /* | ||
| 54 | * omap44xx_prm_reset_src_map - map from bits in the PRM_RSTST | ||
| 55 | * hardware register (which are specific to OMAP44xx SoCs) to reset | ||
| 56 | * source ID bit shifts (which is an OMAP SoC-independent | ||
| 57 | * enumeration) | ||
| 58 | */ | ||
| 59 | static struct prm_reset_src_map omap44xx_prm_reset_src_map[] = { | ||
| 60 | { OMAP4430_RST_GLOBAL_WARM_SW_SHIFT, | ||
| 61 | OMAP_GLOBAL_WARM_RST_SRC_ID_SHIFT }, | ||
| 62 | { OMAP4430_RST_GLOBAL_COLD_SW_SHIFT, | ||
| 63 | OMAP_GLOBAL_COLD_RST_SRC_ID_SHIFT }, | ||
| 64 | { OMAP4430_MPU_SECURITY_VIOL_RST_SHIFT, | ||
| 65 | OMAP_SECU_VIOL_RST_SRC_ID_SHIFT }, | ||
| 66 | { OMAP4430_MPU_WDT_RST_SHIFT, OMAP_MPU_WD_RST_SRC_ID_SHIFT }, | ||
| 67 | { OMAP4430_SECURE_WDT_RST_SHIFT, OMAP_SECU_WD_RST_SRC_ID_SHIFT }, | ||
| 68 | { OMAP4430_EXTERNAL_WARM_RST_SHIFT, OMAP_EXTWARM_RST_SRC_ID_SHIFT }, | ||
| 69 | { OMAP4430_VDD_MPU_VOLT_MGR_RST_SHIFT, | ||
| 70 | OMAP_VDD_MPU_VM_RST_SRC_ID_SHIFT }, | ||
| 71 | { OMAP4430_VDD_IVA_VOLT_MGR_RST_SHIFT, | ||
| 72 | OMAP_VDD_IVA_VM_RST_SRC_ID_SHIFT }, | ||
| 73 | { OMAP4430_VDD_CORE_VOLT_MGR_RST_SHIFT, | ||
| 74 | OMAP_VDD_CORE_VM_RST_SRC_ID_SHIFT }, | ||
| 75 | { OMAP4430_ICEPICK_RST_SHIFT, OMAP_ICEPICK_RST_SRC_ID_SHIFT }, | ||
| 76 | { OMAP4430_C2C_RST_SHIFT, OMAP_C2C_RST_SRC_ID_SHIFT }, | ||
| 77 | { -1, -1 }, | ||
| 78 | }; | ||
| 79 | |||
| 49 | /* PRM low-level functions */ | 80 | /* PRM low-level functions */ |
| 50 | 81 | ||
| 51 | /* Read a register in a CM/PRM instance in the PRM module */ | 82 | /* Read a register in a CM/PRM instance in the PRM module */ |
| @@ -291,12 +322,324 @@ static void __init omap44xx_prm_enable_io_wakeup(void) | |||
| 291 | OMAP4_PRM_IO_PMCTRL_OFFSET); | 322 | OMAP4_PRM_IO_PMCTRL_OFFSET); |
| 292 | } | 323 | } |
| 293 | 324 | ||
| 294 | static int __init omap4xxx_prcm_init(void) | 325 | /** |
| 326 | * omap44xx_prm_read_reset_sources - return the last SoC reset source | ||
| 327 | * | ||
| 328 | * Return a u32 representing the last reset sources of the SoC. The | ||
| 329 | * returned reset source bits are standardized across OMAP SoCs. | ||
| 330 | */ | ||
| 331 | static u32 omap44xx_prm_read_reset_sources(void) | ||
| 332 | { | ||
| 333 | struct prm_reset_src_map *p; | ||
| 334 | u32 r = 0; | ||
| 335 | u32 v; | ||
| 336 | |||
| 337 | v = omap4_prm_read_inst_reg(OMAP4430_PRM_OCP_SOCKET_INST, | ||
| 338 | OMAP4_RM_RSTST); | ||
| 339 | |||
| 340 | p = omap44xx_prm_reset_src_map; | ||
| 341 | while (p->reg_shift >= 0 && p->std_shift >= 0) { | ||
| 342 | if (v & (1 << p->reg_shift)) | ||
| 343 | r |= 1 << p->std_shift; | ||
| 344 | p++; | ||
| 345 | } | ||
| 346 | |||
| 347 | return r; | ||
| 348 | } | ||
| 349 | |||
| 350 | /* Powerdomain low-level functions */ | ||
| 351 | |||
| 352 | static int omap4_pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst) | ||
| 353 | { | ||
| 354 | omap4_prminst_rmw_inst_reg_bits(OMAP_POWERSTATE_MASK, | ||
| 355 | (pwrst << OMAP_POWERSTATE_SHIFT), | ||
| 356 | pwrdm->prcm_partition, | ||
| 357 | pwrdm->prcm_offs, OMAP4_PM_PWSTCTRL); | ||
| 358 | return 0; | ||
| 359 | } | ||
| 360 | |||
| 361 | static int omap4_pwrdm_read_next_pwrst(struct powerdomain *pwrdm) | ||
| 362 | { | ||
| 363 | u32 v; | ||
| 364 | |||
| 365 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 366 | OMAP4_PM_PWSTCTRL); | ||
| 367 | v &= OMAP_POWERSTATE_MASK; | ||
| 368 | v >>= OMAP_POWERSTATE_SHIFT; | ||
| 369 | |||
| 370 | return v; | ||
| 371 | } | ||
| 372 | |||
| 373 | static int omap4_pwrdm_read_pwrst(struct powerdomain *pwrdm) | ||
| 374 | { | ||
| 375 | u32 v; | ||
| 376 | |||
| 377 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 378 | OMAP4_PM_PWSTST); | ||
| 379 | v &= OMAP_POWERSTATEST_MASK; | ||
| 380 | v >>= OMAP_POWERSTATEST_SHIFT; | ||
| 381 | |||
| 382 | return v; | ||
| 383 | } | ||
| 384 | |||
| 385 | static int omap4_pwrdm_read_prev_pwrst(struct powerdomain *pwrdm) | ||
| 386 | { | ||
| 387 | u32 v; | ||
| 388 | |||
| 389 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 390 | OMAP4_PM_PWSTST); | ||
| 391 | v &= OMAP4430_LASTPOWERSTATEENTERED_MASK; | ||
| 392 | v >>= OMAP4430_LASTPOWERSTATEENTERED_SHIFT; | ||
| 393 | |||
| 394 | return v; | ||
| 395 | } | ||
| 396 | |||
| 397 | static int omap4_pwrdm_set_lowpwrstchange(struct powerdomain *pwrdm) | ||
| 398 | { | ||
| 399 | omap4_prminst_rmw_inst_reg_bits(OMAP4430_LOWPOWERSTATECHANGE_MASK, | ||
| 400 | (1 << OMAP4430_LOWPOWERSTATECHANGE_SHIFT), | ||
| 401 | pwrdm->prcm_partition, | ||
| 402 | pwrdm->prcm_offs, OMAP4_PM_PWSTCTRL); | ||
| 403 | return 0; | ||
| 404 | } | ||
| 405 | |||
| 406 | static int omap4_pwrdm_clear_all_prev_pwrst(struct powerdomain *pwrdm) | ||
| 407 | { | ||
| 408 | omap4_prminst_rmw_inst_reg_bits(OMAP4430_LASTPOWERSTATEENTERED_MASK, | ||
| 409 | OMAP4430_LASTPOWERSTATEENTERED_MASK, | ||
| 410 | pwrdm->prcm_partition, | ||
| 411 | pwrdm->prcm_offs, OMAP4_PM_PWSTST); | ||
| 412 | return 0; | ||
| 413 | } | ||
| 414 | |||
| 415 | static int omap4_pwrdm_set_logic_retst(struct powerdomain *pwrdm, u8 pwrst) | ||
| 416 | { | ||
| 417 | u32 v; | ||
| 418 | |||
| 419 | v = pwrst << __ffs(OMAP4430_LOGICRETSTATE_MASK); | ||
| 420 | omap4_prminst_rmw_inst_reg_bits(OMAP4430_LOGICRETSTATE_MASK, v, | ||
| 421 | pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 422 | OMAP4_PM_PWSTCTRL); | ||
| 423 | |||
| 424 | return 0; | ||
| 425 | } | ||
| 426 | |||
| 427 | static int omap4_pwrdm_set_mem_onst(struct powerdomain *pwrdm, u8 bank, | ||
| 428 | u8 pwrst) | ||
| 429 | { | ||
| 430 | u32 m; | ||
| 431 | |||
| 432 | m = omap2_pwrdm_get_mem_bank_onstate_mask(bank); | ||
| 433 | |||
| 434 | omap4_prminst_rmw_inst_reg_bits(m, (pwrst << __ffs(m)), | ||
| 435 | pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 436 | OMAP4_PM_PWSTCTRL); | ||
| 437 | |||
| 438 | return 0; | ||
| 439 | } | ||
| 440 | |||
| 441 | static int omap4_pwrdm_set_mem_retst(struct powerdomain *pwrdm, u8 bank, | ||
| 442 | u8 pwrst) | ||
| 443 | { | ||
| 444 | u32 m; | ||
| 445 | |||
| 446 | m = omap2_pwrdm_get_mem_bank_retst_mask(bank); | ||
| 447 | |||
| 448 | omap4_prminst_rmw_inst_reg_bits(m, (pwrst << __ffs(m)), | ||
| 449 | pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 450 | OMAP4_PM_PWSTCTRL); | ||
| 451 | |||
| 452 | return 0; | ||
| 453 | } | ||
| 454 | |||
| 455 | static int omap4_pwrdm_read_logic_pwrst(struct powerdomain *pwrdm) | ||
| 456 | { | ||
| 457 | u32 v; | ||
| 458 | |||
| 459 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 460 | OMAP4_PM_PWSTST); | ||
| 461 | v &= OMAP4430_LOGICSTATEST_MASK; | ||
| 462 | v >>= OMAP4430_LOGICSTATEST_SHIFT; | ||
| 463 | |||
| 464 | return v; | ||
| 465 | } | ||
| 466 | |||
| 467 | static int omap4_pwrdm_read_logic_retst(struct powerdomain *pwrdm) | ||
| 295 | { | 468 | { |
| 296 | if (cpu_is_omap44xx()) { | 469 | u32 v; |
| 297 | omap44xx_prm_enable_io_wakeup(); | 470 | |
| 298 | return omap_prcm_register_chain_handler(&omap4_prcm_irq_setup); | 471 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, |
| 472 | OMAP4_PM_PWSTCTRL); | ||
| 473 | v &= OMAP4430_LOGICRETSTATE_MASK; | ||
| 474 | v >>= OMAP4430_LOGICRETSTATE_SHIFT; | ||
| 475 | |||
| 476 | return v; | ||
| 477 | } | ||
| 478 | |||
| 479 | /** | ||
| 480 | * omap4_pwrdm_read_prev_logic_pwrst - read the previous logic powerstate | ||
| 481 | * @pwrdm: struct powerdomain * to read the state for | ||
| 482 | * | ||
| 483 | * Reads the previous logic powerstate for a powerdomain. This | ||
| 484 | * function must determine the previous logic powerstate by first | ||
| 485 | * checking the previous powerstate for the domain. If that was OFF, | ||
| 486 | * then logic has been lost. If previous state was RETENTION, the | ||
| 487 | * function reads the setting for the next retention logic state to | ||
| 488 | * see the actual value. In every other case, the logic is | ||
| 489 | * retained. Returns either PWRDM_POWER_OFF or PWRDM_POWER_RET | ||
| 490 | * depending whether the logic was retained or not. | ||
| 491 | */ | ||
| 492 | static int omap4_pwrdm_read_prev_logic_pwrst(struct powerdomain *pwrdm) | ||
| 493 | { | ||
| 494 | int state; | ||
| 495 | |||
| 496 | state = omap4_pwrdm_read_prev_pwrst(pwrdm); | ||
| 497 | |||
| 498 | if (state == PWRDM_POWER_OFF) | ||
| 499 | return PWRDM_POWER_OFF; | ||
| 500 | |||
| 501 | if (state != PWRDM_POWER_RET) | ||
| 502 | return PWRDM_POWER_RET; | ||
| 503 | |||
| 504 | return omap4_pwrdm_read_logic_retst(pwrdm); | ||
| 505 | } | ||
| 506 | |||
| 507 | static int omap4_pwrdm_read_mem_pwrst(struct powerdomain *pwrdm, u8 bank) | ||
| 508 | { | ||
| 509 | u32 m, v; | ||
| 510 | |||
| 511 | m = omap2_pwrdm_get_mem_bank_stst_mask(bank); | ||
| 512 | |||
| 513 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 514 | OMAP4_PM_PWSTST); | ||
| 515 | v &= m; | ||
| 516 | v >>= __ffs(m); | ||
| 517 | |||
| 518 | return v; | ||
| 519 | } | ||
| 520 | |||
| 521 | static int omap4_pwrdm_read_mem_retst(struct powerdomain *pwrdm, u8 bank) | ||
| 522 | { | ||
| 523 | u32 m, v; | ||
| 524 | |||
| 525 | m = omap2_pwrdm_get_mem_bank_retst_mask(bank); | ||
| 526 | |||
| 527 | v = omap4_prminst_read_inst_reg(pwrdm->prcm_partition, pwrdm->prcm_offs, | ||
| 528 | OMAP4_PM_PWSTCTRL); | ||
| 529 | v &= m; | ||
| 530 | v >>= __ffs(m); | ||
| 531 | |||
| 532 | return v; | ||
| 533 | } | ||
| 534 | |||
| 535 | /** | ||
| 536 | * omap4_pwrdm_read_prev_mem_pwrst - reads the previous memory powerstate | ||
| 537 | * @pwrdm: struct powerdomain * to read mem powerstate for | ||
| 538 | * @bank: memory bank index | ||
| 539 | * | ||
| 540 | * Reads the previous memory powerstate for a powerdomain. This | ||
| 541 | * function must determine the previous memory powerstate by first | ||
| 542 | * checking the previous powerstate for the domain. If that was OFF, | ||
| 543 | * then logic has been lost. If previous state was RETENTION, the | ||
| 544 | * function reads the setting for the next memory retention state to | ||
| 545 | * see the actual value. In every other case, the logic is | ||
| 546 | * retained. Returns either PWRDM_POWER_OFF or PWRDM_POWER_RET | ||
| 547 | * depending whether logic was retained or not. | ||
| 548 | */ | ||
| 549 | static int omap4_pwrdm_read_prev_mem_pwrst(struct powerdomain *pwrdm, u8 bank) | ||
| 550 | { | ||
| 551 | int state; | ||
| 552 | |||
| 553 | state = omap4_pwrdm_read_prev_pwrst(pwrdm); | ||
| 554 | |||
| 555 | if (state == PWRDM_POWER_OFF) | ||
| 556 | return PWRDM_POWER_OFF; | ||
| 557 | |||
| 558 | if (state != PWRDM_POWER_RET) | ||
| 559 | return PWRDM_POWER_RET; | ||
| 560 | |||
| 561 | return omap4_pwrdm_read_mem_retst(pwrdm, bank); | ||
| 562 | } | ||
| 563 | |||
| 564 | static int omap4_pwrdm_wait_transition(struct powerdomain *pwrdm) | ||
| 565 | { | ||
| 566 | u32 c = 0; | ||
| 567 | |||
| 568 | /* | ||
| 569 | * REVISIT: pwrdm_wait_transition() may be better implemented | ||
| 570 | * via a callback and a periodic timer check -- how long do we expect | ||
| 571 | * powerdomain transitions to take? | ||
| 572 | */ | ||
| 573 | |||
| 574 | /* XXX Is this udelay() value meaningful? */ | ||
| 575 | while ((omap4_prminst_read_inst_reg(pwrdm->prcm_partition, | ||
| 576 | pwrdm->prcm_offs, | ||
| 577 | OMAP4_PM_PWSTST) & | ||
| 578 | OMAP_INTRANSITION_MASK) && | ||
| 579 | (c++ < PWRDM_TRANSITION_BAILOUT)) | ||
| 580 | udelay(1); | ||
| 581 | |||
| 582 | if (c > PWRDM_TRANSITION_BAILOUT) { | ||
| 583 | pr_err("powerdomain: %s: waited too long to complete transition\n", | ||
| 584 | pwrdm->name); | ||
| 585 | return -EAGAIN; | ||
| 299 | } | 586 | } |
| 587 | |||
| 588 | pr_debug("powerdomain: completed transition in %d loops\n", c); | ||
| 589 | |||
| 300 | return 0; | 590 | return 0; |
| 301 | } | 591 | } |
| 302 | subsys_initcall(omap4xxx_prcm_init); | 592 | |
| 593 | struct pwrdm_ops omap4_pwrdm_operations = { | ||
| 594 | .pwrdm_set_next_pwrst = omap4_pwrdm_set_next_pwrst, | ||
| 595 | .pwrdm_read_next_pwrst = omap4_pwrdm_read_next_pwrst, | ||
| 596 | .pwrdm_read_pwrst = omap4_pwrdm_read_pwrst, | ||
| 597 | .pwrdm_read_prev_pwrst = omap4_pwrdm_read_prev_pwrst, | ||
| 598 | .pwrdm_set_lowpwrstchange = omap4_pwrdm_set_lowpwrstchange, | ||
| 599 | .pwrdm_clear_all_prev_pwrst = omap4_pwrdm_clear_all_prev_pwrst, | ||
| 600 | .pwrdm_set_logic_retst = omap4_pwrdm_set_logic_retst, | ||
| 601 | .pwrdm_read_logic_pwrst = omap4_pwrdm_read_logic_pwrst, | ||
| 602 | .pwrdm_read_prev_logic_pwrst = omap4_pwrdm_read_prev_logic_pwrst, | ||
| 603 | .pwrdm_read_logic_retst = omap4_pwrdm_read_logic_retst, | ||
| 604 | .pwrdm_read_mem_pwrst = omap4_pwrdm_read_mem_pwrst, | ||
| 605 | .pwrdm_read_mem_retst = omap4_pwrdm_read_mem_retst, | ||
| 606 | .pwrdm_read_prev_mem_pwrst = omap4_pwrdm_read_prev_mem_pwrst, | ||
| 607 | .pwrdm_set_mem_onst = omap4_pwrdm_set_mem_onst, | ||
| 608 | .pwrdm_set_mem_retst = omap4_pwrdm_set_mem_retst, | ||
| 609 | .pwrdm_wait_transition = omap4_pwrdm_wait_transition, | ||
| 610 | }; | ||
| 611 | |||
| 612 | /* | ||
| 613 | * XXX document | ||
| 614 | */ | ||
| 615 | static struct prm_ll_data omap44xx_prm_ll_data = { | ||
| 616 | .read_reset_sources = &omap44xx_prm_read_reset_sources, | ||
| 617 | }; | ||
| 618 | |||
| 619 | static int __init omap44xx_prm_init(void) | ||
| 620 | { | ||
| 621 | int ret; | ||
| 622 | |||
| 623 | if (!cpu_is_omap44xx()) | ||
| 624 | return 0; | ||
| 625 | |||
| 626 | ret = prm_register(&omap44xx_prm_ll_data); | ||
| 627 | if (ret) | ||
| 628 | return ret; | ||
| 629 | |||
| 630 | omap44xx_prm_enable_io_wakeup(); | ||
| 631 | |||
| 632 | return omap_prcm_register_chain_handler(&omap4_prcm_irq_setup); | ||
| 633 | } | ||
| 634 | subsys_initcall(omap44xx_prm_init); | ||
| 635 | |||
| 636 | static void __exit omap44xx_prm_exit(void) | ||
| 637 | { | ||
| 638 | if (!cpu_is_omap44xx()) | ||
| 639 | return; | ||
| 640 | |||
| 641 | /* Should never happen */ | ||
| 642 | WARN(prm_unregister(&omap44xx_prm_ll_data), | ||
| 643 | "%s: prm_ll_data function pointer mismatch\n", __func__); | ||
| 644 | } | ||
| 645 | __exitcall(omap44xx_prm_exit); | ||
diff --git a/arch/arm/mach-omap2/prm44xx.h b/arch/arm/mach-omap2/prm44xx.h index ee72ae6bd8c9..c8e1accdc90e 100644 --- a/arch/arm/mach-omap2/prm44xx.h +++ b/arch/arm/mach-omap2/prm44xx.h | |||
| @@ -771,6 +771,8 @@ extern void omap44xx_prm_ocp_barrier(void); | |||
| 771 | extern void omap44xx_prm_save_and_clear_irqen(u32 *saved_mask); | 771 | extern void omap44xx_prm_save_and_clear_irqen(u32 *saved_mask); |
| 772 | extern void omap44xx_prm_restore_irqen(u32 *saved_mask); | 772 | extern void omap44xx_prm_restore_irqen(u32 *saved_mask); |
| 773 | 773 | ||
| 774 | extern u32 omap44xx_prm_get_reset_sources(void); | ||
| 775 | |||
| 774 | # endif | 776 | # endif |
| 775 | 777 | ||
| 776 | #endif | 778 | #endif |
diff --git a/arch/arm/mach-omap2/prm_common.c b/arch/arm/mach-omap2/prm_common.c index 6b4d332be2f6..945b4ad6ab84 100644 --- a/arch/arm/mach-omap2/prm_common.c +++ b/arch/arm/mach-omap2/prm_common.c | |||
| @@ -24,10 +24,11 @@ | |||
| 24 | #include <linux/interrupt.h> | 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/slab.h> | 25 | #include <linux/slab.h> |
| 26 | 26 | ||
| 27 | #include <plat/common.h> | ||
| 28 | #include <plat/prcm.h> | 27 | #include <plat/prcm.h> |
| 29 | 28 | ||
| 30 | #include "prm2xxx_3xxx.h" | 29 | #include "prm2xxx_3xxx.h" |
| 30 | #include "prm2xxx.h" | ||
| 31 | #include "prm3xxx.h" | ||
| 31 | #include "prm44xx.h" | 32 | #include "prm44xx.h" |
| 32 | 33 | ||
| 33 | /* | 34 | /* |
| @@ -53,6 +54,13 @@ static struct irq_chip_generic **prcm_irq_chips; | |||
| 53 | */ | 54 | */ |
| 54 | static struct omap_prcm_irq_setup *prcm_irq_setup; | 55 | static struct omap_prcm_irq_setup *prcm_irq_setup; |
| 55 | 56 | ||
| 57 | /* | ||
| 58 | * prm_ll_data: function pointers to SoC-specific implementations of | ||
| 59 | * common PRM functions | ||
| 60 | */ | ||
| 61 | static struct prm_ll_data null_prm_ll_data; | ||
| 62 | static struct prm_ll_data *prm_ll_data = &null_prm_ll_data; | ||
| 63 | |||
| 56 | /* Private functions */ | 64 | /* Private functions */ |
| 57 | 65 | ||
| 58 | /* | 66 | /* |
| @@ -319,64 +327,71 @@ err: | |||
| 319 | return -ENOMEM; | 327 | return -ENOMEM; |
| 320 | } | 328 | } |
| 321 | 329 | ||
| 322 | /* | 330 | /** |
| 323 | * Stubbed functions so that common files continue to build when | 331 | * prm_read_reset_sources - return the sources of the SoC's last reset |
| 324 | * custom builds are used | 332 | * |
| 325 | * XXX These are temporary and should be removed at the earliest possible | 333 | * Return a u32 bitmask representing the reset sources that caused the |
| 326 | * opportunity | 334 | * SoC to reset. The low-level per-SoC functions called by this |
| 335 | * function remap the SoC-specific reset source bits into an | ||
| 336 | * OMAP-common set of reset source bits, defined in | ||
| 337 | * arch/arm/mach-omap2/prm.h. Returns the standardized reset source | ||
| 338 | * u32 bitmask from the hardware upon success, or returns (1 << | ||
| 339 | * OMAP_UNKNOWN_RST_SRC_ID_SHIFT) if no low-level read_reset_sources() | ||
| 340 | * function was registered. | ||
| 327 | */ | 341 | */ |
| 328 | u32 __weak omap2_prm_read_mod_reg(s16 module, u16 idx) | 342 | u32 prm_read_reset_sources(void) |
| 329 | { | 343 | { |
| 330 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | 344 | u32 ret = 1 << OMAP_UNKNOWN_RST_SRC_ID_SHIFT; |
| 331 | return 0; | ||
| 332 | } | ||
| 333 | 345 | ||
| 334 | void __weak omap2_prm_write_mod_reg(u32 val, s16 module, u16 idx) | 346 | if (prm_ll_data->read_reset_sources) |
| 335 | { | 347 | ret = prm_ll_data->read_reset_sources(); |
| 336 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | 348 | else |
| 337 | } | 349 | WARN_ONCE(1, "prm: %s: no mapping function defined for reset sources\n", __func__); |
| 338 | 350 | ||
| 339 | u32 __weak omap2_prm_rmw_mod_reg_bits(u32 mask, u32 bits, | 351 | return ret; |
| 340 | s16 module, s16 idx) | ||
| 341 | { | ||
| 342 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
| 343 | return 0; | ||
| 344 | } | 352 | } |
| 345 | 353 | ||
| 346 | u32 __weak omap2_prm_set_mod_reg_bits(u32 bits, s16 module, s16 idx) | 354 | /** |
| 355 | * prm_register - register per-SoC low-level data with the PRM | ||
| 356 | * @pld: low-level per-SoC OMAP PRM data & function pointers to register | ||
| 357 | * | ||
| 358 | * Register per-SoC low-level OMAP PRM data and function pointers with | ||
| 359 | * the OMAP PRM common interface. The caller must keep the data | ||
| 360 | * pointed to by @pld valid until it calls prm_unregister() and | ||
| 361 | * it returns successfully. Returns 0 upon success, -EINVAL if @pld | ||
| 362 | * is NULL, or -EEXIST if prm_register() has already been called | ||
| 363 | * without an intervening prm_unregister(). | ||
| 364 | */ | ||
| 365 | int prm_register(struct prm_ll_data *pld) | ||
| 347 | { | 366 | { |
| 348 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | 367 | if (!pld) |
| 349 | return 0; | 368 | return -EINVAL; |
| 350 | } | ||
| 351 | 369 | ||
| 352 | u32 __weak omap2_prm_clear_mod_reg_bits(u32 bits, s16 module, s16 idx) | 370 | if (prm_ll_data != &null_prm_ll_data) |
| 353 | { | 371 | return -EEXIST; |
| 354 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
| 355 | return 0; | ||
| 356 | } | ||
| 357 | 372 | ||
| 358 | u32 __weak omap2_prm_read_mod_bits_shift(s16 domain, s16 idx, u32 mask) | 373 | prm_ll_data = pld; |
| 359 | { | ||
| 360 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
| 361 | return 0; | ||
| 362 | } | ||
| 363 | 374 | ||
| 364 | int __weak omap2_prm_is_hardreset_asserted(s16 prm_mod, u8 shift) | ||
| 365 | { | ||
| 366 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
| 367 | return 0; | 375 | return 0; |
| 368 | } | 376 | } |
| 369 | 377 | ||
| 370 | int __weak omap2_prm_assert_hardreset(s16 prm_mod, u8 shift) | 378 | /** |
| 379 | * prm_unregister - unregister per-SoC low-level data & function pointers | ||
| 380 | * @pld: low-level per-SoC OMAP PRM data & function pointers to unregister | ||
| 381 | * | ||
| 382 | * Unregister per-SoC low-level OMAP PRM data and function pointers | ||
| 383 | * that were previously registered with prm_register(). The | ||
| 384 | * caller may not destroy any of the data pointed to by @pld until | ||
| 385 | * this function returns successfully. Returns 0 upon success, or | ||
| 386 | * -EINVAL if @pld is NULL or if @pld does not match the struct | ||
| 387 | * prm_ll_data * previously registered by prm_register(). | ||
| 388 | */ | ||
| 389 | int prm_unregister(struct prm_ll_data *pld) | ||
| 371 | { | 390 | { |
| 372 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | 391 | if (!pld || prm_ll_data != pld) |
| 373 | return 0; | 392 | return -EINVAL; |
| 374 | } | 393 | |
| 394 | prm_ll_data = &null_prm_ll_data; | ||
| 375 | 395 | ||
| 376 | int __weak omap2_prm_deassert_hardreset(s16 prm_mod, u8 rst_shift, | ||
| 377 | u8 st_shift) | ||
| 378 | { | ||
| 379 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
| 380 | return 0; | 396 | return 0; |
| 381 | } | 397 | } |
| 382 | |||
diff --git a/arch/arm/mach-omap2/sdram-hynix-h8mbx00u0mer-0em.h b/arch/arm/mach-omap2/sdram-hynix-h8mbx00u0mer-0em.h index 8bfaf342a028..1ee58c281a31 100644 --- a/arch/arm/mach-omap2/sdram-hynix-h8mbx00u0mer-0em.h +++ b/arch/arm/mach-omap2/sdram-hynix-h8mbx00u0mer-0em.h | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | #ifndef __ARCH_ARM_MACH_OMAP2_SDRAM_HYNIX_H8MBX00U0MER0EM | 11 | #ifndef __ARCH_ARM_MACH_OMAP2_SDRAM_HYNIX_H8MBX00U0MER0EM |
| 12 | #define __ARCH_ARM_MACH_OMAP2_SDRAM_HYNIX_H8MBX00U0MER0EM | 12 | #define __ARCH_ARM_MACH_OMAP2_SDRAM_HYNIX_H8MBX00U0MER0EM |
| 13 | 13 | ||
| 14 | #include <plat/sdrc.h> | 14 | #include "sdrc.h" |
| 15 | 15 | ||
| 16 | /* Hynix H8MBX00U0MER-0EM */ | 16 | /* Hynix H8MBX00U0MER-0EM */ |
| 17 | static struct omap_sdrc_params h8mbx00u0mer0em_sdrc_params[] = { | 17 | static struct omap_sdrc_params h8mbx00u0mer0em_sdrc_params[] = { |
diff --git a/arch/arm/mach-omap2/sdram-micron-mt46h32m32lf-6.h b/arch/arm/mach-omap2/sdram-micron-mt46h32m32lf-6.h index a391b4939f74..85cccc004c06 100644 --- a/arch/arm/mach-omap2/sdram-micron-mt46h32m32lf-6.h +++ b/arch/arm/mach-omap2/sdram-micron-mt46h32m32lf-6.h | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | #ifndef ARCH_ARM_MACH_OMAP2_SDRAM_MICRON_MT46H32M32LF | 14 | #ifndef ARCH_ARM_MACH_OMAP2_SDRAM_MICRON_MT46H32M32LF |
| 15 | #define ARCH_ARM_MACH_OMAP2_SDRAM_MICRON_MT46H32M32LF | 15 | #define ARCH_ARM_MACH_OMAP2_SDRAM_MICRON_MT46H32M32LF |
| 16 | 16 | ||
| 17 | #include <plat/sdrc.h> | 17 | #include "sdrc.h" |
| 18 | 18 | ||
| 19 | /* Micron MT46H32M32LF-6 */ | 19 | /* Micron MT46H32M32LF-6 */ |
| 20 | /* XXX Using ARE = 0x1 (no autorefresh burst) -- can this be changed? */ | 20 | /* XXX Using ARE = 0x1 (no autorefresh burst) -- can this be changed? */ |
diff --git a/arch/arm/mach-omap2/sdram-nokia.c b/arch/arm/mach-omap2/sdram-nokia.c index 845c4fd2b125..0fa7ffa9b5ed 100644 --- a/arch/arm/mach-omap2/sdram-nokia.c +++ b/arch/arm/mach-omap2/sdram-nokia.c | |||
| @@ -18,10 +18,8 @@ | |||
| 18 | #include <linux/io.h> | 18 | #include <linux/io.h> |
| 19 | 19 | ||
| 20 | #include "common.h" | 20 | #include "common.h" |
| 21 | #include <plat/clock.h> | ||
| 22 | #include <plat/sdrc.h> | ||
| 23 | |||
| 24 | #include "sdram-nokia.h" | 21 | #include "sdram-nokia.h" |
| 22 | #include "sdrc.h" | ||
| 25 | 23 | ||
| 26 | /* In picoseconds, except for tREF (ns), tXP, tCKE, tWTR (clks) */ | 24 | /* In picoseconds, except for tREF (ns), tXP, tCKE, tWTR (clks) */ |
| 27 | struct sdram_timings { | 25 | struct sdram_timings { |
diff --git a/arch/arm/mach-omap2/sdram-numonyx-m65kxxxxam.h b/arch/arm/mach-omap2/sdram-numonyx-m65kxxxxam.h index cd4352917022..003f7bf4e2e3 100644 --- a/arch/arm/mach-omap2/sdram-numonyx-m65kxxxxam.h +++ b/arch/arm/mach-omap2/sdram-numonyx-m65kxxxxam.h | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | #ifndef __ARCH_ARM_MACH_OMAP2_SDRAM_NUMONYX_M65KXXXXAM | 11 | #ifndef __ARCH_ARM_MACH_OMAP2_SDRAM_NUMONYX_M65KXXXXAM |
| 12 | #define __ARCH_ARM_MACH_OMAP2_SDRAM_NUMONYX_M65KXXXXAM | 12 | #define __ARCH_ARM_MACH_OMAP2_SDRAM_NUMONYX_M65KXXXXAM |
| 13 | 13 | ||
| 14 | #include <plat/sdrc.h> | 14 | #include "sdrc.h" |
| 15 | 15 | ||
| 16 | /* Numonyx M65KXXXXAM */ | 16 | /* Numonyx M65KXXXXAM */ |
| 17 | static struct omap_sdrc_params m65kxxxxam_sdrc_params[] = { | 17 | static struct omap_sdrc_params m65kxxxxam_sdrc_params[] = { |
diff --git a/arch/arm/mach-omap2/sdram-qimonda-hyb18m512160af-6.h b/arch/arm/mach-omap2/sdram-qimonda-hyb18m512160af-6.h index 0e518a72831f..8dc3de5ebb5b 100644 --- a/arch/arm/mach-omap2/sdram-qimonda-hyb18m512160af-6.h +++ b/arch/arm/mach-omap2/sdram-qimonda-hyb18m512160af-6.h | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | #ifndef ARCH_ARM_MACH_OMAP2_SDRAM_QIMONDA_HYB18M512160AF6 | 14 | #ifndef ARCH_ARM_MACH_OMAP2_SDRAM_QIMONDA_HYB18M512160AF6 |
| 15 | #define ARCH_ARM_MACH_OMAP2_SDRAM_QIMONDA_HYB18M512160AF6 | 15 | #define ARCH_ARM_MACH_OMAP2_SDRAM_QIMONDA_HYB18M512160AF6 |
| 16 | 16 | ||
| 17 | #include <plat/sdrc.h> | 17 | #include "sdrc.h" |
| 18 | 18 | ||
| 19 | /* Qimonda HYB18M512160AF-6 */ | 19 | /* Qimonda HYB18M512160AF-6 */ |
| 20 | static struct omap_sdrc_params hyb18m512160af6_sdrc_params[] = { | 20 | static struct omap_sdrc_params hyb18m512160af6_sdrc_params[] = { |
diff --git a/arch/arm/mach-omap2/sdrc.c b/arch/arm/mach-omap2/sdrc.c index e3d345f46409..c64ee1904be8 100644 --- a/arch/arm/mach-omap2/sdrc.c +++ b/arch/arm/mach-omap2/sdrc.c | |||
| @@ -24,10 +24,7 @@ | |||
| 24 | #include <linux/io.h> | 24 | #include <linux/io.h> |
| 25 | 25 | ||
| 26 | #include "common.h" | 26 | #include "common.h" |
| 27 | #include <plat/clock.h> | 27 | #include "clock.h" |
| 28 | #include <plat/sram.h> | ||
| 29 | |||
| 30 | #include <plat/sdrc.h> | ||
| 31 | #include "sdrc.h" | 28 | #include "sdrc.h" |
| 32 | 29 | ||
| 33 | static struct omap_sdrc_params *sdrc_init_params_cs0, *sdrc_init_params_cs1; | 30 | static struct omap_sdrc_params *sdrc_init_params_cs0, *sdrc_init_params_cs1; |
| @@ -160,19 +157,3 @@ void __init omap2_sdrc_init(struct omap_sdrc_params *sdrc_cs0, | |||
| 160 | sdrc_write_reg(l, SDRC_POWER); | 157 | sdrc_write_reg(l, SDRC_POWER); |
| 161 | omap2_sms_save_context(); | 158 | omap2_sms_save_context(); |
| 162 | } | 159 | } |
| 163 | |||
| 164 | void omap2_sms_write_rot_control(u32 val, unsigned ctx) | ||
| 165 | { | ||
| 166 | sms_write_reg(val, SMS_ROT_CONTROL(ctx)); | ||
| 167 | } | ||
| 168 | |||
| 169 | void omap2_sms_write_rot_size(u32 val, unsigned ctx) | ||
| 170 | { | ||
| 171 | sms_write_reg(val, SMS_ROT_SIZE(ctx)); | ||
| 172 | } | ||
| 173 | |||
| 174 | void omap2_sms_write_rot_physical_ba(u32 val, unsigned ctx) | ||
| 175 | { | ||
| 176 | sms_write_reg(val, SMS_ROT_PHYSICAL_BA(ctx)); | ||
| 177 | } | ||
| 178 | |||
diff --git a/arch/arm/mach-omap2/sdrc.h b/arch/arm/mach-omap2/sdrc.h index b3f83799e6cf..69c4b329452e 100644 --- a/arch/arm/mach-omap2/sdrc.h +++ b/arch/arm/mach-omap2/sdrc.h | |||
| @@ -2,12 +2,14 @@ | |||
| 2 | #define __ARCH_ARM_MACH_OMAP2_SDRC_H | 2 | #define __ARCH_ARM_MACH_OMAP2_SDRC_H |
| 3 | 3 | ||
| 4 | /* | 4 | /* |
| 5 | * OMAP2 SDRC register definitions | 5 | * OMAP2/3 SDRC/SMS macros and prototypes |
| 6 | * | 6 | * |
| 7 | * Copyright (C) 2007 Texas Instruments, Inc. | 7 | * Copyright (C) 2007-2008, 2012 Texas Instruments, Inc. |
| 8 | * Copyright (C) 2007 Nokia Corporation | 8 | * Copyright (C) 2007-2008 Nokia Corporation |
| 9 | * | 9 | * |
| 10 | * Written by Paul Walmsley | 10 | * Paul Walmsley |
| 11 | * Tony Lindgren | ||
| 12 | * Richard Woodruff | ||
| 11 | * | 13 | * |
| 12 | * This program is free software; you can redistribute it and/or modify | 14 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License version 2 as | 15 | * it under the terms of the GNU General Public License version 2 as |
| @@ -15,8 +17,6 @@ | |||
| 15 | */ | 17 | */ |
| 16 | #undef DEBUG | 18 | #undef DEBUG |
| 17 | 19 | ||
| 18 | #include <plat/sdrc.h> | ||
| 19 | |||
| 20 | #ifndef __ASSEMBLER__ | 20 | #ifndef __ASSEMBLER__ |
| 21 | 21 | ||
| 22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
| @@ -50,6 +50,58 @@ static inline u32 sms_read_reg(u16 reg) | |||
| 50 | { | 50 | { |
| 51 | return __raw_readl(OMAP_SMS_REGADDR(reg)); | 51 | return __raw_readl(OMAP_SMS_REGADDR(reg)); |
| 52 | } | 52 | } |
| 53 | |||
| 54 | |||
| 55 | /** | ||
| 56 | * struct omap_sdrc_params - SDRC parameters for a given SDRC clock rate | ||
| 57 | * @rate: SDRC clock rate (in Hz) | ||
| 58 | * @actim_ctrla: Value to program to SDRC_ACTIM_CTRLA for this rate | ||
| 59 | * @actim_ctrlb: Value to program to SDRC_ACTIM_CTRLB for this rate | ||
| 60 | * @rfr_ctrl: Value to program to SDRC_RFR_CTRL for this rate | ||
| 61 | * @mr: Value to program to SDRC_MR for this rate | ||
| 62 | * | ||
| 63 | * This structure holds a pre-computed set of register values for the | ||
| 64 | * SDRC for a given SDRC clock rate and SDRAM chip. These are | ||
| 65 | * intended to be pre-computed and specified in an array in the board-*.c | ||
| 66 | * files. The structure is keyed off the 'rate' field. | ||
| 67 | */ | ||
| 68 | struct omap_sdrc_params { | ||
| 69 | unsigned long rate; | ||
| 70 | u32 actim_ctrla; | ||
| 71 | u32 actim_ctrlb; | ||
| 72 | u32 rfr_ctrl; | ||
| 73 | u32 mr; | ||
| 74 | }; | ||
| 75 | |||
| 76 | #ifdef CONFIG_SOC_HAS_OMAP2_SDRC | ||
| 77 | void omap2_sdrc_init(struct omap_sdrc_params *sdrc_cs0, | ||
| 78 | struct omap_sdrc_params *sdrc_cs1); | ||
| 79 | #else | ||
| 80 | static inline void __init omap2_sdrc_init(struct omap_sdrc_params *sdrc_cs0, | ||
| 81 | struct omap_sdrc_params *sdrc_cs1) {}; | ||
| 82 | #endif | ||
| 83 | |||
| 84 | int omap2_sdrc_get_params(unsigned long r, | ||
| 85 | struct omap_sdrc_params **sdrc_cs0, | ||
| 86 | struct omap_sdrc_params **sdrc_cs1); | ||
| 87 | void omap2_sms_save_context(void); | ||
| 88 | void omap2_sms_restore_context(void); | ||
| 89 | |||
| 90 | struct memory_timings { | ||
| 91 | u32 m_type; /* ddr = 1, sdr = 0 */ | ||
| 92 | u32 dll_mode; /* use lock mode = 1, unlock mode = 0 */ | ||
| 93 | u32 slow_dll_ctrl; /* unlock mode, dll value for slow speed */ | ||
| 94 | u32 fast_dll_ctrl; /* unlock mode, dll value for fast speed */ | ||
| 95 | u32 base_cs; /* base chip select to use for calculations */ | ||
| 96 | }; | ||
| 97 | |||
| 98 | extern void omap2xxx_sdrc_init_params(u32 force_lock_to_unlock_mode); | ||
| 99 | struct omap_sdrc_params *rx51_get_sdram_timings(void); | ||
| 100 | |||
| 101 | u32 omap2xxx_sdrc_dll_is_unlocked(void); | ||
| 102 | u32 omap2xxx_sdrc_reprogram(u32 level, u32 force); | ||
| 103 | |||
| 104 | |||
| 53 | #else | 105 | #else |
| 54 | #define OMAP242X_SDRC_REGADDR(reg) \ | 106 | #define OMAP242X_SDRC_REGADDR(reg) \ |
| 55 | OMAP2_L3_IO_ADDRESS(OMAP2420_SDRC_BASE + (reg)) | 107 | OMAP2_L3_IO_ADDRESS(OMAP2420_SDRC_BASE + (reg)) |
| @@ -57,6 +109,7 @@ static inline u32 sms_read_reg(u16 reg) | |||
| 57 | OMAP2_L3_IO_ADDRESS(OMAP243X_SDRC_BASE + (reg)) | 109 | OMAP2_L3_IO_ADDRESS(OMAP243X_SDRC_BASE + (reg)) |
| 58 | #define OMAP34XX_SDRC_REGADDR(reg) \ | 110 | #define OMAP34XX_SDRC_REGADDR(reg) \ |
| 59 | OMAP2_L3_IO_ADDRESS(OMAP343X_SDRC_BASE + (reg)) | 111 | OMAP2_L3_IO_ADDRESS(OMAP343X_SDRC_BASE + (reg)) |
| 112 | |||
| 60 | #endif /* __ASSEMBLER__ */ | 113 | #endif /* __ASSEMBLER__ */ |
| 61 | 114 | ||
| 62 | /* Minimum frequency that the SDRC DLL can lock at */ | 115 | /* Minimum frequency that the SDRC DLL can lock at */ |
| @@ -74,4 +127,85 @@ static inline u32 sms_read_reg(u16 reg) | |||
| 74 | */ | 127 | */ |
| 75 | #define SDRC_MPURATE_LOOPS 96 | 128 | #define SDRC_MPURATE_LOOPS 96 |
| 76 | 129 | ||
| 130 | /* SDRC register offsets - read/write with sdrc_{read,write}_reg() */ | ||
| 131 | |||
| 132 | #define SDRC_SYSCONFIG 0x010 | ||
| 133 | #define SDRC_CS_CFG 0x040 | ||
| 134 | #define SDRC_SHARING 0x044 | ||
| 135 | #define SDRC_ERR_TYPE 0x04C | ||
| 136 | #define SDRC_DLLA_CTRL 0x060 | ||
| 137 | #define SDRC_DLLA_STATUS 0x064 | ||
| 138 | #define SDRC_DLLB_CTRL 0x068 | ||
| 139 | #define SDRC_DLLB_STATUS 0x06C | ||
| 140 | #define SDRC_POWER 0x070 | ||
| 141 | #define SDRC_MCFG_0 0x080 | ||
| 142 | #define SDRC_MR_0 0x084 | ||
| 143 | #define SDRC_EMR2_0 0x08c | ||
| 144 | #define SDRC_ACTIM_CTRL_A_0 0x09c | ||
| 145 | #define SDRC_ACTIM_CTRL_B_0 0x0a0 | ||
| 146 | #define SDRC_RFR_CTRL_0 0x0a4 | ||
| 147 | #define SDRC_MANUAL_0 0x0a8 | ||
| 148 | #define SDRC_MCFG_1 0x0B0 | ||
| 149 | #define SDRC_MR_1 0x0B4 | ||
| 150 | #define SDRC_EMR2_1 0x0BC | ||
| 151 | #define SDRC_ACTIM_CTRL_A_1 0x0C4 | ||
| 152 | #define SDRC_ACTIM_CTRL_B_1 0x0C8 | ||
| 153 | #define SDRC_RFR_CTRL_1 0x0D4 | ||
| 154 | #define SDRC_MANUAL_1 0x0D8 | ||
| 155 | |||
| 156 | #define SDRC_POWER_AUTOCOUNT_SHIFT 8 | ||
| 157 | #define SDRC_POWER_AUTOCOUNT_MASK (0xffff << SDRC_POWER_AUTOCOUNT_SHIFT) | ||
| 158 | #define SDRC_POWER_CLKCTRL_SHIFT 4 | ||
| 159 | #define SDRC_POWER_CLKCTRL_MASK (0x3 << SDRC_POWER_CLKCTRL_SHIFT) | ||
| 160 | #define SDRC_SELF_REFRESH_ON_AUTOCOUNT (0x2 << SDRC_POWER_CLKCTRL_SHIFT) | ||
| 161 | |||
| 162 | /* | ||
| 163 | * These values represent the number of memory clock cycles between | ||
| 164 | * autorefresh initiation. They assume 1 refresh per 64 ms (JEDEC), 8192 | ||
| 165 | * rows per device, and include a subtraction of a 50 cycle window in the | ||
| 166 | * event that the autorefresh command is delayed due to other SDRC activity. | ||
| 167 | * The '| 1' sets the ARE field to send one autorefresh when the autorefresh | ||
| 168 | * counter reaches 0. | ||
| 169 | * | ||
| 170 | * These represent optimal values for common parts, it won't work for all. | ||
| 171 | * As long as you scale down, most parameters are still work, they just | ||
| 172 | * become sub-optimal. The RFR value goes in the opposite direction. If you | ||
| 173 | * don't adjust it down as your clock period increases the refresh interval | ||
| 174 | * will not be met. Setting all parameters for complete worst case may work, | ||
| 175 | * but may cut memory performance by 2x. Due to errata the DLLs need to be | ||
| 176 | * unlocked and their value needs run time calibration. A dynamic call is | ||
| 177 | * need for that as no single right value exists acorss production samples. | ||
| 178 | * | ||
| 179 | * Only the FULL speed values are given. Current code is such that rate | ||
| 180 | * changes must be made at DPLLoutx2. The actual value adjustment for low | ||
| 181 | * frequency operation will be handled by omap_set_performance() | ||
| 182 | * | ||
| 183 | * By having the boot loader boot up in the fastest L4 speed available likely | ||
| 184 | * will result in something which you can switch between. | ||
| 185 | */ | ||
| 186 | #define SDRC_RFR_CTRL_165MHz (0x00044c00 | 1) | ||
| 187 | #define SDRC_RFR_CTRL_133MHz (0x0003de00 | 1) | ||
| 188 | #define SDRC_RFR_CTRL_100MHz (0x0002da01 | 1) | ||
| 189 | #define SDRC_RFR_CTRL_110MHz (0x0002da01 | 1) /* Need to calc */ | ||
| 190 | #define SDRC_RFR_CTRL_BYPASS (0x00005000 | 1) /* Need to calc */ | ||
| 191 | |||
| 192 | |||
| 193 | /* | ||
| 194 | * SMS register access | ||
| 195 | */ | ||
| 196 | |||
| 197 | #define OMAP242X_SMS_REGADDR(reg) \ | ||
| 198 | (void __iomem *)OMAP2_L3_IO_ADDRESS(OMAP2420_SMS_BASE + reg) | ||
| 199 | #define OMAP243X_SMS_REGADDR(reg) \ | ||
| 200 | (void __iomem *)OMAP2_L3_IO_ADDRESS(OMAP243X_SMS_BASE + reg) | ||
| 201 | #define OMAP343X_SMS_REGADDR(reg) \ | ||
| 202 | (void __iomem *)OMAP2_L3_IO_ADDRESS(OMAP343X_SMS_BASE + reg) | ||
| 203 | |||
| 204 | /* SMS register offsets - read/write with sms_{read,write}_reg() */ | ||
| 205 | |||
| 206 | #define SMS_SYSCONFIG 0x010 | ||
| 207 | /* REVISIT: fill in other SMS registers here */ | ||
| 208 | |||
| 209 | |||
| 210 | |||
| 77 | #endif | 211 | #endif |
diff --git a/arch/arm/mach-omap2/sdrc2xxx.c b/arch/arm/mach-omap2/sdrc2xxx.c index 73e55e485329..907291714643 100644 --- a/arch/arm/mach-omap2/sdrc2xxx.c +++ b/arch/arm/mach-omap2/sdrc2xxx.c | |||
| @@ -24,16 +24,13 @@ | |||
| 24 | #include <linux/clk.h> | 24 | #include <linux/clk.h> |
| 25 | #include <linux/io.h> | 25 | #include <linux/io.h> |
| 26 | 26 | ||
| 27 | #include <plat/clock.h> | ||
| 28 | #include <plat/sram.h> | ||
| 29 | #include <plat/sdrc.h> | ||
| 30 | |||
| 31 | #include "soc.h" | 27 | #include "soc.h" |
| 32 | #include "iomap.h" | 28 | #include "iomap.h" |
| 33 | #include "common.h" | 29 | #include "common.h" |
| 34 | #include "prm2xxx_3xxx.h" | 30 | #include "prm2xxx.h" |
| 35 | #include "clock.h" | 31 | #include "clock.h" |
| 36 | #include "sdrc.h" | 32 | #include "sdrc.h" |
| 33 | #include "sram.h" | ||
| 37 | 34 | ||
| 38 | /* Memory timing, DLL mode flags */ | 35 | /* Memory timing, DLL mode flags */ |
| 39 | #define M_DDR 1 | 36 | #define M_DDR 1 |
diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index a507cd6cf4f1..aa30a3c20883 100644 --- a/arch/arm/mach-omap2/serial.c +++ b/arch/arm/mach-omap2/serial.c | |||
| @@ -28,19 +28,20 @@ | |||
| 28 | #include <linux/console.h> | 28 | #include <linux/console.h> |
| 29 | 29 | ||
| 30 | #include <plat/omap-serial.h> | 30 | #include <plat/omap-serial.h> |
| 31 | #include "common.h" | 31 | #include <plat-omap/dma-omap.h> |
| 32 | #include <plat/dma.h> | ||
| 33 | #include <plat/omap_hwmod.h> | ||
| 34 | #include <plat/omap_device.h> | ||
| 35 | #include <plat/omap-pm.h> | ||
| 36 | #include <plat/serial.h> | ||
| 37 | 32 | ||
| 33 | #include "common.h" | ||
| 34 | #include "omap_hwmod.h" | ||
| 35 | #include "omap_device.h" | ||
| 36 | #include "omap-pm.h" | ||
| 37 | #include "soc.h" | ||
| 38 | #include "prm2xxx_3xxx.h" | 38 | #include "prm2xxx_3xxx.h" |
| 39 | #include "pm.h" | 39 | #include "pm.h" |
| 40 | #include "cm2xxx_3xxx.h" | 40 | #include "cm2xxx_3xxx.h" |
| 41 | #include "prm-regbits-34xx.h" | 41 | #include "prm-regbits-34xx.h" |
| 42 | #include "control.h" | 42 | #include "control.h" |
| 43 | #include "mux.h" | 43 | #include "mux.h" |
| 44 | #include "serial.h" | ||
| 44 | 45 | ||
| 45 | /* | 46 | /* |
| 46 | * NOTE: By default the serial auto_suspend timeout is disabled as it causes | 47 | * NOTE: By default the serial auto_suspend timeout is disabled as it causes |
diff --git a/arch/arm/mach-omap2/serial.h b/arch/arm/mach-omap2/serial.h new file mode 100644 index 000000000000..c4014f013df0 --- /dev/null +++ b/arch/arm/mach-omap2/serial.h | |||
| @@ -0,0 +1 @@ | |||
| #include <mach/serial.h> | |||
diff --git a/arch/arm/mach-omap2/sleep34xx.S b/arch/arm/mach-omap2/sleep34xx.S index 506987979c1c..d1dedc8195ed 100644 --- a/arch/arm/mach-omap2/sleep34xx.S +++ b/arch/arm/mach-omap2/sleep34xx.S | |||
| @@ -26,13 +26,12 @@ | |||
| 26 | 26 | ||
| 27 | #include <asm/assembler.h> | 27 | #include <asm/assembler.h> |
| 28 | 28 | ||
| 29 | #include <plat/sram.h> | ||
| 30 | |||
| 31 | #include "omap34xx.h" | 29 | #include "omap34xx.h" |
| 32 | #include "iomap.h" | 30 | #include "iomap.h" |
| 33 | #include "cm2xxx_3xxx.h" | 31 | #include "cm3xxx.h" |
| 34 | #include "prm2xxx_3xxx.h" | 32 | #include "prm3xxx.h" |
| 35 | #include "sdrc.h" | 33 | #include "sdrc.h" |
| 34 | #include "sram.h" | ||
| 36 | #include "control.h" | 35 | #include "control.h" |
| 37 | 36 | ||
| 38 | /* | 37 | /* |
diff --git a/arch/arm/mach-omap2/soc.h b/arch/arm/mach-omap2/soc.h index fc9b96daf851..070096496e20 100644 --- a/arch/arm/mach-omap2/soc.h +++ b/arch/arm/mach-omap2/soc.h | |||
| @@ -1,7 +1,473 @@ | |||
| 1 | #include <plat/cpu.h> | 1 | /* |
| 2 | * OMAP cpu type detection | ||
| 3 | * | ||
| 4 | * Copyright (C) 2004, 2008 Nokia Corporation | ||
| 5 | * | ||
| 6 | * Copyright (C) 2009-11 Texas Instruments. | ||
| 7 | * | ||
| 8 | * Written by Tony Lindgren <tony.lindgren@nokia.com> | ||
| 9 | * | ||
| 10 | * Added OMAP4/5 specific defines - Santosh Shilimkar<santosh.shilimkar@ti.com> | ||
| 11 | * | ||
| 12 | * This program is free software; you can redistribute it and/or modify | ||
| 13 | * it under the terms of the GNU General Public License as published by | ||
| 14 | * the Free Software Foundation; either version 2 of the License, or | ||
| 15 | * (at your option) any later version. | ||
| 16 | * | ||
| 17 | * This program is distributed in the hope that it will be useful, | ||
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 20 | * GNU General Public License for more details. | ||
| 21 | * | ||
| 22 | * You should have received a copy of the GNU General Public License | ||
| 23 | * along with this program; if not, write to the Free Software | ||
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 25 | * | ||
| 26 | */ | ||
| 27 | |||
| 2 | #include "omap24xx.h" | 28 | #include "omap24xx.h" |
| 3 | #include "omap34xx.h" | 29 | #include "omap34xx.h" |
| 4 | #include "omap44xx.h" | 30 | #include "omap44xx.h" |
| 5 | #include "ti81xx.h" | 31 | #include "ti81xx.h" |
| 6 | #include "am33xx.h" | 32 | #include "am33xx.h" |
| 7 | #include "omap54xx.h" | 33 | #include "omap54xx.h" |
| 34 | |||
| 35 | #ifndef __ASSEMBLY__ | ||
| 36 | |||
| 37 | #include <linux/bitops.h> | ||
| 38 | |||
| 39 | /* | ||
| 40 | * Test if multicore OMAP support is needed | ||
| 41 | */ | ||
| 42 | #undef MULTI_OMAP2 | ||
| 43 | #undef OMAP_NAME | ||
| 44 | |||
| 45 | #ifdef CONFIG_SOC_OMAP2420 | ||
| 46 | # ifdef OMAP_NAME | ||
| 47 | # undef MULTI_OMAP2 | ||
| 48 | # define MULTI_OMAP2 | ||
| 49 | # else | ||
| 50 | # define OMAP_NAME omap2420 | ||
| 51 | # endif | ||
| 52 | #endif | ||
| 53 | #ifdef CONFIG_SOC_OMAP2430 | ||
| 54 | # ifdef OMAP_NAME | ||
| 55 | # undef MULTI_OMAP2 | ||
| 56 | # define MULTI_OMAP2 | ||
| 57 | # else | ||
| 58 | # define OMAP_NAME omap2430 | ||
| 59 | # endif | ||
| 60 | #endif | ||
| 61 | #ifdef CONFIG_ARCH_OMAP3 | ||
| 62 | # ifdef OMAP_NAME | ||
| 63 | # undef MULTI_OMAP2 | ||
| 64 | # define MULTI_OMAP2 | ||
| 65 | # else | ||
| 66 | # define OMAP_NAME omap3 | ||
| 67 | # endif | ||
| 68 | #endif | ||
| 69 | #ifdef CONFIG_ARCH_OMAP4 | ||
| 70 | # ifdef OMAP_NAME | ||
| 71 | # undef MULTI_OMAP2 | ||
| 72 | # define MULTI_OMAP2 | ||
| 73 | # else | ||
| 74 | # define OMAP_NAME omap4 | ||
| 75 | # endif | ||
| 76 | #endif | ||
| 77 | |||
| 78 | #ifdef CONFIG_SOC_OMAP5 | ||
| 79 | # ifdef OMAP_NAME | ||
| 80 | # undef MULTI_OMAP2 | ||
| 81 | # define MULTI_OMAP2 | ||
| 82 | # else | ||
| 83 | # define OMAP_NAME omap5 | ||
| 84 | # endif | ||
| 85 | #endif | ||
| 86 | |||
| 87 | #ifdef CONFIG_SOC_AM33XX | ||
| 88 | # ifdef OMAP_NAME | ||
| 89 | # undef MULTI_OMAP2 | ||
| 90 | # define MULTI_OMAP2 | ||
| 91 | # else | ||
| 92 | # define OMAP_NAME am33xx | ||
| 93 | # endif | ||
| 94 | #endif | ||
| 95 | |||
| 96 | /* | ||
| 97 | * Omap device type i.e. EMU/HS/TST/GP/BAD | ||
| 98 | */ | ||
| 99 | #define OMAP2_DEVICE_TYPE_TEST 0 | ||
| 100 | #define OMAP2_DEVICE_TYPE_EMU 1 | ||
| 101 | #define OMAP2_DEVICE_TYPE_SEC 2 | ||
| 102 | #define OMAP2_DEVICE_TYPE_GP 3 | ||
| 103 | #define OMAP2_DEVICE_TYPE_BAD 4 | ||
| 104 | |||
| 105 | int omap_type(void); | ||
| 106 | |||
| 107 | /* | ||
| 108 | * omap_rev bits: | ||
| 109 | * CPU id bits (0730, 1510, 1710, 2422...) [31:16] | ||
| 110 | * CPU revision (See _REV_ defined in cpu.h) [15:08] | ||
| 111 | * CPU class bits (15xx, 16xx, 24xx, 34xx...) [07:00] | ||
| 112 | */ | ||
| 113 | unsigned int omap_rev(void); | ||
| 114 | |||
| 115 | /* | ||
| 116 | * Get the CPU revision for OMAP devices | ||
| 117 | */ | ||
| 118 | #define GET_OMAP_REVISION() ((omap_rev() >> 8) & 0xff) | ||
| 119 | |||
| 120 | /* | ||
| 121 | * Macros to group OMAP into cpu classes. | ||
| 122 | * These can be used in most places. | ||
| 123 | * cpu_is_omap24xx(): True for OMAP2420, OMAP2422, OMAP2423, OMAP2430 | ||
| 124 | * cpu_is_omap242x(): True for OMAP2420, OMAP2422, OMAP2423 | ||
| 125 | * cpu_is_omap243x(): True for OMAP2430 | ||
| 126 | * cpu_is_omap343x(): True for OMAP3430 | ||
| 127 | * cpu_is_omap443x(): True for OMAP4430 | ||
| 128 | * cpu_is_omap446x(): True for OMAP4460 | ||
| 129 | * cpu_is_omap447x(): True for OMAP4470 | ||
| 130 | * soc_is_omap543x(): True for OMAP5430, OMAP5432 | ||
| 131 | */ | ||
| 132 | #define GET_OMAP_CLASS (omap_rev() & 0xff) | ||
| 133 | |||
| 134 | #define IS_OMAP_CLASS(class, id) \ | ||
| 135 | static inline int is_omap ##class (void) \ | ||
| 136 | { \ | ||
| 137 | return (GET_OMAP_CLASS == (id)) ? 1 : 0; \ | ||
| 138 | } | ||
| 139 | |||
| 140 | #define GET_AM_CLASS ((omap_rev() >> 24) & 0xff) | ||
| 141 | |||
| 142 | #define IS_AM_CLASS(class, id) \ | ||
| 143 | static inline int is_am ##class (void) \ | ||
| 144 | { \ | ||
| 145 | return (GET_AM_CLASS == (id)) ? 1 : 0; \ | ||
| 146 | } | ||
| 147 | |||
| 148 | #define GET_TI_CLASS ((omap_rev() >> 24) & 0xff) | ||
| 149 | |||
| 150 | #define IS_TI_CLASS(class, id) \ | ||
| 151 | static inline int is_ti ##class (void) \ | ||
| 152 | { \ | ||
| 153 | return (GET_TI_CLASS == (id)) ? 1 : 0; \ | ||
| 154 | } | ||
| 155 | |||
| 156 | #define GET_OMAP_SUBCLASS ((omap_rev() >> 20) & 0x0fff) | ||
| 157 | |||
| 158 | #define IS_OMAP_SUBCLASS(subclass, id) \ | ||
| 159 | static inline int is_omap ##subclass (void) \ | ||
| 160 | { \ | ||
| 161 | return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \ | ||
| 162 | } | ||
| 163 | |||
| 164 | #define IS_TI_SUBCLASS(subclass, id) \ | ||
| 165 | static inline int is_ti ##subclass (void) \ | ||
| 166 | { \ | ||
| 167 | return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \ | ||
| 168 | } | ||
| 169 | |||
| 170 | #define IS_AM_SUBCLASS(subclass, id) \ | ||
| 171 | static inline int is_am ##subclass (void) \ | ||
| 172 | { \ | ||
| 173 | return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \ | ||
| 174 | } | ||
| 175 | |||
| 176 | IS_OMAP_CLASS(24xx, 0x24) | ||
| 177 | IS_OMAP_CLASS(34xx, 0x34) | ||
| 178 | IS_OMAP_CLASS(44xx, 0x44) | ||
| 179 | IS_AM_CLASS(35xx, 0x35) | ||
| 180 | IS_OMAP_CLASS(54xx, 0x54) | ||
| 181 | IS_AM_CLASS(33xx, 0x33) | ||
| 182 | |||
| 183 | IS_TI_CLASS(81xx, 0x81) | ||
| 184 | |||
| 185 | IS_OMAP_SUBCLASS(242x, 0x242) | ||
| 186 | IS_OMAP_SUBCLASS(243x, 0x243) | ||
| 187 | IS_OMAP_SUBCLASS(343x, 0x343) | ||
| 188 | IS_OMAP_SUBCLASS(363x, 0x363) | ||
| 189 | IS_OMAP_SUBCLASS(443x, 0x443) | ||
| 190 | IS_OMAP_SUBCLASS(446x, 0x446) | ||
| 191 | IS_OMAP_SUBCLASS(447x, 0x447) | ||
| 192 | IS_OMAP_SUBCLASS(543x, 0x543) | ||
| 193 | |||
| 194 | IS_TI_SUBCLASS(816x, 0x816) | ||
| 195 | IS_TI_SUBCLASS(814x, 0x814) | ||
| 196 | IS_AM_SUBCLASS(335x, 0x335) | ||
| 197 | |||
| 198 | #define cpu_is_omap24xx() 0 | ||
| 199 | #define cpu_is_omap242x() 0 | ||
| 200 | #define cpu_is_omap243x() 0 | ||
| 201 | #define cpu_is_omap34xx() 0 | ||
| 202 | #define cpu_is_omap343x() 0 | ||
| 203 | #define cpu_is_ti81xx() 0 | ||
| 204 | #define cpu_is_ti816x() 0 | ||
| 205 | #define cpu_is_ti814x() 0 | ||
| 206 | #define soc_is_am35xx() 0 | ||
| 207 | #define soc_is_am33xx() 0 | ||
| 208 | #define soc_is_am335x() 0 | ||
| 209 | #define cpu_is_omap44xx() 0 | ||
| 210 | #define cpu_is_omap443x() 0 | ||
| 211 | #define cpu_is_omap446x() 0 | ||
| 212 | #define cpu_is_omap447x() 0 | ||
| 213 | #define soc_is_omap54xx() 0 | ||
| 214 | #define soc_is_omap543x() 0 | ||
| 215 | |||
| 216 | #if defined(MULTI_OMAP2) | ||
| 217 | # if defined(CONFIG_ARCH_OMAP2) | ||
| 218 | # undef cpu_is_omap24xx | ||
| 219 | # define cpu_is_omap24xx() is_omap24xx() | ||
| 220 | # endif | ||
| 221 | # if defined (CONFIG_SOC_OMAP2420) | ||
| 222 | # undef cpu_is_omap242x | ||
| 223 | # define cpu_is_omap242x() is_omap242x() | ||
| 224 | # endif | ||
| 225 | # if defined (CONFIG_SOC_OMAP2430) | ||
| 226 | # undef cpu_is_omap243x | ||
| 227 | # define cpu_is_omap243x() is_omap243x() | ||
| 228 | # endif | ||
| 229 | # if defined(CONFIG_ARCH_OMAP3) | ||
| 230 | # undef cpu_is_omap34xx | ||
| 231 | # undef cpu_is_omap343x | ||
| 232 | # define cpu_is_omap34xx() is_omap34xx() | ||
| 233 | # define cpu_is_omap343x() is_omap343x() | ||
| 234 | # endif | ||
| 235 | #else | ||
| 236 | # if defined(CONFIG_ARCH_OMAP2) | ||
| 237 | # undef cpu_is_omap24xx | ||
| 238 | # define cpu_is_omap24xx() 1 | ||
| 239 | # endif | ||
| 240 | # if defined(CONFIG_SOC_OMAP2420) | ||
| 241 | # undef cpu_is_omap242x | ||
| 242 | # define cpu_is_omap242x() 1 | ||
| 243 | # endif | ||
| 244 | # if defined(CONFIG_SOC_OMAP2430) | ||
| 245 | # undef cpu_is_omap243x | ||
| 246 | # define cpu_is_omap243x() 1 | ||
| 247 | # endif | ||
| 248 | # if defined(CONFIG_ARCH_OMAP3) | ||
| 249 | # undef cpu_is_omap34xx | ||
| 250 | # define cpu_is_omap34xx() 1 | ||
| 251 | # endif | ||
| 252 | # if defined(CONFIG_SOC_OMAP3430) | ||
| 253 | # undef cpu_is_omap343x | ||
| 254 | # define cpu_is_omap343x() 1 | ||
| 255 | # endif | ||
| 256 | #endif | ||
| 257 | |||
| 258 | /* | ||
| 259 | * Macros to detect individual cpu types. | ||
| 260 | * These are only rarely needed. | ||
| 261 | * cpu_is_omap2420(): True for OMAP2420 | ||
| 262 | * cpu_is_omap2422(): True for OMAP2422 | ||
| 263 | * cpu_is_omap2423(): True for OMAP2423 | ||
| 264 | * cpu_is_omap2430(): True for OMAP2430 | ||
| 265 | * cpu_is_omap3430(): True for OMAP3430 | ||
| 266 | */ | ||
| 267 | #define GET_OMAP_TYPE ((omap_rev() >> 16) & 0xffff) | ||
| 268 | |||
| 269 | #define IS_OMAP_TYPE(type, id) \ | ||
| 270 | static inline int is_omap ##type (void) \ | ||
| 271 | { \ | ||
| 272 | return (GET_OMAP_TYPE == (id)) ? 1 : 0; \ | ||
| 273 | } | ||
| 274 | |||
| 275 | IS_OMAP_TYPE(2420, 0x2420) | ||
| 276 | IS_OMAP_TYPE(2422, 0x2422) | ||
| 277 | IS_OMAP_TYPE(2423, 0x2423) | ||
| 278 | IS_OMAP_TYPE(2430, 0x2430) | ||
| 279 | IS_OMAP_TYPE(3430, 0x3430) | ||
| 280 | |||
| 281 | #define cpu_is_omap2420() 0 | ||
| 282 | #define cpu_is_omap2422() 0 | ||
| 283 | #define cpu_is_omap2423() 0 | ||
| 284 | #define cpu_is_omap2430() 0 | ||
| 285 | #define cpu_is_omap3430() 0 | ||
| 286 | #define cpu_is_omap3630() 0 | ||
| 287 | #define soc_is_omap5430() 0 | ||
| 288 | |||
| 289 | /* These are needed for the common code */ | ||
| 290 | #ifdef CONFIG_ARCH_OMAP2PLUS | ||
| 291 | #define cpu_is_omap7xx() 0 | ||
| 292 | #define cpu_is_omap15xx() 0 | ||
| 293 | #define cpu_is_omap16xx() 0 | ||
| 294 | #define cpu_is_omap1510() 0 | ||
| 295 | #define cpu_is_omap1610() 0 | ||
| 296 | #define cpu_is_omap1611() 0 | ||
| 297 | #define cpu_is_omap1621() 0 | ||
| 298 | #define cpu_is_omap1710() 0 | ||
| 299 | #define cpu_class_is_omap1() 0 | ||
| 300 | #define cpu_class_is_omap2() 1 | ||
| 301 | #endif | ||
| 302 | |||
| 303 | #if defined(CONFIG_ARCH_OMAP2) | ||
| 304 | # undef cpu_is_omap2420 | ||
| 305 | # undef cpu_is_omap2422 | ||
| 306 | # undef cpu_is_omap2423 | ||
| 307 | # undef cpu_is_omap2430 | ||
| 308 | # define cpu_is_omap2420() is_omap2420() | ||
| 309 | # define cpu_is_omap2422() is_omap2422() | ||
| 310 | # define cpu_is_omap2423() is_omap2423() | ||
| 311 | # define cpu_is_omap2430() is_omap2430() | ||
| 312 | #endif | ||
| 313 | |||
| 314 | #if defined(CONFIG_ARCH_OMAP3) | ||
| 315 | # undef cpu_is_omap3430 | ||
| 316 | # undef cpu_is_ti81xx | ||
| 317 | # undef cpu_is_ti816x | ||
| 318 | # undef cpu_is_ti814x | ||
| 319 | # undef soc_is_am35xx | ||
| 320 | # define cpu_is_omap3430() is_omap3430() | ||
| 321 | # undef cpu_is_omap3630 | ||
| 322 | # define cpu_is_omap3630() is_omap363x() | ||
| 323 | # define cpu_is_ti81xx() is_ti81xx() | ||
| 324 | # define cpu_is_ti816x() is_ti816x() | ||
| 325 | # define cpu_is_ti814x() is_ti814x() | ||
| 326 | # define soc_is_am35xx() is_am35xx() | ||
| 327 | #endif | ||
| 328 | |||
| 329 | # if defined(CONFIG_SOC_AM33XX) | ||
| 330 | # undef soc_is_am33xx | ||
| 331 | # undef soc_is_am335x | ||
| 332 | # define soc_is_am33xx() is_am33xx() | ||
| 333 | # define soc_is_am335x() is_am335x() | ||
| 334 | #endif | ||
| 335 | |||
| 336 | # if defined(CONFIG_ARCH_OMAP4) | ||
| 337 | # undef cpu_is_omap44xx | ||
| 338 | # undef cpu_is_omap443x | ||
| 339 | # undef cpu_is_omap446x | ||
| 340 | # undef cpu_is_omap447x | ||
| 341 | # define cpu_is_omap44xx() is_omap44xx() | ||
| 342 | # define cpu_is_omap443x() is_omap443x() | ||
| 343 | # define cpu_is_omap446x() is_omap446x() | ||
| 344 | # define cpu_is_omap447x() is_omap447x() | ||
| 345 | # endif | ||
| 346 | |||
| 347 | # if defined(CONFIG_SOC_OMAP5) | ||
| 348 | # undef soc_is_omap54xx | ||
| 349 | # undef soc_is_omap543x | ||
| 350 | # define soc_is_omap54xx() is_omap54xx() | ||
| 351 | # define soc_is_omap543x() is_omap543x() | ||
| 352 | #endif | ||
| 353 | |||
| 354 | /* Various silicon revisions for omap2 */ | ||
| 355 | #define OMAP242X_CLASS 0x24200024 | ||
| 356 | #define OMAP2420_REV_ES1_0 OMAP242X_CLASS | ||
| 357 | #define OMAP2420_REV_ES2_0 (OMAP242X_CLASS | (0x1 << 8)) | ||
| 358 | |||
| 359 | #define OMAP243X_CLASS 0x24300024 | ||
| 360 | #define OMAP2430_REV_ES1_0 OMAP243X_CLASS | ||
| 361 | |||
| 362 | #define OMAP343X_CLASS 0x34300034 | ||
| 363 | #define OMAP3430_REV_ES1_0 OMAP343X_CLASS | ||
| 364 | #define OMAP3430_REV_ES2_0 (OMAP343X_CLASS | (0x1 << 8)) | ||
| 365 | #define OMAP3430_REV_ES2_1 (OMAP343X_CLASS | (0x2 << 8)) | ||
| 366 | #define OMAP3430_REV_ES3_0 (OMAP343X_CLASS | (0x3 << 8)) | ||
| 367 | #define OMAP3430_REV_ES3_1 (OMAP343X_CLASS | (0x4 << 8)) | ||
| 368 | #define OMAP3430_REV_ES3_1_2 (OMAP343X_CLASS | (0x5 << 8)) | ||
| 369 | |||
| 370 | #define OMAP363X_CLASS 0x36300034 | ||
| 371 | #define OMAP3630_REV_ES1_0 OMAP363X_CLASS | ||
| 372 | #define OMAP3630_REV_ES1_1 (OMAP363X_CLASS | (0x1 << 8)) | ||
| 373 | #define OMAP3630_REV_ES1_2 (OMAP363X_CLASS | (0x2 << 8)) | ||
| 374 | |||
| 375 | #define TI816X_CLASS 0x81600034 | ||
| 376 | #define TI8168_REV_ES1_0 TI816X_CLASS | ||
| 377 | #define TI8168_REV_ES1_1 (TI816X_CLASS | (0x1 << 8)) | ||
| 378 | |||
| 379 | #define TI814X_CLASS 0x81400034 | ||
| 380 | #define TI8148_REV_ES1_0 TI814X_CLASS | ||
| 381 | #define TI8148_REV_ES2_0 (TI814X_CLASS | (0x1 << 8)) | ||
| 382 | #define TI8148_REV_ES2_1 (TI814X_CLASS | (0x2 << 8)) | ||
| 383 | |||
| 384 | #define AM35XX_CLASS 0x35170034 | ||
| 385 | #define AM35XX_REV_ES1_0 AM35XX_CLASS | ||
| 386 | #define AM35XX_REV_ES1_1 (AM35XX_CLASS | (0x1 << 8)) | ||
| 387 | |||
| 388 | #define AM335X_CLASS 0x33500033 | ||
| 389 | #define AM335X_REV_ES1_0 AM335X_CLASS | ||
| 390 | |||
| 391 | #define OMAP443X_CLASS 0x44300044 | ||
| 392 | #define OMAP4430_REV_ES1_0 (OMAP443X_CLASS | (0x10 << 8)) | ||
| 393 | #define OMAP4430_REV_ES2_0 (OMAP443X_CLASS | (0x20 << 8)) | ||
| 394 | #define OMAP4430_REV_ES2_1 (OMAP443X_CLASS | (0x21 << 8)) | ||
| 395 | #define OMAP4430_REV_ES2_2 (OMAP443X_CLASS | (0x22 << 8)) | ||
| 396 | #define OMAP4430_REV_ES2_3 (OMAP443X_CLASS | (0x23 << 8)) | ||
| 397 | |||
| 398 | #define OMAP446X_CLASS 0x44600044 | ||
| 399 | #define OMAP4460_REV_ES1_0 (OMAP446X_CLASS | (0x10 << 8)) | ||
| 400 | #define OMAP4460_REV_ES1_1 (OMAP446X_CLASS | (0x11 << 8)) | ||
| 401 | |||
| 402 | #define OMAP447X_CLASS 0x44700044 | ||
| 403 | #define OMAP4470_REV_ES1_0 (OMAP447X_CLASS | (0x10 << 8)) | ||
| 404 | |||
| 405 | #define OMAP54XX_CLASS 0x54000054 | ||
| 406 | #define OMAP5430_REV_ES1_0 (OMAP54XX_CLASS | (0x30 << 16) | (0x10 << 8)) | ||
| 407 | #define OMAP5432_REV_ES1_0 (OMAP54XX_CLASS | (0x32 << 16) | (0x10 << 8)) | ||
| 408 | |||
| 409 | void omap2xxx_check_revision(void); | ||
| 410 | void omap3xxx_check_revision(void); | ||
| 411 | void omap4xxx_check_revision(void); | ||
| 412 | void omap5xxx_check_revision(void); | ||
| 413 | void omap3xxx_check_features(void); | ||
| 414 | void ti81xx_check_features(void); | ||
| 415 | void omap4xxx_check_features(void); | ||
| 416 | |||
| 417 | /* | ||
| 418 | * Runtime detection of OMAP3 features | ||
| 419 | * | ||
| 420 | * OMAP3_HAS_IO_CHAIN_CTRL: Some later members of the OMAP3 chip | ||
| 421 | * family have OS-level control over the I/O chain clock. This is | ||
| 422 | * to avoid a window during which wakeups could potentially be lost | ||
| 423 | * during powerdomain transitions. If this bit is set, it | ||
| 424 | * indicates that the chip does support OS-level control of this | ||
| 425 | * feature. | ||
| 426 | */ | ||
| 427 | extern u32 omap_features; | ||
| 428 | |||
| 429 | #define OMAP3_HAS_L2CACHE BIT(0) | ||
| 430 | #define OMAP3_HAS_IVA BIT(1) | ||
| 431 | #define OMAP3_HAS_SGX BIT(2) | ||
| 432 | #define OMAP3_HAS_NEON BIT(3) | ||
| 433 | #define OMAP3_HAS_ISP BIT(4) | ||
| 434 | #define OMAP3_HAS_192MHZ_CLK BIT(5) | ||
| 435 | #define OMAP3_HAS_IO_WAKEUP BIT(6) | ||
| 436 | #define OMAP3_HAS_SDRC BIT(7) | ||
| 437 | #define OMAP3_HAS_IO_CHAIN_CTRL BIT(8) | ||
| 438 | #define OMAP4_HAS_MPU_1GHZ BIT(9) | ||
| 439 | #define OMAP4_HAS_MPU_1_2GHZ BIT(10) | ||
| 440 | #define OMAP4_HAS_MPU_1_5GHZ BIT(11) | ||
| 441 | |||
| 442 | |||
| 443 | #define OMAP3_HAS_FEATURE(feat,flag) \ | ||
| 444 | static inline unsigned int omap3_has_ ##feat(void) \ | ||
| 445 | { \ | ||
| 446 | return omap_features & OMAP3_HAS_ ##flag; \ | ||
| 447 | } \ | ||
| 448 | |||
| 449 | OMAP3_HAS_FEATURE(l2cache, L2CACHE) | ||
| 450 | OMAP3_HAS_FEATURE(sgx, SGX) | ||
| 451 | OMAP3_HAS_FEATURE(iva, IVA) | ||
| 452 | OMAP3_HAS_FEATURE(neon, NEON) | ||
| 453 | OMAP3_HAS_FEATURE(isp, ISP) | ||
| 454 | OMAP3_HAS_FEATURE(192mhz_clk, 192MHZ_CLK) | ||
| 455 | OMAP3_HAS_FEATURE(io_wakeup, IO_WAKEUP) | ||
| 456 | OMAP3_HAS_FEATURE(sdrc, SDRC) | ||
| 457 | OMAP3_HAS_FEATURE(io_chain_ctrl, IO_CHAIN_CTRL) | ||
| 458 | |||
| 459 | /* | ||
| 460 | * Runtime detection of OMAP4 features | ||
| 461 | */ | ||
| 462 | #define OMAP4_HAS_FEATURE(feat, flag) \ | ||
| 463 | static inline unsigned int omap4_has_ ##feat(void) \ | ||
| 464 | { \ | ||
| 465 | return omap_features & OMAP4_HAS_ ##flag; \ | ||
| 466 | } \ | ||
| 467 | |||
| 468 | OMAP4_HAS_FEATURE(mpu_1ghz, MPU_1GHZ) | ||
| 469 | OMAP4_HAS_FEATURE(mpu_1_2ghz, MPU_1_2GHZ) | ||
| 470 | OMAP4_HAS_FEATURE(mpu_1_5ghz, MPU_1_5GHZ) | ||
| 471 | |||
| 472 | #endif /* __ASSEMBLY__ */ | ||
| 473 | |||
diff --git a/arch/arm/mach-omap2/sr_device.c b/arch/arm/mach-omap2/sr_device.c index f8217a5a4a26..b0e77a407047 100644 --- a/arch/arm/mach-omap2/sr_device.c +++ b/arch/arm/mach-omap2/sr_device.c | |||
| @@ -23,8 +23,8 @@ | |||
| 23 | #include <linux/slab.h> | 23 | #include <linux/slab.h> |
| 24 | #include <linux/io.h> | 24 | #include <linux/io.h> |
| 25 | 25 | ||
| 26 | #include <plat/omap_device.h> | 26 | #include "soc.h" |
| 27 | 27 | #include "omap_device.h" | |
| 28 | #include "voltage.h" | 28 | #include "voltage.h" |
| 29 | #include "control.h" | 29 | #include "control.h" |
| 30 | #include "pm.h" | 30 | #include "pm.h" |
diff --git a/arch/arm/mach-omap2/sram.c b/arch/arm/mach-omap2/sram.c new file mode 100644 index 000000000000..0ff0f068bea8 --- /dev/null +++ b/arch/arm/mach-omap2/sram.c | |||
| @@ -0,0 +1,305 @@ | |||
| 1 | /* | ||
| 2 | * | ||
| 3 | * OMAP SRAM detection and management | ||
| 4 | * | ||
| 5 | * Copyright (C) 2005 Nokia Corporation | ||
| 6 | * Written by Tony Lindgren <tony@atomide.com> | ||
| 7 | * | ||
| 8 | * Copyright (C) 2009-2012 Texas Instruments | ||
| 9 | * Added OMAP4/5 support - Santosh Shilimkar <santosh.shilimkar@ti.com> | ||
| 10 | * | ||
| 11 | * This program is free software; you can redistribute it and/or modify | ||
| 12 | * it under the terms of the GNU General Public License version 2 as | ||
| 13 | * published by the Free Software Foundation. | ||
| 14 | */ | ||
| 15 | |||
| 16 | #include <linux/module.h> | ||
| 17 | #include <linux/kernel.h> | ||
| 18 | #include <linux/init.h> | ||
| 19 | #include <linux/io.h> | ||
| 20 | |||
| 21 | #include <asm/fncpy.h> | ||
| 22 | #include <asm/tlb.h> | ||
| 23 | #include <asm/cacheflush.h> | ||
| 24 | |||
| 25 | #include <asm/mach/map.h> | ||
| 26 | |||
| 27 | #include "soc.h" | ||
| 28 | #include "iomap.h" | ||
| 29 | #include "prm2xxx_3xxx.h" | ||
| 30 | #include "sdrc.h" | ||
| 31 | #include "sram.h" | ||
| 32 | |||
| 33 | #define OMAP2_SRAM_PUB_PA (OMAP2_SRAM_PA + 0xf800) | ||
| 34 | #define OMAP3_SRAM_PUB_PA (OMAP3_SRAM_PA + 0x8000) | ||
| 35 | #ifdef CONFIG_OMAP4_ERRATA_I688 | ||
| 36 | #define OMAP4_SRAM_PUB_PA OMAP4_SRAM_PA | ||
| 37 | #else | ||
| 38 | #define OMAP4_SRAM_PUB_PA (OMAP4_SRAM_PA + 0x4000) | ||
| 39 | #endif | ||
| 40 | #define OMAP5_SRAM_PA 0x40300000 | ||
| 41 | |||
| 42 | #define SRAM_BOOTLOADER_SZ 0x00 | ||
| 43 | |||
| 44 | #define OMAP24XX_VA_REQINFOPERM0 OMAP2_L3_IO_ADDRESS(0x68005048) | ||
| 45 | #define OMAP24XX_VA_READPERM0 OMAP2_L3_IO_ADDRESS(0x68005050) | ||
| 46 | #define OMAP24XX_VA_WRITEPERM0 OMAP2_L3_IO_ADDRESS(0x68005058) | ||
| 47 | |||
| 48 | #define OMAP34XX_VA_REQINFOPERM0 OMAP2_L3_IO_ADDRESS(0x68012848) | ||
| 49 | #define OMAP34XX_VA_READPERM0 OMAP2_L3_IO_ADDRESS(0x68012850) | ||
| 50 | #define OMAP34XX_VA_WRITEPERM0 OMAP2_L3_IO_ADDRESS(0x68012858) | ||
| 51 | #define OMAP34XX_VA_ADDR_MATCH2 OMAP2_L3_IO_ADDRESS(0x68012880) | ||
| 52 | #define OMAP34XX_VA_SMS_RG_ATT0 OMAP2_L3_IO_ADDRESS(0x6C000048) | ||
| 53 | |||
| 54 | #define GP_DEVICE 0x300 | ||
| 55 | |||
| 56 | #define ROUND_DOWN(value,boundary) ((value) & (~((boundary)-1))) | ||
| 57 | |||
| 58 | static unsigned long omap_sram_start; | ||
| 59 | static unsigned long omap_sram_skip; | ||
| 60 | static unsigned long omap_sram_size; | ||
| 61 | |||
| 62 | /* | ||
| 63 | * Depending on the target RAMFS firewall setup, the public usable amount of | ||
| 64 | * SRAM varies. The default accessible size for all device types is 2k. A GP | ||
| 65 | * device allows ARM11 but not other initiators for full size. This | ||
| 66 | * functionality seems ok until some nice security API happens. | ||
| 67 | */ | ||
| 68 | static int is_sram_locked(void) | ||
| 69 | { | ||
| 70 | if (OMAP2_DEVICE_TYPE_GP == omap_type()) { | ||
| 71 | /* RAMFW: R/W access to all initiators for all qualifier sets */ | ||
| 72 | if (cpu_is_omap242x()) { | ||
| 73 | __raw_writel(0xFF, OMAP24XX_VA_REQINFOPERM0); /* all q-vects */ | ||
| 74 | __raw_writel(0xCFDE, OMAP24XX_VA_READPERM0); /* all i-read */ | ||
| 75 | __raw_writel(0xCFDE, OMAP24XX_VA_WRITEPERM0); /* all i-write */ | ||
| 76 | } | ||
| 77 | if (cpu_is_omap34xx()) { | ||
| 78 | __raw_writel(0xFFFF, OMAP34XX_VA_REQINFOPERM0); /* all q-vects */ | ||
| 79 | __raw_writel(0xFFFF, OMAP34XX_VA_READPERM0); /* all i-read */ | ||
| 80 | __raw_writel(0xFFFF, OMAP34XX_VA_WRITEPERM0); /* all i-write */ | ||
| 81 | __raw_writel(0x0, OMAP34XX_VA_ADDR_MATCH2); | ||
| 82 | __raw_writel(0xFFFFFFFF, OMAP34XX_VA_SMS_RG_ATT0); | ||
| 83 | } | ||
| 84 | return 0; | ||
| 85 | } else | ||
| 86 | return 1; /* assume locked with no PPA or security driver */ | ||
| 87 | } | ||
| 88 | |||
| 89 | /* | ||
| 90 | * The amount of SRAM depends on the core type. | ||
| 91 | * Note that we cannot try to test for SRAM here because writes | ||
| 92 | * to secure SRAM will hang the system. Also the SRAM is not | ||
| 93 | * yet mapped at this point. | ||
| 94 | */ | ||
| 95 | static void __init omap_detect_sram(void) | ||
| 96 | { | ||
| 97 | omap_sram_skip = SRAM_BOOTLOADER_SZ; | ||
| 98 | if (is_sram_locked()) { | ||
| 99 | if (cpu_is_omap34xx()) { | ||
| 100 | omap_sram_start = OMAP3_SRAM_PUB_PA; | ||
| 101 | if ((omap_type() == OMAP2_DEVICE_TYPE_EMU) || | ||
| 102 | (omap_type() == OMAP2_DEVICE_TYPE_SEC)) { | ||
| 103 | omap_sram_size = 0x7000; /* 28K */ | ||
| 104 | omap_sram_skip += SZ_16K; | ||
| 105 | } else { | ||
| 106 | omap_sram_size = 0x8000; /* 32K */ | ||
| 107 | } | ||
| 108 | } else if (cpu_is_omap44xx()) { | ||
| 109 | omap_sram_start = OMAP4_SRAM_PUB_PA; | ||
| 110 | omap_sram_size = 0xa000; /* 40K */ | ||
| 111 | } else if (soc_is_omap54xx()) { | ||
| 112 | omap_sram_start = OMAP5_SRAM_PA; | ||
| 113 | omap_sram_size = SZ_128K; /* 128KB */ | ||
| 114 | } else { | ||
| 115 | omap_sram_start = OMAP2_SRAM_PUB_PA; | ||
| 116 | omap_sram_size = 0x800; /* 2K */ | ||
| 117 | } | ||
| 118 | } else { | ||
| 119 | if (soc_is_am33xx()) { | ||
| 120 | omap_sram_start = AM33XX_SRAM_PA; | ||
| 121 | omap_sram_size = 0x10000; /* 64K */ | ||
| 122 | } else if (cpu_is_omap34xx()) { | ||
| 123 | omap_sram_start = OMAP3_SRAM_PA; | ||
| 124 | omap_sram_size = 0x10000; /* 64K */ | ||
| 125 | } else if (cpu_is_omap44xx()) { | ||
| 126 | omap_sram_start = OMAP4_SRAM_PA; | ||
| 127 | omap_sram_size = 0xe000; /* 56K */ | ||
| 128 | } else if (soc_is_omap54xx()) { | ||
| 129 | omap_sram_start = OMAP5_SRAM_PA; | ||
| 130 | omap_sram_size = SZ_128K; /* 128KB */ | ||
| 131 | } else { | ||
| 132 | omap_sram_start = OMAP2_SRAM_PA; | ||
| 133 | if (cpu_is_omap242x()) | ||
| 134 | omap_sram_size = 0xa0000; /* 640K */ | ||
| 135 | else if (cpu_is_omap243x()) | ||
| 136 | omap_sram_size = 0x10000; /* 64K */ | ||
| 137 | } | ||
| 138 | } | ||
| 139 | } | ||
| 140 | |||
| 141 | /* | ||
| 142 | * Note that we cannot use ioremap for SRAM, as clock init needs SRAM early. | ||
| 143 | */ | ||
| 144 | static void __init omap2_map_sram(void) | ||
| 145 | { | ||
| 146 | int cached = 1; | ||
| 147 | |||
| 148 | #ifdef CONFIG_OMAP4_ERRATA_I688 | ||
| 149 | if (cpu_is_omap44xx()) { | ||
| 150 | omap_sram_start += PAGE_SIZE; | ||
| 151 | omap_sram_size -= SZ_16K; | ||
| 152 | } | ||
| 153 | #endif | ||
| 154 | if (cpu_is_omap34xx()) { | ||
| 155 | /* | ||
| 156 | * SRAM must be marked as non-cached on OMAP3 since the | ||
| 157 | * CORE DPLL M2 divider change code (in SRAM) runs with the | ||
| 158 | * SDRAM controller disabled, and if it is marked cached, | ||
| 159 | * the ARM may attempt to write cache lines back to SDRAM | ||
| 160 | * which will cause the system to hang. | ||
| 161 | */ | ||
| 162 | cached = 0; | ||
| 163 | } | ||
| 164 | |||
| 165 | omap_map_sram(omap_sram_start, omap_sram_size, | ||
| 166 | omap_sram_skip, cached); | ||
| 167 | } | ||
| 168 | |||
| 169 | static void (*_omap2_sram_ddr_init)(u32 *slow_dll_ctrl, u32 fast_dll_ctrl, | ||
| 170 | u32 base_cs, u32 force_unlock); | ||
| 171 | |||
| 172 | void omap2_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl, | ||
| 173 | u32 base_cs, u32 force_unlock) | ||
| 174 | { | ||
| 175 | BUG_ON(!_omap2_sram_ddr_init); | ||
| 176 | _omap2_sram_ddr_init(slow_dll_ctrl, fast_dll_ctrl, | ||
| 177 | base_cs, force_unlock); | ||
| 178 | } | ||
| 179 | |||
| 180 | static void (*_omap2_sram_reprogram_sdrc)(u32 perf_level, u32 dll_val, | ||
| 181 | u32 mem_type); | ||
| 182 | |||
| 183 | void omap2_sram_reprogram_sdrc(u32 perf_level, u32 dll_val, u32 mem_type) | ||
| 184 | { | ||
| 185 | BUG_ON(!_omap2_sram_reprogram_sdrc); | ||
| 186 | _omap2_sram_reprogram_sdrc(perf_level, dll_val, mem_type); | ||
| 187 | } | ||
| 188 | |||
| 189 | static u32 (*_omap2_set_prcm)(u32 dpll_ctrl_val, u32 sdrc_rfr_val, int bypass); | ||
| 190 | |||
| 191 | u32 omap2_set_prcm(u32 dpll_ctrl_val, u32 sdrc_rfr_val, int bypass) | ||
| 192 | { | ||
| 193 | BUG_ON(!_omap2_set_prcm); | ||
| 194 | return _omap2_set_prcm(dpll_ctrl_val, sdrc_rfr_val, bypass); | ||
| 195 | } | ||
| 196 | |||
| 197 | #ifdef CONFIG_SOC_OMAP2420 | ||
| 198 | static int __init omap242x_sram_init(void) | ||
| 199 | { | ||
| 200 | _omap2_sram_ddr_init = omap_sram_push(omap242x_sram_ddr_init, | ||
| 201 | omap242x_sram_ddr_init_sz); | ||
| 202 | |||
| 203 | _omap2_sram_reprogram_sdrc = omap_sram_push(omap242x_sram_reprogram_sdrc, | ||
| 204 | omap242x_sram_reprogram_sdrc_sz); | ||
| 205 | |||
| 206 | _omap2_set_prcm = omap_sram_push(omap242x_sram_set_prcm, | ||
| 207 | omap242x_sram_set_prcm_sz); | ||
| 208 | |||
| 209 | return 0; | ||
| 210 | } | ||
| 211 | #else | ||
| 212 | static inline int omap242x_sram_init(void) | ||
| 213 | { | ||
| 214 | return 0; | ||
| 215 | } | ||
| 216 | #endif | ||
| 217 | |||
| 218 | #ifdef CONFIG_SOC_OMAP2430 | ||
| 219 | static int __init omap243x_sram_init(void) | ||
| 220 | { | ||
| 221 | _omap2_sram_ddr_init = omap_sram_push(omap243x_sram_ddr_init, | ||
| 222 | omap243x_sram_ddr_init_sz); | ||
| 223 | |||
| 224 | _omap2_sram_reprogram_sdrc = omap_sram_push(omap243x_sram_reprogram_sdrc, | ||
| 225 | omap243x_sram_reprogram_sdrc_sz); | ||
| 226 | |||
| 227 | _omap2_set_prcm = omap_sram_push(omap243x_sram_set_prcm, | ||
| 228 | omap243x_sram_set_prcm_sz); | ||
| 229 | |||
| 230 | return 0; | ||
| 231 | } | ||
| 232 | #else | ||
| 233 | static inline int omap243x_sram_init(void) | ||
| 234 | { | ||
| 235 | return 0; | ||
| 236 | } | ||
| 237 | #endif | ||
| 238 | |||
| 239 | #ifdef CONFIG_ARCH_OMAP3 | ||
| 240 | |||
| 241 | static u32 (*_omap3_sram_configure_core_dpll)( | ||
| 242 | u32 m2, u32 unlock_dll, u32 f, u32 inc, | ||
| 243 | u32 sdrc_rfr_ctrl_0, u32 sdrc_actim_ctrl_a_0, | ||
| 244 | u32 sdrc_actim_ctrl_b_0, u32 sdrc_mr_0, | ||
| 245 | u32 sdrc_rfr_ctrl_1, u32 sdrc_actim_ctrl_a_1, | ||
| 246 | u32 sdrc_actim_ctrl_b_1, u32 sdrc_mr_1); | ||
| 247 | |||
| 248 | u32 omap3_configure_core_dpll(u32 m2, u32 unlock_dll, u32 f, u32 inc, | ||
| 249 | u32 sdrc_rfr_ctrl_0, u32 sdrc_actim_ctrl_a_0, | ||
| 250 | u32 sdrc_actim_ctrl_b_0, u32 sdrc_mr_0, | ||
| 251 | u32 sdrc_rfr_ctrl_1, u32 sdrc_actim_ctrl_a_1, | ||
| 252 | u32 sdrc_actim_ctrl_b_1, u32 sdrc_mr_1) | ||
| 253 | { | ||
| 254 | BUG_ON(!_omap3_sram_configure_core_dpll); | ||
| 255 | return _omap3_sram_configure_core_dpll( | ||
| 256 | m2, unlock_dll, f, inc, | ||
| 257 | sdrc_rfr_ctrl_0, sdrc_actim_ctrl_a_0, | ||
| 258 | sdrc_actim_ctrl_b_0, sdrc_mr_0, | ||
| 259 | sdrc_rfr_ctrl_1, sdrc_actim_ctrl_a_1, | ||
| 260 | sdrc_actim_ctrl_b_1, sdrc_mr_1); | ||
| 261 | } | ||
| 262 | |||
| 263 | void omap3_sram_restore_context(void) | ||
| 264 | { | ||
| 265 | omap_sram_reset(); | ||
| 266 | |||
| 267 | _omap3_sram_configure_core_dpll = | ||
| 268 | omap_sram_push(omap3_sram_configure_core_dpll, | ||
| 269 | omap3_sram_configure_core_dpll_sz); | ||
| 270 | omap_push_sram_idle(); | ||
| 271 | } | ||
| 272 | |||
| 273 | static inline int omap34xx_sram_init(void) | ||
| 274 | { | ||
| 275 | omap3_sram_restore_context(); | ||
| 276 | return 0; | ||
| 277 | } | ||
| 278 | #else | ||
| 279 | static inline int omap34xx_sram_init(void) | ||
| 280 | { | ||
| 281 | return 0; | ||
| 282 | } | ||
| 283 | #endif /* CONFIG_ARCH_OMAP3 */ | ||
| 284 | |||
| 285 | static inline int am33xx_sram_init(void) | ||
| 286 | { | ||
| 287 | return 0; | ||
| 288 | } | ||
| 289 | |||
| 290 | int __init omap_sram_init(void) | ||
| 291 | { | ||
| 292 | omap_detect_sram(); | ||
| 293 | omap2_map_sram(); | ||
| 294 | |||
| 295 | if (cpu_is_omap242x()) | ||
| 296 | omap242x_sram_init(); | ||
| 297 | else if (cpu_is_omap2430()) | ||
| 298 | omap243x_sram_init(); | ||
| 299 | else if (soc_is_am33xx()) | ||
| 300 | am33xx_sram_init(); | ||
| 301 | else if (cpu_is_omap34xx()) | ||
| 302 | omap34xx_sram_init(); | ||
| 303 | |||
| 304 | return 0; | ||
| 305 | } | ||
diff --git a/arch/arm/mach-omap2/sram.h b/arch/arm/mach-omap2/sram.h new file mode 100644 index 000000000000..ca7277c2a9ee --- /dev/null +++ b/arch/arm/mach-omap2/sram.h | |||
| @@ -0,0 +1,83 @@ | |||
| 1 | /* | ||
| 2 | * Interface for functions that need to be run in internal SRAM | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License version 2 as | ||
| 6 | * published by the Free Software Foundation. | ||
| 7 | */ | ||
| 8 | |||
| 9 | #ifndef __ASSEMBLY__ | ||
| 10 | #include <plat/sram.h> | ||
| 11 | |||
| 12 | extern void omap2_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl, | ||
| 13 | u32 base_cs, u32 force_unlock); | ||
| 14 | extern void omap2_sram_reprogram_sdrc(u32 perf_level, u32 dll_val, | ||
| 15 | u32 mem_type); | ||
| 16 | extern u32 omap2_set_prcm(u32 dpll_ctrl_val, u32 sdrc_rfr_val, int bypass); | ||
| 17 | |||
| 18 | extern u32 omap3_configure_core_dpll( | ||
| 19 | u32 m2, u32 unlock_dll, u32 f, u32 inc, | ||
| 20 | u32 sdrc_rfr_ctrl_0, u32 sdrc_actim_ctrl_a_0, | ||
| 21 | u32 sdrc_actim_ctrl_b_0, u32 sdrc_mr_0, | ||
| 22 | u32 sdrc_rfr_ctrl_1, u32 sdrc_actim_ctrl_a_1, | ||
| 23 | u32 sdrc_actim_ctrl_b_1, u32 sdrc_mr_1); | ||
| 24 | extern void omap3_sram_restore_context(void); | ||
| 25 | |||
| 26 | /* Do not use these */ | ||
| 27 | extern void omap24xx_sram_reprogram_clock(u32 ckctl, u32 dpllctl); | ||
| 28 | extern unsigned long omap24xx_sram_reprogram_clock_sz; | ||
| 29 | |||
| 30 | extern void omap242x_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl, | ||
| 31 | u32 base_cs, u32 force_unlock); | ||
| 32 | extern unsigned long omap242x_sram_ddr_init_sz; | ||
| 33 | |||
| 34 | extern u32 omap242x_sram_set_prcm(u32 dpll_ctrl_val, u32 sdrc_rfr_val, | ||
| 35 | int bypass); | ||
| 36 | extern unsigned long omap242x_sram_set_prcm_sz; | ||
| 37 | |||
| 38 | extern void omap242x_sram_reprogram_sdrc(u32 perf_level, u32 dll_val, | ||
| 39 | u32 mem_type); | ||
| 40 | extern unsigned long omap242x_sram_reprogram_sdrc_sz; | ||
| 41 | |||
| 42 | |||
| 43 | extern void omap243x_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl, | ||
| 44 | u32 base_cs, u32 force_unlock); | ||
| 45 | extern unsigned long omap243x_sram_ddr_init_sz; | ||
| 46 | |||
| 47 | extern u32 omap243x_sram_set_prcm(u32 dpll_ctrl_val, u32 sdrc_rfr_val, | ||
| 48 | int bypass); | ||
| 49 | extern unsigned long omap243x_sram_set_prcm_sz; | ||
| 50 | |||
| 51 | extern void omap243x_sram_reprogram_sdrc(u32 perf_level, u32 dll_val, | ||
| 52 | u32 mem_type); | ||
| 53 | extern unsigned long omap243x_sram_reprogram_sdrc_sz; | ||
| 54 | |||
| 55 | extern u32 omap3_sram_configure_core_dpll( | ||
| 56 | u32 m2, u32 unlock_dll, u32 f, u32 inc, | ||
| 57 | u32 sdrc_rfr_ctrl_0, u32 sdrc_actim_ctrl_a_0, | ||
| 58 | u32 sdrc_actim_ctrl_b_0, u32 sdrc_mr_0, | ||
| 59 | u32 sdrc_rfr_ctrl_1, u32 sdrc_actim_ctrl_a_1, | ||
| 60 | u32 sdrc_actim_ctrl_b_1, u32 sdrc_mr_1); | ||
| 61 | extern unsigned long omap3_sram_configure_core_dpll_sz; | ||
| 62 | |||
| 63 | #ifdef CONFIG_PM | ||
| 64 | extern void omap_push_sram_idle(void); | ||
| 65 | #else | ||
| 66 | static inline void omap_push_sram_idle(void) {} | ||
| 67 | #endif /* CONFIG_PM */ | ||
| 68 | |||
| 69 | #endif /* __ASSEMBLY__ */ | ||
| 70 | |||
| 71 | /* | ||
| 72 | * OMAP2+: define the SRAM PA addresses. | ||
| 73 | * Used by the SRAM management code and the idle sleep code. | ||
| 74 | */ | ||
| 75 | #define OMAP2_SRAM_PA 0x40200000 | ||
| 76 | #define OMAP3_SRAM_PA 0x40200000 | ||
| 77 | #ifdef CONFIG_OMAP4_ERRATA_I688 | ||
| 78 | #define OMAP4_SRAM_PA 0x40304000 | ||
| 79 | #define OMAP4_SRAM_VA 0xfe404000 | ||
| 80 | #else | ||
| 81 | #define OMAP4_SRAM_PA 0x40300000 | ||
| 82 | #endif | ||
| 83 | #define AM33XX_SRAM_PA 0x40300000 | ||
diff --git a/arch/arm/mach-omap2/sram242x.S b/arch/arm/mach-omap2/sram242x.S index 8f7326cd435b..680a7c56cc3e 100644 --- a/arch/arm/mach-omap2/sram242x.S +++ b/arch/arm/mach-omap2/sram242x.S | |||
| @@ -34,8 +34,8 @@ | |||
| 34 | 34 | ||
| 35 | #include "soc.h" | 35 | #include "soc.h" |
| 36 | #include "iomap.h" | 36 | #include "iomap.h" |
| 37 | #include "prm2xxx_3xxx.h" | 37 | #include "prm2xxx.h" |
| 38 | #include "cm2xxx_3xxx.h" | 38 | #include "cm2xxx.h" |
| 39 | #include "sdrc.h" | 39 | #include "sdrc.h" |
| 40 | 40 | ||
| 41 | .text | 41 | .text |
diff --git a/arch/arm/mach-omap2/sram243x.S b/arch/arm/mach-omap2/sram243x.S index b140d6578529..a1e9edd673f4 100644 --- a/arch/arm/mach-omap2/sram243x.S +++ b/arch/arm/mach-omap2/sram243x.S | |||
| @@ -34,8 +34,8 @@ | |||
| 34 | 34 | ||
| 35 | #include "soc.h" | 35 | #include "soc.h" |
| 36 | #include "iomap.h" | 36 | #include "iomap.h" |
| 37 | #include "prm2xxx_3xxx.h" | 37 | #include "prm2xxx.h" |
| 38 | #include "cm2xxx_3xxx.h" | 38 | #include "cm2xxx.h" |
| 39 | #include "sdrc.h" | 39 | #include "sdrc.h" |
| 40 | 40 | ||
| 41 | .text | 41 | .text |
diff --git a/arch/arm/mach-omap2/sram34xx.S b/arch/arm/mach-omap2/sram34xx.S index 2d0ceaa23fb8..1446331b576a 100644 --- a/arch/arm/mach-omap2/sram34xx.S +++ b/arch/arm/mach-omap2/sram34xx.S | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | #include "soc.h" | 32 | #include "soc.h" |
| 33 | #include "iomap.h" | 33 | #include "iomap.h" |
| 34 | #include "sdrc.h" | 34 | #include "sdrc.h" |
| 35 | #include "cm2xxx_3xxx.h" | 35 | #include "cm3xxx.h" |
| 36 | 36 | ||
| 37 | /* | 37 | /* |
| 38 | * This file needs be built unconditionally as ARM to interoperate correctly | 38 | * This file needs be built unconditionally as ARM to interoperate correctly |
diff --git a/arch/arm/mach-omap2/timer.c b/arch/arm/mach-omap2/timer.c index 69e46631a7cd..c5bc2cb4d8d3 100644 --- a/arch/arm/mach-omap2/timer.c +++ b/arch/arm/mach-omap2/timer.c | |||
| @@ -43,10 +43,11 @@ | |||
| 43 | #include <asm/sched_clock.h> | 43 | #include <asm/sched_clock.h> |
| 44 | 44 | ||
| 45 | #include <asm/arch_timer.h> | 45 | #include <asm/arch_timer.h> |
| 46 | #include <plat/omap_hwmod.h> | 46 | #include "omap_hwmod.h" |
| 47 | #include <plat/omap_device.h> | 47 | #include "omap_device.h" |
| 48 | #include <plat/counter-32k.h> | ||
| 48 | #include <plat/dmtimer.h> | 49 | #include <plat/dmtimer.h> |
| 49 | #include <plat/omap-pm.h> | 50 | #include "omap-pm.h" |
| 50 | 51 | ||
| 51 | #include "soc.h" | 52 | #include "soc.h" |
| 52 | #include "common.h" | 53 | #include "common.h" |
| @@ -559,6 +560,8 @@ static int __init omap_timer_init(struct omap_hwmod *oh, void *unused) | |||
| 559 | if (timer_dev_attr) | 560 | if (timer_dev_attr) |
| 560 | pdata->timer_capability = timer_dev_attr->timer_capability; | 561 | pdata->timer_capability = timer_dev_attr->timer_capability; |
| 561 | 562 | ||
| 563 | pdata->get_context_loss_count = omap_pm_get_dev_context_loss_count; | ||
| 564 | |||
| 562 | pdev = omap_device_build(name, id, oh, pdata, sizeof(*pdata), | 565 | pdev = omap_device_build(name, id, oh, pdata, sizeof(*pdata), |
| 563 | NULL, 0, 0); | 566 | NULL, 0, 0); |
| 564 | 567 | ||
diff --git a/arch/arm/mach-omap2/twl-common.c b/arch/arm/mach-omap2/twl-common.c index 635e109f5ad3..827f54a1dd1d 100644 --- a/arch/arm/mach-omap2/twl-common.c +++ b/arch/arm/mach-omap2/twl-common.c | |||
| @@ -26,9 +26,6 @@ | |||
| 26 | #include <linux/regulator/machine.h> | 26 | #include <linux/regulator/machine.h> |
| 27 | #include <linux/regulator/fixed.h> | 27 | #include <linux/regulator/fixed.h> |
| 28 | 28 | ||
| 29 | #include <plat/i2c.h> | ||
| 30 | #include <plat/usb.h> | ||
| 31 | |||
| 32 | #include "soc.h" | 29 | #include "soc.h" |
| 33 | #include "twl-common.h" | 30 | #include "twl-common.h" |
| 34 | #include "pm.h" | 31 | #include "pm.h" |
diff --git a/arch/arm/mach-omap2/usb-host.c b/arch/arm/mach-omap2/usb-host.c index 3c434498e12e..d1dbe125b34f 100644 --- a/arch/arm/mach-omap2/usb-host.c +++ b/arch/arm/mach-omap2/usb-host.c | |||
| @@ -25,10 +25,10 @@ | |||
| 25 | 25 | ||
| 26 | #include <asm/io.h> | 26 | #include <asm/io.h> |
| 27 | 27 | ||
| 28 | #include <plat/usb.h> | 28 | #include "soc.h" |
| 29 | #include <plat/omap_device.h> | 29 | #include "omap_device.h" |
| 30 | |||
| 31 | #include "mux.h" | 30 | #include "mux.h" |
| 31 | #include "usb.h" | ||
| 32 | 32 | ||
| 33 | #ifdef CONFIG_MFD_OMAP_USB_HOST | 33 | #ifdef CONFIG_MFD_OMAP_USB_HOST |
| 34 | 34 | ||
diff --git a/arch/arm/mach-omap2/usb-musb.c b/arch/arm/mach-omap2/usb-musb.c index 51da21cb78f1..7b33b375fe77 100644 --- a/arch/arm/mach-omap2/usb-musb.c +++ b/arch/arm/mach-omap2/usb-musb.c | |||
| @@ -25,12 +25,10 @@ | |||
| 25 | #include <linux/io.h> | 25 | #include <linux/io.h> |
| 26 | #include <linux/usb/musb.h> | 26 | #include <linux/usb/musb.h> |
| 27 | 27 | ||
| 28 | #include <plat/usb.h> | 28 | #include "omap_device.h" |
| 29 | #include <plat/omap_device.h> | 29 | #include "soc.h" |
| 30 | |||
| 31 | #include "am35xx.h" | ||
| 32 | |||
| 33 | #include "mux.h" | 30 | #include "mux.h" |
| 31 | #include "usb.h" | ||
| 34 | 32 | ||
| 35 | static struct musb_hdrc_config musb_config = { | 33 | static struct musb_hdrc_config musb_config = { |
| 36 | .multipoint = 1, | 34 | .multipoint = 1, |
diff --git a/arch/arm/mach-omap2/usb-tusb6010.c b/arch/arm/mach-omap2/usb-tusb6010.c index 805bea6edf17..a8795ff19e6d 100644 --- a/arch/arm/mach-omap2/usb-tusb6010.c +++ b/arch/arm/mach-omap2/usb-tusb6010.c | |||
| @@ -15,10 +15,11 @@ | |||
| 15 | #include <linux/platform_device.h> | 15 | #include <linux/platform_device.h> |
| 16 | #include <linux/gpio.h> | 16 | #include <linux/gpio.h> |
| 17 | #include <linux/export.h> | 17 | #include <linux/export.h> |
| 18 | #include <linux/platform_data/usb-omap.h> | ||
| 18 | 19 | ||
| 19 | #include <linux/usb/musb.h> | 20 | #include <linux/usb/musb.h> |
| 20 | 21 | ||
| 21 | #include <plat/gpmc.h> | 22 | #include "gpmc.h" |
| 22 | 23 | ||
| 23 | #include "mux.h" | 24 | #include "mux.h" |
| 24 | 25 | ||
diff --git a/arch/arm/mach-omap2/usb.h b/arch/arm/mach-omap2/usb.h new file mode 100644 index 000000000000..9b986ead7c45 --- /dev/null +++ b/arch/arm/mach-omap2/usb.h | |||
| @@ -0,0 +1,82 @@ | |||
| 1 | #include <linux/platform_data/usb-omap.h> | ||
| 2 | |||
| 3 | /* AM35x */ | ||
| 4 | /* USB 2.0 PHY Control */ | ||
| 5 | #define CONF2_PHY_GPIOMODE (1 << 23) | ||
| 6 | #define CONF2_OTGMODE (3 << 14) | ||
| 7 | #define CONF2_NO_OVERRIDE (0 << 14) | ||
| 8 | #define CONF2_FORCE_HOST (1 << 14) | ||
| 9 | #define CONF2_FORCE_DEVICE (2 << 14) | ||
| 10 | #define CONF2_FORCE_HOST_VBUS_LOW (3 << 14) | ||
| 11 | #define CONF2_SESENDEN (1 << 13) | ||
| 12 | #define CONF2_VBDTCTEN (1 << 12) | ||
| 13 | #define CONF2_REFFREQ_24MHZ (2 << 8) | ||
| 14 | #define CONF2_REFFREQ_26MHZ (7 << 8) | ||
| 15 | #define CONF2_REFFREQ_13MHZ (6 << 8) | ||
| 16 | #define CONF2_REFFREQ (0xf << 8) | ||
| 17 | #define CONF2_PHYCLKGD (1 << 7) | ||
| 18 | #define CONF2_VBUSSENSE (1 << 6) | ||
| 19 | #define CONF2_PHY_PLLON (1 << 5) | ||
| 20 | #define CONF2_RESET (1 << 4) | ||
| 21 | #define CONF2_PHYPWRDN (1 << 3) | ||
| 22 | #define CONF2_OTGPWRDN (1 << 2) | ||
| 23 | #define CONF2_DATPOL (1 << 1) | ||
| 24 | |||
| 25 | /* TI81XX specific definitions */ | ||
| 26 | #define USBCTRL0 0x620 | ||
| 27 | #define USBSTAT0 0x624 | ||
| 28 | |||
| 29 | /* TI816X PHY controls bits */ | ||
| 30 | #define TI816X_USBPHY0_NORMAL_MODE (1 << 0) | ||
| 31 | #define TI816X_USBPHY_REFCLK_OSC (1 << 8) | ||
| 32 | |||
| 33 | /* TI814X PHY controls bits */ | ||
| 34 | #define USBPHY_CM_PWRDN (1 << 0) | ||
| 35 | #define USBPHY_OTG_PWRDN (1 << 1) | ||
| 36 | #define USBPHY_CHGDET_DIS (1 << 2) | ||
| 37 | #define USBPHY_CHGDET_RSTRT (1 << 3) | ||
| 38 | #define USBPHY_SRCONDM (1 << 4) | ||
| 39 | #define USBPHY_SINKONDP (1 << 5) | ||
| 40 | #define USBPHY_CHGISINK_EN (1 << 6) | ||
| 41 | #define USBPHY_CHGVSRC_EN (1 << 7) | ||
| 42 | #define USBPHY_DMPULLUP (1 << 8) | ||
| 43 | #define USBPHY_DPPULLUP (1 << 9) | ||
| 44 | #define USBPHY_CDET_EXTCTL (1 << 10) | ||
| 45 | #define USBPHY_GPIO_MODE (1 << 12) | ||
| 46 | #define USBPHY_DPOPBUFCTL (1 << 13) | ||
| 47 | #define USBPHY_DMOPBUFCTL (1 << 14) | ||
| 48 | #define USBPHY_DPINPUT (1 << 15) | ||
| 49 | #define USBPHY_DMINPUT (1 << 16) | ||
| 50 | #define USBPHY_DPGPIO_PD (1 << 17) | ||
| 51 | #define USBPHY_DMGPIO_PD (1 << 18) | ||
| 52 | #define USBPHY_OTGVDET_EN (1 << 19) | ||
| 53 | #define USBPHY_OTGSESSEND_EN (1 << 20) | ||
| 54 | #define USBPHY_DATA_POLARITY (1 << 23) | ||
| 55 | |||
| 56 | struct usbhs_omap_board_data { | ||
| 57 | enum usbhs_omap_port_mode port_mode[OMAP3_HS_USB_PORTS]; | ||
| 58 | |||
| 59 | /* have to be valid if phy_reset is true and portx is in phy mode */ | ||
| 60 | int reset_gpio_port[OMAP3_HS_USB_PORTS]; | ||
| 61 | |||
| 62 | /* Set this to true for ES2.x silicon */ | ||
| 63 | unsigned es2_compatibility:1; | ||
| 64 | |||
| 65 | unsigned phy_reset:1; | ||
| 66 | |||
| 67 | /* | ||
| 68 | * Regulators for USB PHYs. | ||
| 69 | * Each PHY can have a separate regulator. | ||
| 70 | */ | ||
| 71 | struct regulator *regulator[OMAP3_HS_USB_PORTS]; | ||
| 72 | }; | ||
| 73 | |||
| 74 | extern void usb_musb_init(struct omap_musb_board_data *board_data); | ||
| 75 | extern void usbhs_init(const struct usbhs_omap_board_data *pdata); | ||
| 76 | |||
| 77 | extern void am35x_musb_reset(void); | ||
| 78 | extern void am35x_musb_phy_power(u8 on); | ||
| 79 | extern void am35x_musb_clear_irq(void); | ||
| 80 | extern void am35x_set_mode(u8 musb_mode); | ||
| 81 | extern void ti81xx_musb_phy_power(u8 on); | ||
| 82 | |||
diff --git a/arch/arm/mach-omap2/wd_timer.c b/arch/arm/mach-omap2/wd_timer.c index b2f1c67043a2..f6b6c37ac3f4 100644 --- a/arch/arm/mach-omap2/wd_timer.c +++ b/arch/arm/mach-omap2/wd_timer.c | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | #include <linux/io.h> | 11 | #include <linux/io.h> |
| 12 | #include <linux/err.h> | 12 | #include <linux/err.h> |
| 13 | 13 | ||
| 14 | #include <plat/omap_hwmod.h> | 14 | #include "omap_hwmod.h" |
| 15 | 15 | ||
| 16 | #include "wd_timer.h" | 16 | #include "wd_timer.h" |
| 17 | #include "common.h" | 17 | #include "common.h" |
diff --git a/arch/arm/mach-omap2/wd_timer.h b/arch/arm/mach-omap2/wd_timer.h index f6bbba73b535..a78f81034a9f 100644 --- a/arch/arm/mach-omap2/wd_timer.h +++ b/arch/arm/mach-omap2/wd_timer.h | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | #ifndef __ARCH_ARM_MACH_OMAP2_WD_TIMER_H | 10 | #ifndef __ARCH_ARM_MACH_OMAP2_WD_TIMER_H |
| 11 | #define __ARCH_ARM_MACH_OMAP2_WD_TIMER_H | 11 | #define __ARCH_ARM_MACH_OMAP2_WD_TIMER_H |
| 12 | 12 | ||
| 13 | #include <plat/omap_hwmod.h> | 13 | #include "omap_hwmod.h" |
| 14 | 14 | ||
| 15 | extern int omap2_wd_timer_disable(struct omap_hwmod *oh); | 15 | extern int omap2_wd_timer_disable(struct omap_hwmod *oh); |
| 16 | extern int omap2_wd_timer_reset(struct omap_hwmod *oh); | 16 | extern int omap2_wd_timer_reset(struct omap_hwmod *oh); |
diff --git a/arch/arm/plat-omap/Makefile b/arch/arm/plat-omap/Makefile index dacaee009a4e..8d885848600a 100644 --- a/arch/arm/plat-omap/Makefile +++ b/arch/arm/plat-omap/Makefile | |||
| @@ -3,13 +3,12 @@ | |||
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | # Common support | 5 | # Common support |
| 6 | obj-y := common.o sram.o clock.o dma.o fb.o counter_32k.o | 6 | obj-y := sram.o dma.o fb.o counter_32k.o |
| 7 | obj-m := | 7 | obj-m := |
| 8 | obj-n := | 8 | obj-n := |
| 9 | obj- := | 9 | obj- := |
| 10 | 10 | ||
| 11 | # omap_device support (OMAP2+ only at the moment) | 11 | # omap_device support (OMAP2+ only at the moment) |
| 12 | obj-$(CONFIG_ARCH_OMAP2PLUS) += omap_device.o | ||
| 13 | 12 | ||
| 14 | obj-$(CONFIG_OMAP_DM_TIMER) += dmtimer.o | 13 | obj-$(CONFIG_OMAP_DM_TIMER) += dmtimer.o |
| 15 | obj-$(CONFIG_OMAP_DEBUG_DEVICES) += debug-devices.o | 14 | obj-$(CONFIG_OMAP_DEBUG_DEVICES) += debug-devices.o |
| @@ -20,4 +19,3 @@ obj-y += $(i2c-omap-m) $(i2c-omap-y) | |||
| 20 | # OMAP mailbox framework | 19 | # OMAP mailbox framework |
| 21 | obj-$(CONFIG_OMAP_MBOX_FWK) += mailbox.o | 20 | obj-$(CONFIG_OMAP_MBOX_FWK) += mailbox.o |
| 22 | 21 | ||
| 23 | obj-$(CONFIG_OMAP_PM_NOOP) += omap-pm-noop.o | ||
diff --git a/arch/arm/plat-omap/clock.c b/arch/arm/plat-omap/clock.c deleted file mode 100644 index 9d7ac20ef8f9..000000000000 --- a/arch/arm/plat-omap/clock.c +++ /dev/null | |||
| @@ -1,544 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * linux/arch/arm/plat-omap/clock.c | ||
| 3 | * | ||
| 4 | * Copyright (C) 2004 - 2008 Nokia corporation | ||
| 5 | * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com> | ||
| 6 | * | ||
| 7 | * Modified for omap shared clock framework by Tony Lindgren <tony@atomide.com> | ||
| 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 version 2 as | ||
| 11 | * published by the Free Software Foundation. | ||
| 12 | */ | ||
| 13 | #include <linux/kernel.h> | ||
| 14 | #include <linux/init.h> | ||
| 15 | #include <linux/list.h> | ||
| 16 | #include <linux/errno.h> | ||
| 17 | #include <linux/export.h> | ||
| 18 | #include <linux/err.h> | ||
| 19 | #include <linux/string.h> | ||
| 20 | #include <linux/clk.h> | ||
| 21 | #include <linux/mutex.h> | ||
| 22 | #include <linux/cpufreq.h> | ||
| 23 | #include <linux/io.h> | ||
| 24 | |||
| 25 | #include <plat/clock.h> | ||
| 26 | |||
| 27 | static LIST_HEAD(clocks); | ||
| 28 | static DEFINE_MUTEX(clocks_mutex); | ||
| 29 | static DEFINE_SPINLOCK(clockfw_lock); | ||
| 30 | |||
| 31 | static struct clk_functions *arch_clock; | ||
| 32 | |||
| 33 | /* | ||
| 34 | * Standard clock functions defined in include/linux/clk.h | ||
| 35 | */ | ||
| 36 | |||
| 37 | int clk_enable(struct clk *clk) | ||
| 38 | { | ||
| 39 | unsigned long flags; | ||
| 40 | int ret; | ||
| 41 | |||
| 42 | if (clk == NULL || IS_ERR(clk)) | ||
| 43 | return -EINVAL; | ||
| 44 | |||
| 45 | if (!arch_clock || !arch_clock->clk_enable) | ||
| 46 | return -EINVAL; | ||
| 47 | |||
| 48 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 49 | ret = arch_clock->clk_enable(clk); | ||
| 50 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 51 | |||
| 52 | return ret; | ||
| 53 | } | ||
| 54 | EXPORT_SYMBOL(clk_enable); | ||
| 55 | |||
| 56 | void clk_disable(struct clk *clk) | ||
| 57 | { | ||
| 58 | unsigned long flags; | ||
| 59 | |||
| 60 | if (clk == NULL || IS_ERR(clk)) | ||
| 61 | return; | ||
| 62 | |||
| 63 | if (!arch_clock || !arch_clock->clk_disable) | ||
| 64 | return; | ||
| 65 | |||
| 66 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 67 | if (clk->usecount == 0) { | ||
| 68 | pr_err("Trying disable clock %s with 0 usecount\n", | ||
| 69 | clk->name); | ||
| 70 | WARN_ON(1); | ||
| 71 | goto out; | ||
| 72 | } | ||
| 73 | |||
| 74 | arch_clock->clk_disable(clk); | ||
| 75 | |||
| 76 | out: | ||
| 77 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 78 | } | ||
| 79 | EXPORT_SYMBOL(clk_disable); | ||
| 80 | |||
| 81 | unsigned long clk_get_rate(struct clk *clk) | ||
| 82 | { | ||
| 83 | unsigned long flags; | ||
| 84 | unsigned long ret; | ||
| 85 | |||
| 86 | if (clk == NULL || IS_ERR(clk)) | ||
| 87 | return 0; | ||
| 88 | |||
| 89 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 90 | ret = clk->rate; | ||
| 91 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 92 | |||
| 93 | return ret; | ||
| 94 | } | ||
| 95 | EXPORT_SYMBOL(clk_get_rate); | ||
| 96 | |||
| 97 | /* | ||
| 98 | * Optional clock functions defined in include/linux/clk.h | ||
| 99 | */ | ||
| 100 | |||
| 101 | long clk_round_rate(struct clk *clk, unsigned long rate) | ||
| 102 | { | ||
| 103 | unsigned long flags; | ||
| 104 | long ret; | ||
| 105 | |||
| 106 | if (clk == NULL || IS_ERR(clk)) | ||
| 107 | return 0; | ||
| 108 | |||
| 109 | if (!arch_clock || !arch_clock->clk_round_rate) | ||
| 110 | return 0; | ||
| 111 | |||
| 112 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 113 | ret = arch_clock->clk_round_rate(clk, rate); | ||
| 114 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 115 | |||
| 116 | return ret; | ||
| 117 | } | ||
| 118 | EXPORT_SYMBOL(clk_round_rate); | ||
| 119 | |||
| 120 | int clk_set_rate(struct clk *clk, unsigned long rate) | ||
| 121 | { | ||
| 122 | unsigned long flags; | ||
| 123 | int ret = -EINVAL; | ||
| 124 | |||
| 125 | if (clk == NULL || IS_ERR(clk)) | ||
| 126 | return ret; | ||
| 127 | |||
| 128 | if (!arch_clock || !arch_clock->clk_set_rate) | ||
| 129 | return ret; | ||
| 130 | |||
| 131 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 132 | ret = arch_clock->clk_set_rate(clk, rate); | ||
| 133 | if (ret == 0) | ||
| 134 | propagate_rate(clk); | ||
| 135 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 136 | |||
| 137 | return ret; | ||
| 138 | } | ||
| 139 | EXPORT_SYMBOL(clk_set_rate); | ||
| 140 | |||
| 141 | int clk_set_parent(struct clk *clk, struct clk *parent) | ||
| 142 | { | ||
| 143 | unsigned long flags; | ||
| 144 | int ret = -EINVAL; | ||
| 145 | |||
| 146 | if (clk == NULL || IS_ERR(clk) || parent == NULL || IS_ERR(parent)) | ||
| 147 | return ret; | ||
| 148 | |||
| 149 | if (!arch_clock || !arch_clock->clk_set_parent) | ||
| 150 | return ret; | ||
| 151 | |||
| 152 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 153 | if (clk->usecount == 0) { | ||
| 154 | ret = arch_clock->clk_set_parent(clk, parent); | ||
| 155 | if (ret == 0) | ||
| 156 | propagate_rate(clk); | ||
| 157 | } else | ||
| 158 | ret = -EBUSY; | ||
| 159 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 160 | |||
| 161 | return ret; | ||
| 162 | } | ||
| 163 | EXPORT_SYMBOL(clk_set_parent); | ||
| 164 | |||
| 165 | struct clk *clk_get_parent(struct clk *clk) | ||
| 166 | { | ||
| 167 | return clk->parent; | ||
| 168 | } | ||
| 169 | EXPORT_SYMBOL(clk_get_parent); | ||
| 170 | |||
| 171 | /* | ||
| 172 | * OMAP specific clock functions shared between omap1 and omap2 | ||
| 173 | */ | ||
| 174 | |||
| 175 | int __initdata mpurate; | ||
| 176 | |||
| 177 | /* | ||
| 178 | * By default we use the rate set by the bootloader. | ||
| 179 | * You can override this with mpurate= cmdline option. | ||
| 180 | */ | ||
| 181 | static int __init omap_clk_setup(char *str) | ||
| 182 | { | ||
| 183 | get_option(&str, &mpurate); | ||
| 184 | |||
| 185 | if (!mpurate) | ||
| 186 | return 1; | ||
| 187 | |||
| 188 | if (mpurate < 1000) | ||
| 189 | mpurate *= 1000000; | ||
| 190 | |||
| 191 | return 1; | ||
| 192 | } | ||
| 193 | __setup("mpurate=", omap_clk_setup); | ||
| 194 | |||
| 195 | /* Used for clocks that always have same value as the parent clock */ | ||
| 196 | unsigned long followparent_recalc(struct clk *clk) | ||
| 197 | { | ||
| 198 | return clk->parent->rate; | ||
| 199 | } | ||
| 200 | |||
| 201 | /* | ||
| 202 | * Used for clocks that have the same value as the parent clock, | ||
| 203 | * divided by some factor | ||
| 204 | */ | ||
| 205 | unsigned long omap_fixed_divisor_recalc(struct clk *clk) | ||
| 206 | { | ||
| 207 | WARN_ON(!clk->fixed_div); | ||
| 208 | |||
| 209 | return clk->parent->rate / clk->fixed_div; | ||
| 210 | } | ||
| 211 | |||
| 212 | void clk_reparent(struct clk *child, struct clk *parent) | ||
| 213 | { | ||
| 214 | list_del_init(&child->sibling); | ||
| 215 | if (parent) | ||
| 216 | list_add(&child->sibling, &parent->children); | ||
| 217 | child->parent = parent; | ||
| 218 | |||
| 219 | /* now do the debugfs renaming to reattach the child | ||
| 220 | to the proper parent */ | ||
| 221 | } | ||
| 222 | |||
| 223 | /* Propagate rate to children */ | ||
| 224 | void propagate_rate(struct clk *tclk) | ||
| 225 | { | ||
| 226 | struct clk *clkp; | ||
| 227 | |||
| 228 | list_for_each_entry(clkp, &tclk->children, sibling) { | ||
| 229 | if (clkp->recalc) | ||
| 230 | clkp->rate = clkp->recalc(clkp); | ||
| 231 | propagate_rate(clkp); | ||
| 232 | } | ||
| 233 | } | ||
| 234 | |||
| 235 | static LIST_HEAD(root_clks); | ||
| 236 | |||
| 237 | /** | ||
| 238 | * recalculate_root_clocks - recalculate and propagate all root clocks | ||
| 239 | * | ||
| 240 | * Recalculates all root clocks (clocks with no parent), which if the | ||
| 241 | * clock's .recalc is set correctly, should also propagate their rates. | ||
| 242 | * Called at init. | ||
| 243 | */ | ||
| 244 | void recalculate_root_clocks(void) | ||
| 245 | { | ||
| 246 | struct clk *clkp; | ||
| 247 | |||
| 248 | list_for_each_entry(clkp, &root_clks, sibling) { | ||
| 249 | if (clkp->recalc) | ||
| 250 | clkp->rate = clkp->recalc(clkp); | ||
| 251 | propagate_rate(clkp); | ||
| 252 | } | ||
| 253 | } | ||
| 254 | |||
| 255 | /** | ||
| 256 | * clk_preinit - initialize any fields in the struct clk before clk init | ||
| 257 | * @clk: struct clk * to initialize | ||
| 258 | * | ||
| 259 | * Initialize any struct clk fields needed before normal clk initialization | ||
| 260 | * can run. No return value. | ||
| 261 | */ | ||
| 262 | void clk_preinit(struct clk *clk) | ||
| 263 | { | ||
| 264 | INIT_LIST_HEAD(&clk->children); | ||
| 265 | } | ||
| 266 | |||
| 267 | int clk_register(struct clk *clk) | ||
| 268 | { | ||
| 269 | if (clk == NULL || IS_ERR(clk)) | ||
| 270 | return -EINVAL; | ||
| 271 | |||
| 272 | /* | ||
| 273 | * trap out already registered clocks | ||
| 274 | */ | ||
| 275 | if (clk->node.next || clk->node.prev) | ||
| 276 | return 0; | ||
| 277 | |||
| 278 | mutex_lock(&clocks_mutex); | ||
| 279 | if (clk->parent) | ||
| 280 | list_add(&clk->sibling, &clk->parent->children); | ||
| 281 | else | ||
| 282 | list_add(&clk->sibling, &root_clks); | ||
| 283 | |||
| 284 | list_add(&clk->node, &clocks); | ||
| 285 | if (clk->init) | ||
| 286 | clk->init(clk); | ||
| 287 | mutex_unlock(&clocks_mutex); | ||
| 288 | |||
| 289 | return 0; | ||
| 290 | } | ||
| 291 | EXPORT_SYMBOL(clk_register); | ||
| 292 | |||
| 293 | void clk_unregister(struct clk *clk) | ||
| 294 | { | ||
| 295 | if (clk == NULL || IS_ERR(clk)) | ||
| 296 | return; | ||
| 297 | |||
| 298 | mutex_lock(&clocks_mutex); | ||
| 299 | list_del(&clk->sibling); | ||
| 300 | list_del(&clk->node); | ||
| 301 | mutex_unlock(&clocks_mutex); | ||
| 302 | } | ||
| 303 | EXPORT_SYMBOL(clk_unregister); | ||
| 304 | |||
| 305 | void clk_enable_init_clocks(void) | ||
| 306 | { | ||
| 307 | struct clk *clkp; | ||
| 308 | |||
| 309 | list_for_each_entry(clkp, &clocks, node) { | ||
| 310 | if (clkp->flags & ENABLE_ON_INIT) | ||
| 311 | clk_enable(clkp); | ||
| 312 | } | ||
| 313 | } | ||
| 314 | |||
| 315 | int omap_clk_enable_autoidle_all(void) | ||
| 316 | { | ||
| 317 | struct clk *c; | ||
| 318 | unsigned long flags; | ||
| 319 | |||
| 320 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 321 | |||
| 322 | list_for_each_entry(c, &clocks, node) | ||
| 323 | if (c->ops->allow_idle) | ||
| 324 | c->ops->allow_idle(c); | ||
| 325 | |||
| 326 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 327 | |||
| 328 | return 0; | ||
| 329 | } | ||
| 330 | |||
| 331 | int omap_clk_disable_autoidle_all(void) | ||
| 332 | { | ||
| 333 | struct clk *c; | ||
| 334 | unsigned long flags; | ||
| 335 | |||
| 336 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 337 | |||
| 338 | list_for_each_entry(c, &clocks, node) | ||
| 339 | if (c->ops->deny_idle) | ||
| 340 | c->ops->deny_idle(c); | ||
| 341 | |||
| 342 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 343 | |||
| 344 | return 0; | ||
| 345 | } | ||
| 346 | |||
| 347 | /* | ||
| 348 | * Low level helpers | ||
| 349 | */ | ||
| 350 | static int clkll_enable_null(struct clk *clk) | ||
| 351 | { | ||
| 352 | return 0; | ||
| 353 | } | ||
| 354 | |||
| 355 | static void clkll_disable_null(struct clk *clk) | ||
| 356 | { | ||
| 357 | } | ||
| 358 | |||
| 359 | const struct clkops clkops_null = { | ||
| 360 | .enable = clkll_enable_null, | ||
| 361 | .disable = clkll_disable_null, | ||
| 362 | }; | ||
| 363 | |||
| 364 | /* | ||
| 365 | * Dummy clock | ||
| 366 | * | ||
| 367 | * Used for clock aliases that are needed on some OMAPs, but not others | ||
| 368 | */ | ||
| 369 | struct clk dummy_ck = { | ||
| 370 | .name = "dummy", | ||
| 371 | .ops = &clkops_null, | ||
| 372 | }; | ||
| 373 | |||
| 374 | /* | ||
| 375 | * | ||
| 376 | */ | ||
| 377 | |||
| 378 | #ifdef CONFIG_OMAP_RESET_CLOCKS | ||
| 379 | /* | ||
| 380 | * Disable any unused clocks left on by the bootloader | ||
| 381 | */ | ||
| 382 | static int __init clk_disable_unused(void) | ||
| 383 | { | ||
| 384 | struct clk *ck; | ||
| 385 | unsigned long flags; | ||
| 386 | |||
| 387 | if (!arch_clock || !arch_clock->clk_disable_unused) | ||
| 388 | return 0; | ||
| 389 | |||
| 390 | pr_info("clock: disabling unused clocks to save power\n"); | ||
| 391 | |||
| 392 | spin_lock_irqsave(&clockfw_lock, flags); | ||
| 393 | list_for_each_entry(ck, &clocks, node) { | ||
| 394 | if (ck->ops == &clkops_null) | ||
| 395 | continue; | ||
| 396 | |||
| 397 | if (ck->usecount > 0 || !ck->enable_reg) | ||
| 398 | continue; | ||
| 399 | |||
| 400 | arch_clock->clk_disable_unused(ck); | ||
| 401 | } | ||
| 402 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
| 403 | |||
| 404 | return 0; | ||
| 405 | } | ||
| 406 | late_initcall(clk_disable_unused); | ||
| 407 | late_initcall(omap_clk_enable_autoidle_all); | ||
| 408 | #endif | ||
| 409 | |||
| 410 | int __init clk_init(struct clk_functions * custom_clocks) | ||
| 411 | { | ||
| 412 | if (!custom_clocks) { | ||
| 413 | pr_err("No custom clock functions registered\n"); | ||
| 414 | BUG(); | ||
| 415 | } | ||
| 416 | |||
| 417 | arch_clock = custom_clocks; | ||
| 418 | |||
| 419 | return 0; | ||
| 420 | } | ||
| 421 | |||
| 422 | #if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) | ||
| 423 | /* | ||
| 424 | * debugfs support to trace clock tree hierarchy and attributes | ||
| 425 | */ | ||
| 426 | |||
| 427 | #include <linux/debugfs.h> | ||
| 428 | #include <linux/seq_file.h> | ||
| 429 | |||
| 430 | static struct dentry *clk_debugfs_root; | ||
| 431 | |||
| 432 | static int clk_dbg_show_summary(struct seq_file *s, void *unused) | ||
| 433 | { | ||
| 434 | struct clk *c; | ||
| 435 | struct clk *pa; | ||
| 436 | |||
| 437 | mutex_lock(&clocks_mutex); | ||
| 438 | seq_printf(s, "%-30s %-30s %-10s %s\n", | ||
| 439 | "clock-name", "parent-name", "rate", "use-count"); | ||
| 440 | |||
| 441 | list_for_each_entry(c, &clocks, node) { | ||
| 442 | pa = c->parent; | ||
| 443 | seq_printf(s, "%-30s %-30s %-10lu %d\n", | ||
| 444 | c->name, pa ? pa->name : "none", c->rate, c->usecount); | ||
| 445 | } | ||
| 446 | mutex_unlock(&clocks_mutex); | ||
| 447 | |||
| 448 | return 0; | ||
| 449 | } | ||
| 450 | |||
| 451 | static int clk_dbg_open(struct inode *inode, struct file *file) | ||
| 452 | { | ||
| 453 | return single_open(file, clk_dbg_show_summary, inode->i_private); | ||
| 454 | } | ||
| 455 | |||
| 456 | static const struct file_operations debug_clock_fops = { | ||
| 457 | .open = clk_dbg_open, | ||
| 458 | .read = seq_read, | ||
| 459 | .llseek = seq_lseek, | ||
| 460 | .release = single_release, | ||
| 461 | }; | ||
| 462 | |||
| 463 | static int clk_debugfs_register_one(struct clk *c) | ||
| 464 | { | ||
| 465 | int err; | ||
| 466 | struct dentry *d; | ||
| 467 | struct clk *pa = c->parent; | ||
| 468 | |||
| 469 | d = debugfs_create_dir(c->name, pa ? pa->dent : clk_debugfs_root); | ||
| 470 | if (!d) | ||
| 471 | return -ENOMEM; | ||
| 472 | c->dent = d; | ||
| 473 | |||
| 474 | d = debugfs_create_u8("usecount", S_IRUGO, c->dent, (u8 *)&c->usecount); | ||
| 475 | if (!d) { | ||
| 476 | err = -ENOMEM; | ||
| 477 | goto err_out; | ||
| 478 | } | ||
| 479 | d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate); | ||
| 480 | if (!d) { | ||
| 481 | err = -ENOMEM; | ||
| 482 | goto err_out; | ||
| 483 | } | ||
| 484 | d = debugfs_create_x32("flags", S_IRUGO, c->dent, (u32 *)&c->flags); | ||
| 485 | if (!d) { | ||
| 486 | err = -ENOMEM; | ||
| 487 | goto err_out; | ||
| 488 | } | ||
| 489 | return 0; | ||
| 490 | |||
| 491 | err_out: | ||
| 492 | debugfs_remove_recursive(c->dent); | ||
| 493 | return err; | ||
| 494 | } | ||
| 495 | |||
| 496 | static int clk_debugfs_register(struct clk *c) | ||
| 497 | { | ||
| 498 | int err; | ||
| 499 | struct clk *pa = c->parent; | ||
| 500 | |||
| 501 | if (pa && !pa->dent) { | ||
| 502 | err = clk_debugfs_register(pa); | ||
| 503 | if (err) | ||
| 504 | return err; | ||
| 505 | } | ||
| 506 | |||
| 507 | if (!c->dent) { | ||
| 508 | err = clk_debugfs_register_one(c); | ||
| 509 | if (err) | ||
| 510 | return err; | ||
| 511 | } | ||
| 512 | return 0; | ||
| 513 | } | ||
| 514 | |||
| 515 | static int __init clk_debugfs_init(void) | ||
| 516 | { | ||
| 517 | struct clk *c; | ||
| 518 | struct dentry *d; | ||
| 519 | int err; | ||
| 520 | |||
| 521 | d = debugfs_create_dir("clock", NULL); | ||
| 522 | if (!d) | ||
| 523 | return -ENOMEM; | ||
| 524 | clk_debugfs_root = d; | ||
| 525 | |||
| 526 | list_for_each_entry(c, &clocks, node) { | ||
| 527 | err = clk_debugfs_register(c); | ||
| 528 | if (err) | ||
| 529 | goto err_out; | ||
| 530 | } | ||
| 531 | |||
| 532 | d = debugfs_create_file("summary", S_IRUGO, | ||
| 533 | d, NULL, &debug_clock_fops); | ||
| 534 | if (!d) | ||
| 535 | return -ENOMEM; | ||
| 536 | |||
| 537 | return 0; | ||
| 538 | err_out: | ||
| 539 | debugfs_remove_recursive(clk_debugfs_root); | ||
| 540 | return err; | ||
| 541 | } | ||
| 542 | late_initcall(clk_debugfs_init); | ||
| 543 | |||
| 544 | #endif /* defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) */ | ||
diff --git a/arch/arm/plat-omap/common.c b/arch/arm/plat-omap/common.c deleted file mode 100644 index 111315a69354..000000000000 --- a/arch/arm/plat-omap/common.c +++ /dev/null | |||
| @@ -1,48 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * linux/arch/arm/plat-omap/common.c | ||
| 3 | * | ||
| 4 | * Code common to all OMAP machines. | ||
| 5 | * The file is created by Tony Lindgren <tony@atomide.com> | ||
| 6 | * | ||
| 7 | * Copyright (C) 2009 Texas Instruments | ||
| 8 | * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com> | ||
| 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 | #include <linux/kernel.h> | ||
| 15 | #include <linux/init.h> | ||
| 16 | #include <linux/io.h> | ||
| 17 | #include <linux/dma-mapping.h> | ||
| 18 | |||
| 19 | #include <plat/common.h> | ||
| 20 | #include <plat/vram.h> | ||
| 21 | #include <linux/platform_data/dsp-omap.h> | ||
| 22 | #include <plat/dma.h> | ||
| 23 | |||
| 24 | #include <plat/omap-secure.h> | ||
| 25 | |||
| 26 | void __init omap_reserve(void) | ||
| 27 | { | ||
| 28 | omap_vram_reserve_sdram_memblock(); | ||
| 29 | omap_dsp_reserve_sdram_memblock(); | ||
| 30 | omap_secure_ram_reserve_memblock(); | ||
| 31 | omap_barrier_reserve_memblock(); | ||
| 32 | } | ||
| 33 | |||
| 34 | void __init omap_init_consistent_dma_size(void) | ||
| 35 | { | ||
| 36 | #ifdef CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE | ||
| 37 | init_consistent_dma_size(CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE << 20); | ||
| 38 | #endif | ||
| 39 | } | ||
| 40 | |||
| 41 | /* | ||
| 42 | * Stub function for OMAP2 so that common files | ||
| 43 | * continue to build when custom builds are used | ||
| 44 | */ | ||
| 45 | int __weak omap_secure_ram_reserve_memblock(void) | ||
| 46 | { | ||
| 47 | return 0; | ||
| 48 | } | ||
diff --git a/arch/arm/plat-omap/counter_32k.c b/arch/arm/plat-omap/counter_32k.c index 87ba8dd0d791..f3771cdb9838 100644 --- a/arch/arm/plat-omap/counter_32k.c +++ b/arch/arm/plat-omap/counter_32k.c | |||
| @@ -22,9 +22,6 @@ | |||
| 22 | #include <asm/mach/time.h> | 22 | #include <asm/mach/time.h> |
| 23 | #include <asm/sched_clock.h> | 23 | #include <asm/sched_clock.h> |
| 24 | 24 | ||
| 25 | #include <plat/common.h> | ||
| 26 | #include <plat/clock.h> | ||
| 27 | |||
| 28 | /* OMAP2_32KSYNCNT_CR_OFF: offset of 32ksync counter register */ | 25 | /* OMAP2_32KSYNCNT_CR_OFF: offset of 32ksync counter register */ |
| 29 | #define OMAP2_32KSYNCNT_REV_OFF 0x0 | 26 | #define OMAP2_32KSYNCNT_REV_OFF 0x0 |
| 30 | #define OMAP2_32KSYNCNT_REV_SCHEME (0x3 << 30) | 27 | #define OMAP2_32KSYNCNT_REV_SCHEME (0x3 << 30) |
diff --git a/arch/arm/plat-omap/debug-devices.c b/arch/arm/plat-omap/debug-devices.c index 5a4678edd65a..a609e2161817 100644 --- a/arch/arm/plat-omap/debug-devices.c +++ b/arch/arm/plat-omap/debug-devices.c | |||
| @@ -15,8 +15,7 @@ | |||
| 15 | #include <linux/io.h> | 15 | #include <linux/io.h> |
| 16 | #include <linux/smc91x.h> | 16 | #include <linux/smc91x.h> |
| 17 | 17 | ||
| 18 | #include <mach/hardware.h> | 18 | #include <plat/debug-devices.h> |
| 19 | #include "../mach-omap2/debug-devices.h" | ||
| 20 | 19 | ||
| 21 | /* Many OMAP development platforms reuse the same "debug board"; these | 20 | /* Many OMAP development platforms reuse the same "debug board"; these |
| 22 | * platforms include H2, H3, H4, and Perseus2. | 21 | * platforms include H2, H3, H4, and Perseus2. |
diff --git a/arch/arm/plat-omap/debug-leds.c b/arch/arm/plat-omap/debug-leds.c index ea29bbe8e5cf..c43ea21f33b4 100644 --- a/arch/arm/plat-omap/debug-leds.c +++ b/arch/arm/plat-omap/debug-leds.c | |||
| @@ -17,16 +17,33 @@ | |||
| 17 | #include <linux/platform_data/gpio-omap.h> | 17 | #include <linux/platform_data/gpio-omap.h> |
| 18 | #include <linux/slab.h> | 18 | #include <linux/slab.h> |
| 19 | 19 | ||
| 20 | #include <mach/hardware.h> | ||
| 21 | #include <asm/mach-types.h> | 20 | #include <asm/mach-types.h> |
| 22 | 21 | ||
| 23 | #include <plat/fpga.h> | ||
| 24 | |||
| 25 | /* Many OMAP development platforms reuse the same "debug board"; these | 22 | /* Many OMAP development platforms reuse the same "debug board"; these |
| 26 | * platforms include H2, H3, H4, and Perseus2. There are 16 LEDs on the | 23 | * platforms include H2, H3, H4, and Perseus2. There are 16 LEDs on the |
| 27 | * debug board (all green), accessed through FPGA registers. | 24 | * debug board (all green), accessed through FPGA registers. |
| 28 | */ | 25 | */ |
| 29 | 26 | ||
| 27 | /* NOTE: most boards don't have a static mapping for the FPGA ... */ | ||
| 28 | struct h2p2_dbg_fpga { | ||
| 29 | /* offset 0x00 */ | ||
| 30 | u16 smc91x[8]; | ||
| 31 | /* offset 0x10 */ | ||
| 32 | u16 fpga_rev; | ||
| 33 | u16 board_rev; | ||
| 34 | u16 gpio_outputs; | ||
| 35 | u16 leds; | ||
| 36 | /* offset 0x18 */ | ||
| 37 | u16 misc_inputs; | ||
| 38 | u16 lan_status; | ||
| 39 | u16 lan_reset; | ||
| 40 | u16 reserved0; | ||
| 41 | /* offset 0x20 */ | ||
| 42 | u16 ps2_data; | ||
| 43 | u16 ps2_ctrl; | ||
| 44 | /* plus also 4 rs232 ports ... */ | ||
| 45 | }; | ||
| 46 | |||
| 30 | static struct h2p2_dbg_fpga __iomem *fpga; | 47 | static struct h2p2_dbg_fpga __iomem *fpga; |
| 31 | 48 | ||
| 32 | static u16 fpga_led_state; | 49 | static u16 fpga_led_state; |
diff --git a/arch/arm/plat-omap/dma.c b/arch/arm/plat-omap/dma.c index c76ed8bff838..c288b76f8e6c 100644 --- a/arch/arm/plat-omap/dma.c +++ b/arch/arm/plat-omap/dma.c | |||
| @@ -36,9 +36,7 @@ | |||
| 36 | #include <linux/slab.h> | 36 | #include <linux/slab.h> |
| 37 | #include <linux/delay.h> | 37 | #include <linux/delay.h> |
| 38 | 38 | ||
| 39 | #include <plat/cpu.h> | 39 | #include <plat-omap/dma-omap.h> |
| 40 | #include <plat/dma.h> | ||
| 41 | #include <plat/tc.h> | ||
| 42 | 40 | ||
| 43 | /* | 41 | /* |
| 44 | * MAX_LOGICAL_DMA_CH_COUNT: the maximum number of logical DMA | 42 | * MAX_LOGICAL_DMA_CH_COUNT: the maximum number of logical DMA |
| @@ -175,12 +173,13 @@ static inline void set_gdma_dev(int req, int dev) | |||
| 175 | #define omap_writel(val, reg) do {} while (0) | 173 | #define omap_writel(val, reg) do {} while (0) |
| 176 | #endif | 174 | #endif |
| 177 | 175 | ||
| 176 | #ifdef CONFIG_ARCH_OMAP1 | ||
| 178 | void omap_set_dma_priority(int lch, int dst_port, int priority) | 177 | void omap_set_dma_priority(int lch, int dst_port, int priority) |
| 179 | { | 178 | { |
| 180 | unsigned long reg; | 179 | unsigned long reg; |
| 181 | u32 l; | 180 | u32 l; |
| 182 | 181 | ||
| 183 | if (cpu_class_is_omap1()) { | 182 | if (dma_omap1()) { |
| 184 | switch (dst_port) { | 183 | switch (dst_port) { |
| 185 | case OMAP_DMA_PORT_OCP_T1: /* FFFECC00 */ | 184 | case OMAP_DMA_PORT_OCP_T1: /* FFFECC00 */ |
| 186 | reg = OMAP_TC_OCPT1_PRIOR; | 185 | reg = OMAP_TC_OCPT1_PRIOR; |
| @@ -203,18 +202,22 @@ void omap_set_dma_priority(int lch, int dst_port, int priority) | |||
| 203 | l |= (priority & 0xf) << 8; | 202 | l |= (priority & 0xf) << 8; |
| 204 | omap_writel(l, reg); | 203 | omap_writel(l, reg); |
| 205 | } | 204 | } |
| 205 | } | ||
| 206 | #endif | ||
| 206 | 207 | ||
| 207 | if (cpu_class_is_omap2()) { | 208 | #ifdef CONFIG_ARCH_OMAP2PLUS |
| 208 | u32 ccr; | 209 | void omap_set_dma_priority(int lch, int dst_port, int priority) |
| 210 | { | ||
| 211 | u32 ccr; | ||
| 209 | 212 | ||
| 210 | ccr = p->dma_read(CCR, lch); | 213 | ccr = p->dma_read(CCR, lch); |
| 211 | if (priority) | 214 | if (priority) |
| 212 | ccr |= (1 << 6); | 215 | ccr |= (1 << 6); |
| 213 | else | 216 | else |
| 214 | ccr &= ~(1 << 6); | 217 | ccr &= ~(1 << 6); |
| 215 | p->dma_write(ccr, CCR, lch); | 218 | p->dma_write(ccr, CCR, lch); |
| 216 | } | ||
| 217 | } | 219 | } |
| 220 | #endif | ||
| 218 | EXPORT_SYMBOL(omap_set_dma_priority); | 221 | EXPORT_SYMBOL(omap_set_dma_priority); |
| 219 | 222 | ||
| 220 | void omap_set_dma_transfer_params(int lch, int data_type, int elem_count, | 223 | void omap_set_dma_transfer_params(int lch, int data_type, int elem_count, |
| @@ -228,7 +231,7 @@ void omap_set_dma_transfer_params(int lch, int data_type, int elem_count, | |||
| 228 | l |= data_type; | 231 | l |= data_type; |
| 229 | p->dma_write(l, CSDP, lch); | 232 | p->dma_write(l, CSDP, lch); |
| 230 | 233 | ||
| 231 | if (cpu_class_is_omap1()) { | 234 | if (dma_omap1()) { |
| 232 | u16 ccr; | 235 | u16 ccr; |
| 233 | 236 | ||
| 234 | ccr = p->dma_read(CCR, lch); | 237 | ccr = p->dma_read(CCR, lch); |
| @@ -244,7 +247,7 @@ void omap_set_dma_transfer_params(int lch, int data_type, int elem_count, | |||
| 244 | p->dma_write(ccr, CCR2, lch); | 247 | p->dma_write(ccr, CCR2, lch); |
| 245 | } | 248 | } |
| 246 | 249 | ||
| 247 | if (cpu_class_is_omap2() && dma_trigger) { | 250 | if (dma_omap2plus() && dma_trigger) { |
| 248 | u32 val; | 251 | u32 val; |
| 249 | 252 | ||
| 250 | val = p->dma_read(CCR, lch); | 253 | val = p->dma_read(CCR, lch); |
| @@ -284,7 +287,7 @@ void omap_set_dma_color_mode(int lch, enum omap_dma_color_mode mode, u32 color) | |||
| 284 | { | 287 | { |
| 285 | BUG_ON(omap_dma_in_1510_mode()); | 288 | BUG_ON(omap_dma_in_1510_mode()); |
| 286 | 289 | ||
| 287 | if (cpu_class_is_omap1()) { | 290 | if (dma_omap1()) { |
| 288 | u16 w; | 291 | u16 w; |
| 289 | 292 | ||
| 290 | w = p->dma_read(CCR2, lch); | 293 | w = p->dma_read(CCR2, lch); |
| @@ -314,7 +317,7 @@ void omap_set_dma_color_mode(int lch, enum omap_dma_color_mode mode, u32 color) | |||
| 314 | p->dma_write(w, LCH_CTRL, lch); | 317 | p->dma_write(w, LCH_CTRL, lch); |
| 315 | } | 318 | } |
| 316 | 319 | ||
| 317 | if (cpu_class_is_omap2()) { | 320 | if (dma_omap2plus()) { |
| 318 | u32 val; | 321 | u32 val; |
| 319 | 322 | ||
| 320 | val = p->dma_read(CCR, lch); | 323 | val = p->dma_read(CCR, lch); |
| @@ -342,7 +345,7 @@ EXPORT_SYMBOL(omap_set_dma_color_mode); | |||
| 342 | 345 | ||
| 343 | void omap_set_dma_write_mode(int lch, enum omap_dma_write_mode mode) | 346 | void omap_set_dma_write_mode(int lch, enum omap_dma_write_mode mode) |
| 344 | { | 347 | { |
| 345 | if (cpu_class_is_omap2()) { | 348 | if (dma_omap2plus()) { |
| 346 | u32 csdp; | 349 | u32 csdp; |
| 347 | 350 | ||
| 348 | csdp = p->dma_read(CSDP, lch); | 351 | csdp = p->dma_read(CSDP, lch); |
| @@ -355,7 +358,7 @@ EXPORT_SYMBOL(omap_set_dma_write_mode); | |||
| 355 | 358 | ||
| 356 | void omap_set_dma_channel_mode(int lch, enum omap_dma_channel_mode mode) | 359 | void omap_set_dma_channel_mode(int lch, enum omap_dma_channel_mode mode) |
| 357 | { | 360 | { |
| 358 | if (cpu_class_is_omap1() && !cpu_is_omap15xx()) { | 361 | if (dma_omap1() && !dma_omap15xx()) { |
| 359 | u32 l; | 362 | u32 l; |
| 360 | 363 | ||
| 361 | l = p->dma_read(LCH_CTRL, lch); | 364 | l = p->dma_read(LCH_CTRL, lch); |
| @@ -373,7 +376,7 @@ void omap_set_dma_src_params(int lch, int src_port, int src_amode, | |||
| 373 | { | 376 | { |
| 374 | u32 l; | 377 | u32 l; |
| 375 | 378 | ||
| 376 | if (cpu_class_is_omap1()) { | 379 | if (dma_omap1()) { |
| 377 | u16 w; | 380 | u16 w; |
| 378 | 381 | ||
| 379 | w = p->dma_read(CSDP, lch); | 382 | w = p->dma_read(CSDP, lch); |
| @@ -415,7 +418,7 @@ EXPORT_SYMBOL(omap_set_dma_params); | |||
| 415 | 418 | ||
| 416 | void omap_set_dma_src_index(int lch, int eidx, int fidx) | 419 | void omap_set_dma_src_index(int lch, int eidx, int fidx) |
| 417 | { | 420 | { |
| 418 | if (cpu_class_is_omap2()) | 421 | if (dma_omap2plus()) |
| 419 | return; | 422 | return; |
| 420 | 423 | ||
| 421 | p->dma_write(eidx, CSEI, lch); | 424 | p->dma_write(eidx, CSEI, lch); |
| @@ -447,13 +450,13 @@ void omap_set_dma_src_burst_mode(int lch, enum omap_dma_burst_mode burst_mode) | |||
| 447 | case OMAP_DMA_DATA_BURST_DIS: | 450 | case OMAP_DMA_DATA_BURST_DIS: |
| 448 | break; | 451 | break; |
| 449 | case OMAP_DMA_DATA_BURST_4: | 452 | case OMAP_DMA_DATA_BURST_4: |
| 450 | if (cpu_class_is_omap2()) | 453 | if (dma_omap2plus()) |
| 451 | burst = 0x1; | 454 | burst = 0x1; |
| 452 | else | 455 | else |
| 453 | burst = 0x2; | 456 | burst = 0x2; |
| 454 | break; | 457 | break; |
| 455 | case OMAP_DMA_DATA_BURST_8: | 458 | case OMAP_DMA_DATA_BURST_8: |
| 456 | if (cpu_class_is_omap2()) { | 459 | if (dma_omap2plus()) { |
| 457 | burst = 0x2; | 460 | burst = 0x2; |
| 458 | break; | 461 | break; |
| 459 | } | 462 | } |
| @@ -463,7 +466,7 @@ void omap_set_dma_src_burst_mode(int lch, enum omap_dma_burst_mode burst_mode) | |||
| 463 | * fall through | 466 | * fall through |
| 464 | */ | 467 | */ |
| 465 | case OMAP_DMA_DATA_BURST_16: | 468 | case OMAP_DMA_DATA_BURST_16: |
| 466 | if (cpu_class_is_omap2()) { | 469 | if (dma_omap2plus()) { |
| 467 | burst = 0x3; | 470 | burst = 0x3; |
| 468 | break; | 471 | break; |
| 469 | } | 472 | } |
| @@ -487,7 +490,7 @@ void omap_set_dma_dest_params(int lch, int dest_port, int dest_amode, | |||
| 487 | { | 490 | { |
| 488 | u32 l; | 491 | u32 l; |
| 489 | 492 | ||
| 490 | if (cpu_class_is_omap1()) { | 493 | if (dma_omap1()) { |
| 491 | l = p->dma_read(CSDP, lch); | 494 | l = p->dma_read(CSDP, lch); |
| 492 | l &= ~(0x1f << 9); | 495 | l &= ~(0x1f << 9); |
| 493 | l |= dest_port << 9; | 496 | l |= dest_port << 9; |
| @@ -508,7 +511,7 @@ EXPORT_SYMBOL(omap_set_dma_dest_params); | |||
| 508 | 511 | ||
| 509 | void omap_set_dma_dest_index(int lch, int eidx, int fidx) | 512 | void omap_set_dma_dest_index(int lch, int eidx, int fidx) |
| 510 | { | 513 | { |
| 511 | if (cpu_class_is_omap2()) | 514 | if (dma_omap2plus()) |
| 512 | return; | 515 | return; |
| 513 | 516 | ||
| 514 | p->dma_write(eidx, CDEI, lch); | 517 | p->dma_write(eidx, CDEI, lch); |
| @@ -540,19 +543,19 @@ void omap_set_dma_dest_burst_mode(int lch, enum omap_dma_burst_mode burst_mode) | |||
| 540 | case OMAP_DMA_DATA_BURST_DIS: | 543 | case OMAP_DMA_DATA_BURST_DIS: |
| 541 | break; | 544 | break; |
| 542 | case OMAP_DMA_DATA_BURST_4: | 545 | case OMAP_DMA_DATA_BURST_4: |
| 543 | if (cpu_class_is_omap2()) | 546 | if (dma_omap2plus()) |
| 544 | burst = 0x1; | 547 | burst = 0x1; |
| 545 | else | 548 | else |
| 546 | burst = 0x2; | 549 | burst = 0x2; |
| 547 | break; | 550 | break; |
| 548 | case OMAP_DMA_DATA_BURST_8: | 551 | case OMAP_DMA_DATA_BURST_8: |
| 549 | if (cpu_class_is_omap2()) | 552 | if (dma_omap2plus()) |
| 550 | burst = 0x2; | 553 | burst = 0x2; |
| 551 | else | 554 | else |
| 552 | burst = 0x3; | 555 | burst = 0x3; |
| 553 | break; | 556 | break; |
| 554 | case OMAP_DMA_DATA_BURST_16: | 557 | case OMAP_DMA_DATA_BURST_16: |
| 555 | if (cpu_class_is_omap2()) { | 558 | if (dma_omap2plus()) { |
| 556 | burst = 0x3; | 559 | burst = 0x3; |
| 557 | break; | 560 | break; |
| 558 | } | 561 | } |
| @@ -573,7 +576,7 @@ EXPORT_SYMBOL(omap_set_dma_dest_burst_mode); | |||
| 573 | static inline void omap_enable_channel_irq(int lch) | 576 | static inline void omap_enable_channel_irq(int lch) |
| 574 | { | 577 | { |
| 575 | /* Clear CSR */ | 578 | /* Clear CSR */ |
| 576 | if (cpu_class_is_omap1()) | 579 | if (dma_omap1()) |
| 577 | p->dma_read(CSR, lch); | 580 | p->dma_read(CSR, lch); |
| 578 | else | 581 | else |
| 579 | p->dma_write(OMAP2_DMA_CSR_CLEAR_MASK, CSR, lch); | 582 | p->dma_write(OMAP2_DMA_CSR_CLEAR_MASK, CSR, lch); |
| @@ -587,7 +590,7 @@ static inline void omap_disable_channel_irq(int lch) | |||
| 587 | /* disable channel interrupts */ | 590 | /* disable channel interrupts */ |
| 588 | p->dma_write(0, CICR, lch); | 591 | p->dma_write(0, CICR, lch); |
| 589 | /* Clear CSR */ | 592 | /* Clear CSR */ |
| 590 | if (cpu_class_is_omap1()) | 593 | if (dma_omap1()) |
| 591 | p->dma_read(CSR, lch); | 594 | p->dma_read(CSR, lch); |
| 592 | else | 595 | else |
| 593 | p->dma_write(OMAP2_DMA_CSR_CLEAR_MASK, CSR, lch); | 596 | p->dma_write(OMAP2_DMA_CSR_CLEAR_MASK, CSR, lch); |
| @@ -611,7 +614,7 @@ static inline void enable_lnk(int lch) | |||
| 611 | 614 | ||
| 612 | l = p->dma_read(CLNK_CTRL, lch); | 615 | l = p->dma_read(CLNK_CTRL, lch); |
| 613 | 616 | ||
| 614 | if (cpu_class_is_omap1()) | 617 | if (dma_omap1()) |
| 615 | l &= ~(1 << 14); | 618 | l &= ~(1 << 14); |
| 616 | 619 | ||
| 617 | /* Set the ENABLE_LNK bits */ | 620 | /* Set the ENABLE_LNK bits */ |
| @@ -619,7 +622,7 @@ static inline void enable_lnk(int lch) | |||
| 619 | l = dma_chan[lch].next_lch | (1 << 15); | 622 | l = dma_chan[lch].next_lch | (1 << 15); |
| 620 | 623 | ||
| 621 | #ifndef CONFIG_ARCH_OMAP1 | 624 | #ifndef CONFIG_ARCH_OMAP1 |
| 622 | if (cpu_class_is_omap2()) | 625 | if (dma_omap2plus()) |
| 623 | if (dma_chan[lch].next_linked_ch != -1) | 626 | if (dma_chan[lch].next_linked_ch != -1) |
| 624 | l = dma_chan[lch].next_linked_ch | (1 << 15); | 627 | l = dma_chan[lch].next_linked_ch | (1 << 15); |
| 625 | #endif | 628 | #endif |
| @@ -636,12 +639,12 @@ static inline void disable_lnk(int lch) | |||
| 636 | /* Disable interrupts */ | 639 | /* Disable interrupts */ |
| 637 | omap_disable_channel_irq(lch); | 640 | omap_disable_channel_irq(lch); |
| 638 | 641 | ||
| 639 | if (cpu_class_is_omap1()) { | 642 | if (dma_omap1()) { |
| 640 | /* Set the STOP_LNK bit */ | 643 | /* Set the STOP_LNK bit */ |
| 641 | l |= 1 << 14; | 644 | l |= 1 << 14; |
| 642 | } | 645 | } |
| 643 | 646 | ||
| 644 | if (cpu_class_is_omap2()) { | 647 | if (dma_omap2plus()) { |
| 645 | /* Clear the ENABLE_LNK bit */ | 648 | /* Clear the ENABLE_LNK bit */ |
| 646 | l &= ~(1 << 15); | 649 | l &= ~(1 << 15); |
| 647 | } | 650 | } |
| @@ -655,7 +658,7 @@ static inline void omap2_enable_irq_lch(int lch) | |||
| 655 | u32 val; | 658 | u32 val; |
| 656 | unsigned long flags; | 659 | unsigned long flags; |
| 657 | 660 | ||
| 658 | if (!cpu_class_is_omap2()) | 661 | if (dma_omap1()) |
| 659 | return; | 662 | return; |
| 660 | 663 | ||
| 661 | spin_lock_irqsave(&dma_chan_lock, flags); | 664 | spin_lock_irqsave(&dma_chan_lock, flags); |
| @@ -673,7 +676,7 @@ static inline void omap2_disable_irq_lch(int lch) | |||
| 673 | u32 val; | 676 | u32 val; |
| 674 | unsigned long flags; | 677 | unsigned long flags; |
| 675 | 678 | ||
| 676 | if (!cpu_class_is_omap2()) | 679 | if (dma_omap1()) |
| 677 | return; | 680 | return; |
| 678 | 681 | ||
| 679 | spin_lock_irqsave(&dma_chan_lock, flags); | 682 | spin_lock_irqsave(&dma_chan_lock, flags); |
| @@ -712,7 +715,7 @@ int omap_request_dma(int dev_id, const char *dev_name, | |||
| 712 | if (p->clear_lch_regs) | 715 | if (p->clear_lch_regs) |
| 713 | p->clear_lch_regs(free_ch); | 716 | p->clear_lch_regs(free_ch); |
| 714 | 717 | ||
| 715 | if (cpu_class_is_omap2()) | 718 | if (dma_omap2plus()) |
| 716 | omap_clear_dma(free_ch); | 719 | omap_clear_dma(free_ch); |
| 717 | 720 | ||
| 718 | spin_unlock_irqrestore(&dma_chan_lock, flags); | 721 | spin_unlock_irqrestore(&dma_chan_lock, flags); |
| @@ -723,7 +726,7 @@ int omap_request_dma(int dev_id, const char *dev_name, | |||
| 723 | chan->flags = 0; | 726 | chan->flags = 0; |
| 724 | 727 | ||
| 725 | #ifndef CONFIG_ARCH_OMAP1 | 728 | #ifndef CONFIG_ARCH_OMAP1 |
| 726 | if (cpu_class_is_omap2()) { | 729 | if (dma_omap2plus()) { |
| 727 | chan->chain_id = -1; | 730 | chan->chain_id = -1; |
| 728 | chan->next_linked_ch = -1; | 731 | chan->next_linked_ch = -1; |
| 729 | } | 732 | } |
| @@ -731,13 +734,13 @@ int omap_request_dma(int dev_id, const char *dev_name, | |||
| 731 | 734 | ||
| 732 | chan->enabled_irqs = OMAP_DMA_DROP_IRQ | OMAP_DMA_BLOCK_IRQ; | 735 | chan->enabled_irqs = OMAP_DMA_DROP_IRQ | OMAP_DMA_BLOCK_IRQ; |
| 733 | 736 | ||
| 734 | if (cpu_class_is_omap1()) | 737 | if (dma_omap1()) |
| 735 | chan->enabled_irqs |= OMAP1_DMA_TOUT_IRQ; | 738 | chan->enabled_irqs |= OMAP1_DMA_TOUT_IRQ; |
| 736 | else if (cpu_class_is_omap2()) | 739 | else if (dma_omap2plus()) |
| 737 | chan->enabled_irqs |= OMAP2_DMA_MISALIGNED_ERR_IRQ | | 740 | chan->enabled_irqs |= OMAP2_DMA_MISALIGNED_ERR_IRQ | |
| 738 | OMAP2_DMA_TRANS_ERR_IRQ; | 741 | OMAP2_DMA_TRANS_ERR_IRQ; |
| 739 | 742 | ||
| 740 | if (cpu_is_omap16xx()) { | 743 | if (dma_omap16xx()) { |
| 741 | /* If the sync device is set, configure it dynamically. */ | 744 | /* If the sync device is set, configure it dynamically. */ |
| 742 | if (dev_id != 0) { | 745 | if (dev_id != 0) { |
| 743 | set_gdma_dev(free_ch + 1, dev_id); | 746 | set_gdma_dev(free_ch + 1, dev_id); |
| @@ -748,11 +751,11 @@ int omap_request_dma(int dev_id, const char *dev_name, | |||
| 748 | * id. | 751 | * id. |
| 749 | */ | 752 | */ |
| 750 | p->dma_write(dev_id | (1 << 10), CCR, free_ch); | 753 | p->dma_write(dev_id | (1 << 10), CCR, free_ch); |
| 751 | } else if (cpu_is_omap7xx() || cpu_is_omap15xx()) { | 754 | } else if (dma_omap1()) { |
| 752 | p->dma_write(dev_id, CCR, free_ch); | 755 | p->dma_write(dev_id, CCR, free_ch); |
| 753 | } | 756 | } |
| 754 | 757 | ||
| 755 | if (cpu_class_is_omap2()) { | 758 | if (dma_omap2plus()) { |
| 756 | omap_enable_channel_irq(free_ch); | 759 | omap_enable_channel_irq(free_ch); |
| 757 | omap2_enable_irq_lch(free_ch); | 760 | omap2_enable_irq_lch(free_ch); |
| 758 | } | 761 | } |
| @@ -774,7 +777,7 @@ void omap_free_dma(int lch) | |||
| 774 | } | 777 | } |
| 775 | 778 | ||
| 776 | /* Disable interrupt for logical channel */ | 779 | /* Disable interrupt for logical channel */ |
| 777 | if (cpu_class_is_omap2()) | 780 | if (dma_omap2plus()) |
| 778 | omap2_disable_irq_lch(lch); | 781 | omap2_disable_irq_lch(lch); |
| 779 | 782 | ||
| 780 | /* Disable all DMA interrupts for the channel. */ | 783 | /* Disable all DMA interrupts for the channel. */ |
| @@ -784,7 +787,7 @@ void omap_free_dma(int lch) | |||
| 784 | p->dma_write(0, CCR, lch); | 787 | p->dma_write(0, CCR, lch); |
| 785 | 788 | ||
| 786 | /* Clear registers */ | 789 | /* Clear registers */ |
| 787 | if (cpu_class_is_omap2()) | 790 | if (dma_omap2plus()) |
| 788 | omap_clear_dma(lch); | 791 | omap_clear_dma(lch); |
| 789 | 792 | ||
| 790 | spin_lock_irqsave(&dma_chan_lock, flags); | 793 | spin_lock_irqsave(&dma_chan_lock, flags); |
| @@ -810,7 +813,7 @@ omap_dma_set_global_params(int arb_rate, int max_fifo_depth, int tparams) | |||
| 810 | { | 813 | { |
| 811 | u32 reg; | 814 | u32 reg; |
| 812 | 815 | ||
| 813 | if (!cpu_class_is_omap2()) { | 816 | if (dma_omap1()) { |
| 814 | printk(KERN_ERR "FIXME: no %s on 15xx/16xx\n", __func__); | 817 | printk(KERN_ERR "FIXME: no %s on 15xx/16xx\n", __func__); |
| 815 | return; | 818 | return; |
| 816 | } | 819 | } |
| @@ -849,7 +852,7 @@ omap_dma_set_prio_lch(int lch, unsigned char read_prio, | |||
| 849 | } | 852 | } |
| 850 | l = p->dma_read(CCR, lch); | 853 | l = p->dma_read(CCR, lch); |
| 851 | l &= ~((1 << 6) | (1 << 26)); | 854 | l &= ~((1 << 6) | (1 << 26)); |
| 852 | if (cpu_class_is_omap2() && !cpu_is_omap242x()) | 855 | if (d->dev_caps & IS_RW_PRIORITY) |
| 853 | l |= ((read_prio & 0x1) << 6) | ((write_prio & 0x1) << 26); | 856 | l |= ((read_prio & 0x1) << 6) | ((write_prio & 0x1) << 26); |
| 854 | else | 857 | else |
| 855 | l |= ((read_prio & 0x1) << 6); | 858 | l |= ((read_prio & 0x1) << 6); |
| @@ -882,7 +885,7 @@ void omap_start_dma(int lch) | |||
| 882 | * The CPC/CDAC register needs to be initialized to zero | 885 | * The CPC/CDAC register needs to be initialized to zero |
| 883 | * before starting dma transfer. | 886 | * before starting dma transfer. |
| 884 | */ | 887 | */ |
| 885 | if (cpu_is_omap15xx()) | 888 | if (dma_omap15xx()) |
| 886 | p->dma_write(0, CPC, lch); | 889 | p->dma_write(0, CPC, lch); |
| 887 | else | 890 | else |
| 888 | p->dma_write(0, CDAC, lch); | 891 | p->dma_write(0, CDAC, lch); |
| @@ -1045,7 +1048,7 @@ dma_addr_t omap_get_dma_src_pos(int lch) | |||
| 1045 | { | 1048 | { |
| 1046 | dma_addr_t offset = 0; | 1049 | dma_addr_t offset = 0; |
| 1047 | 1050 | ||
| 1048 | if (cpu_is_omap15xx()) | 1051 | if (dma_omap15xx()) |
| 1049 | offset = p->dma_read(CPC, lch); | 1052 | offset = p->dma_read(CPC, lch); |
| 1050 | else | 1053 | else |
| 1051 | offset = p->dma_read(CSAC, lch); | 1054 | offset = p->dma_read(CSAC, lch); |
| @@ -1053,7 +1056,7 @@ dma_addr_t omap_get_dma_src_pos(int lch) | |||
| 1053 | if (IS_DMA_ERRATA(DMA_ERRATA_3_3) && offset == 0) | 1056 | if (IS_DMA_ERRATA(DMA_ERRATA_3_3) && offset == 0) |
| 1054 | offset = p->dma_read(CSAC, lch); | 1057 | offset = p->dma_read(CSAC, lch); |
| 1055 | 1058 | ||
| 1056 | if (!cpu_is_omap15xx()) { | 1059 | if (!dma_omap15xx()) { |
| 1057 | /* | 1060 | /* |
| 1058 | * CDAC == 0 indicates that the DMA transfer on the channel has | 1061 | * CDAC == 0 indicates that the DMA transfer on the channel has |
| 1059 | * not been started (no data has been transferred so far). | 1062 | * not been started (no data has been transferred so far). |
| @@ -1065,7 +1068,7 @@ dma_addr_t omap_get_dma_src_pos(int lch) | |||
| 1065 | offset = p->dma_read(CSSA, lch); | 1068 | offset = p->dma_read(CSSA, lch); |
| 1066 | } | 1069 | } |
| 1067 | 1070 | ||
| 1068 | if (cpu_class_is_omap1()) | 1071 | if (dma_omap1()) |
| 1069 | offset |= (p->dma_read(CSSA, lch) & 0xFFFF0000); | 1072 | offset |= (p->dma_read(CSSA, lch) & 0xFFFF0000); |
| 1070 | 1073 | ||
| 1071 | return offset; | 1074 | return offset; |
| @@ -1084,7 +1087,7 @@ dma_addr_t omap_get_dma_dst_pos(int lch) | |||
| 1084 | { | 1087 | { |
| 1085 | dma_addr_t offset = 0; | 1088 | dma_addr_t offset = 0; |
| 1086 | 1089 | ||
| 1087 | if (cpu_is_omap15xx()) | 1090 | if (dma_omap15xx()) |
| 1088 | offset = p->dma_read(CPC, lch); | 1091 | offset = p->dma_read(CPC, lch); |
| 1089 | else | 1092 | else |
| 1090 | offset = p->dma_read(CDAC, lch); | 1093 | offset = p->dma_read(CDAC, lch); |
| @@ -1093,7 +1096,7 @@ dma_addr_t omap_get_dma_dst_pos(int lch) | |||
| 1093 | * omap 3.2/3.3 erratum: sometimes 0 is returned if CSAC/CDAC is | 1096 | * omap 3.2/3.3 erratum: sometimes 0 is returned if CSAC/CDAC is |
| 1094 | * read before the DMA controller finished disabling the channel. | 1097 | * read before the DMA controller finished disabling the channel. |
| 1095 | */ | 1098 | */ |
| 1096 | if (!cpu_is_omap15xx() && offset == 0) { | 1099 | if (!dma_omap15xx() && offset == 0) { |
| 1097 | offset = p->dma_read(CDAC, lch); | 1100 | offset = p->dma_read(CDAC, lch); |
| 1098 | /* | 1101 | /* |
| 1099 | * CDAC == 0 indicates that the DMA transfer on the channel has | 1102 | * CDAC == 0 indicates that the DMA transfer on the channel has |
| @@ -1104,7 +1107,7 @@ dma_addr_t omap_get_dma_dst_pos(int lch) | |||
| 1104 | offset = p->dma_read(CDSA, lch); | 1107 | offset = p->dma_read(CDSA, lch); |
| 1105 | } | 1108 | } |
| 1106 | 1109 | ||
| 1107 | if (cpu_class_is_omap1()) | 1110 | if (dma_omap1()) |
| 1108 | offset |= (p->dma_read(CDSA, lch) & 0xFFFF0000); | 1111 | offset |= (p->dma_read(CDSA, lch) & 0xFFFF0000); |
| 1109 | 1112 | ||
| 1110 | return offset; | 1113 | return offset; |
| @@ -1121,7 +1124,7 @@ int omap_dma_running(void) | |||
| 1121 | { | 1124 | { |
| 1122 | int lch; | 1125 | int lch; |
| 1123 | 1126 | ||
| 1124 | if (cpu_class_is_omap1()) | 1127 | if (dma_omap1()) |
| 1125 | if (omap_lcd_dma_running()) | 1128 | if (omap_lcd_dma_running()) |
| 1126 | return 1; | 1129 | return 1; |
| 1127 | 1130 | ||
| @@ -2024,7 +2027,7 @@ static int __devinit omap_system_dma_probe(struct platform_device *pdev) | |||
| 2024 | dma_chan = d->chan; | 2027 | dma_chan = d->chan; |
| 2025 | enable_1510_mode = d->dev_caps & ENABLE_1510_MODE; | 2028 | enable_1510_mode = d->dev_caps & ENABLE_1510_MODE; |
| 2026 | 2029 | ||
| 2027 | if (cpu_class_is_omap2()) { | 2030 | if (dma_omap2plus()) { |
| 2028 | dma_linked_lch = kzalloc(sizeof(struct dma_link_info) * | 2031 | dma_linked_lch = kzalloc(sizeof(struct dma_link_info) * |
| 2029 | dma_lch_count, GFP_KERNEL); | 2032 | dma_lch_count, GFP_KERNEL); |
| 2030 | if (!dma_linked_lch) { | 2033 | if (!dma_linked_lch) { |
| @@ -2036,7 +2039,7 @@ static int __devinit omap_system_dma_probe(struct platform_device *pdev) | |||
| 2036 | spin_lock_init(&dma_chan_lock); | 2039 | spin_lock_init(&dma_chan_lock); |
| 2037 | for (ch = 0; ch < dma_chan_count; ch++) { | 2040 | for (ch = 0; ch < dma_chan_count; ch++) { |
| 2038 | omap_clear_dma(ch); | 2041 | omap_clear_dma(ch); |
| 2039 | if (cpu_class_is_omap2()) | 2042 | if (dma_omap2plus()) |
| 2040 | omap2_disable_irq_lch(ch); | 2043 | omap2_disable_irq_lch(ch); |
| 2041 | 2044 | ||
| 2042 | dma_chan[ch].dev_id = -1; | 2045 | dma_chan[ch].dev_id = -1; |
| @@ -2045,7 +2048,7 @@ static int __devinit omap_system_dma_probe(struct platform_device *pdev) | |||
| 2045 | if (ch >= 6 && enable_1510_mode) | 2048 | if (ch >= 6 && enable_1510_mode) |
| 2046 | continue; | 2049 | continue; |
| 2047 | 2050 | ||
| 2048 | if (cpu_class_is_omap1()) { | 2051 | if (dma_omap1()) { |
| 2049 | /* | 2052 | /* |
| 2050 | * request_irq() doesn't like dev_id (ie. ch) being | 2053 | * request_irq() doesn't like dev_id (ie. ch) being |
| 2051 | * zero, so we have to kludge around this. | 2054 | * zero, so we have to kludge around this. |
| @@ -2070,11 +2073,11 @@ static int __devinit omap_system_dma_probe(struct platform_device *pdev) | |||
| 2070 | } | 2073 | } |
| 2071 | } | 2074 | } |
| 2072 | 2075 | ||
| 2073 | if (cpu_class_is_omap2() && !cpu_is_omap242x()) | 2076 | if (d->dev_caps & IS_RW_PRIORITY) |
| 2074 | omap_dma_set_global_params(DMA_DEFAULT_ARB_RATE, | 2077 | omap_dma_set_global_params(DMA_DEFAULT_ARB_RATE, |
| 2075 | DMA_DEFAULT_FIFO_DEPTH, 0); | 2078 | DMA_DEFAULT_FIFO_DEPTH, 0); |
| 2076 | 2079 | ||
| 2077 | if (cpu_class_is_omap2()) { | 2080 | if (dma_omap2plus()) { |
| 2078 | strcpy(irq_name, "0"); | 2081 | strcpy(irq_name, "0"); |
| 2079 | dma_irq = platform_get_irq_byname(pdev, irq_name); | 2082 | dma_irq = platform_get_irq_byname(pdev, irq_name); |
| 2080 | if (dma_irq < 0) { | 2083 | if (dma_irq < 0) { |
| @@ -2089,9 +2092,8 @@ static int __devinit omap_system_dma_probe(struct platform_device *pdev) | |||
| 2089 | } | 2092 | } |
| 2090 | } | 2093 | } |
| 2091 | 2094 | ||
| 2092 | /* reserve dma channels 0 and 1 in high security devices */ | 2095 | /* reserve dma channels 0 and 1 in high security devices on 34xx */ |
| 2093 | if (cpu_is_omap34xx() && | 2096 | if (d->dev_caps & HS_CHANNELS_RESERVED) { |
| 2094 | (omap_type() != OMAP2_DEVICE_TYPE_GP)) { | ||
| 2095 | pr_info("Reserving DMA channels 0 and 1 for HS ROM code\n"); | 2097 | pr_info("Reserving DMA channels 0 and 1 for HS ROM code\n"); |
| 2096 | dma_chan[0].dev_id = 0; | 2098 | dma_chan[0].dev_id = 0; |
| 2097 | dma_chan[1].dev_id = 1; | 2099 | dma_chan[1].dev_id = 1; |
| @@ -2118,7 +2120,7 @@ static int __devexit omap_system_dma_remove(struct platform_device *pdev) | |||
| 2118 | { | 2120 | { |
| 2119 | int dma_irq; | 2121 | int dma_irq; |
| 2120 | 2122 | ||
| 2121 | if (cpu_class_is_omap2()) { | 2123 | if (dma_omap2plus()) { |
| 2122 | char irq_name[4]; | 2124 | char irq_name[4]; |
| 2123 | strcpy(irq_name, "0"); | 2125 | strcpy(irq_name, "0"); |
| 2124 | dma_irq = platform_get_irq_byname(pdev, irq_name); | 2126 | dma_irq = platform_get_irq_byname(pdev, irq_name); |
diff --git a/arch/arm/plat-omap/dmtimer.c b/arch/arm/plat-omap/dmtimer.c index 938b50a33439..82231a75abd6 100644 --- a/arch/arm/plat-omap/dmtimer.c +++ b/arch/arm/plat-omap/dmtimer.c | |||
| @@ -42,9 +42,6 @@ | |||
| 42 | #include <linux/pm_runtime.h> | 42 | #include <linux/pm_runtime.h> |
| 43 | 43 | ||
| 44 | #include <plat/dmtimer.h> | 44 | #include <plat/dmtimer.h> |
| 45 | #include <plat/omap-pm.h> | ||
| 46 | |||
| 47 | #include <mach/hardware.h> | ||
| 48 | 45 | ||
| 49 | static u32 omap_reserved_systimers; | 46 | static u32 omap_reserved_systimers; |
| 50 | static LIST_HEAD(omap_timer_list); | 47 | static LIST_HEAD(omap_timer_list); |
| @@ -271,7 +268,7 @@ int omap_dm_timer_get_irq(struct omap_dm_timer *timer) | |||
| 271 | EXPORT_SYMBOL_GPL(omap_dm_timer_get_irq); | 268 | EXPORT_SYMBOL_GPL(omap_dm_timer_get_irq); |
| 272 | 269 | ||
| 273 | #if defined(CONFIG_ARCH_OMAP1) | 270 | #if defined(CONFIG_ARCH_OMAP1) |
| 274 | 271 | #include <mach/hardware.h> | |
| 275 | /** | 272 | /** |
| 276 | * omap_dm_timer_modify_idlect_mask - Check if any running timers use ARMXOR | 273 | * omap_dm_timer_modify_idlect_mask - Check if any running timers use ARMXOR |
| 277 | * @inputmask: current value of idlect mask | 274 | * @inputmask: current value of idlect mask |
| @@ -348,7 +345,8 @@ int omap_dm_timer_start(struct omap_dm_timer *timer) | |||
| 348 | omap_dm_timer_enable(timer); | 345 | omap_dm_timer_enable(timer); |
| 349 | 346 | ||
| 350 | if (!(timer->capability & OMAP_TIMER_ALWON)) { | 347 | if (!(timer->capability & OMAP_TIMER_ALWON)) { |
| 351 | if (omap_pm_get_dev_context_loss_count(&timer->pdev->dev) != | 348 | if (timer->get_context_loss_count && |
| 349 | timer->get_context_loss_count(&timer->pdev->dev) != | ||
| 352 | timer->ctx_loss_count) | 350 | timer->ctx_loss_count) |
| 353 | omap_timer_restore_context(timer); | 351 | omap_timer_restore_context(timer); |
| 354 | } | 352 | } |
| @@ -377,9 +375,11 @@ int omap_dm_timer_stop(struct omap_dm_timer *timer) | |||
| 377 | 375 | ||
| 378 | __omap_dm_timer_stop(timer, timer->posted, rate); | 376 | __omap_dm_timer_stop(timer, timer->posted, rate); |
| 379 | 377 | ||
| 380 | if (!(timer->capability & OMAP_TIMER_ALWON)) | 378 | if (!(timer->capability & OMAP_TIMER_ALWON)) { |
| 381 | timer->ctx_loss_count = | 379 | if (timer->get_context_loss_count) |
| 382 | omap_pm_get_dev_context_loss_count(&timer->pdev->dev); | 380 | timer->ctx_loss_count = |
| 381 | timer->get_context_loss_count(&timer->pdev->dev); | ||
| 382 | } | ||
| 383 | 383 | ||
| 384 | /* | 384 | /* |
| 385 | * Since the register values are computed and written within | 385 | * Since the register values are computed and written within |
| @@ -495,7 +495,8 @@ int omap_dm_timer_set_load_start(struct omap_dm_timer *timer, int autoreload, | |||
| 495 | omap_dm_timer_enable(timer); | 495 | omap_dm_timer_enable(timer); |
| 496 | 496 | ||
| 497 | if (!(timer->capability & OMAP_TIMER_ALWON)) { | 497 | if (!(timer->capability & OMAP_TIMER_ALWON)) { |
| 498 | if (omap_pm_get_dev_context_loss_count(&timer->pdev->dev) != | 498 | if (timer->get_context_loss_count && |
| 499 | timer->get_context_loss_count(&timer->pdev->dev) != | ||
| 499 | timer->ctx_loss_count) | 500 | timer->ctx_loss_count) |
| 500 | omap_timer_restore_context(timer); | 501 | omap_timer_restore_context(timer); |
| 501 | } | 502 | } |
| @@ -729,6 +730,7 @@ static int __devinit omap_dm_timer_probe(struct platform_device *pdev) | |||
| 729 | timer->reserved = omap_dm_timer_reserved_systimer(timer->id); | 730 | timer->reserved = omap_dm_timer_reserved_systimer(timer->id); |
| 730 | timer->pdev = pdev; | 731 | timer->pdev = pdev; |
| 731 | timer->capability = pdata->timer_capability; | 732 | timer->capability = pdata->timer_capability; |
| 733 | timer->get_context_loss_count = pdata->get_context_loss_count; | ||
| 732 | 734 | ||
| 733 | /* Skip pm_runtime_enable for OMAP1 */ | 735 | /* Skip pm_runtime_enable for OMAP1 */ |
| 734 | if (!(timer->capability & OMAP_TIMER_NEEDS_RESET)) { | 736 | if (!(timer->capability & OMAP_TIMER_NEEDS_RESET)) { |
diff --git a/arch/arm/plat-omap/fb.c b/arch/arm/plat-omap/fb.c index bcbb9d5dc293..3a77b30f53d4 100644 --- a/arch/arm/plat-omap/fb.c +++ b/arch/arm/plat-omap/fb.c | |||
| @@ -30,9 +30,69 @@ | |||
| 30 | #include <linux/io.h> | 30 | #include <linux/io.h> |
| 31 | #include <linux/omapfb.h> | 31 | #include <linux/omapfb.h> |
| 32 | 32 | ||
| 33 | #include <mach/hardware.h> | ||
| 34 | #include <asm/mach/map.h> | 33 | #include <asm/mach/map.h> |
| 35 | 34 | ||
| 35 | #include <plat/cpu.h> | ||
| 36 | |||
| 37 | #ifdef CONFIG_OMAP2_VRFB | ||
| 38 | |||
| 39 | /* | ||
| 40 | * The first memory resource is the register region for VRFB, | ||
| 41 | * the rest are VRFB virtual memory areas for each VRFB context. | ||
| 42 | */ | ||
| 43 | |||
| 44 | static const struct resource omap2_vrfb_resources[] = { | ||
| 45 | DEFINE_RES_MEM_NAMED(0x68008000u, 0x40, "vrfb-regs"), | ||
| 46 | DEFINE_RES_MEM_NAMED(0x70000000u, 0x4000000, "vrfb-area-0"), | ||
| 47 | DEFINE_RES_MEM_NAMED(0x74000000u, 0x4000000, "vrfb-area-1"), | ||
| 48 | DEFINE_RES_MEM_NAMED(0x78000000u, 0x4000000, "vrfb-area-2"), | ||
| 49 | DEFINE_RES_MEM_NAMED(0x7c000000u, 0x4000000, "vrfb-area-3"), | ||
| 50 | }; | ||
| 51 | |||
| 52 | static const struct resource omap3_vrfb_resources[] = { | ||
| 53 | DEFINE_RES_MEM_NAMED(0x6C000180u, 0xc0, "vrfb-regs"), | ||
| 54 | DEFINE_RES_MEM_NAMED(0x70000000u, 0x4000000, "vrfb-area-0"), | ||
| 55 | DEFINE_RES_MEM_NAMED(0x74000000u, 0x4000000, "vrfb-area-1"), | ||
| 56 | DEFINE_RES_MEM_NAMED(0x78000000u, 0x4000000, "vrfb-area-2"), | ||
| 57 | DEFINE_RES_MEM_NAMED(0x7c000000u, 0x4000000, "vrfb-area-3"), | ||
| 58 | DEFINE_RES_MEM_NAMED(0xe0000000u, 0x4000000, "vrfb-area-4"), | ||
| 59 | DEFINE_RES_MEM_NAMED(0xe4000000u, 0x4000000, "vrfb-area-5"), | ||
| 60 | DEFINE_RES_MEM_NAMED(0xe8000000u, 0x4000000, "vrfb-area-6"), | ||
| 61 | DEFINE_RES_MEM_NAMED(0xec000000u, 0x4000000, "vrfb-area-7"), | ||
| 62 | DEFINE_RES_MEM_NAMED(0xf0000000u, 0x4000000, "vrfb-area-8"), | ||
| 63 | DEFINE_RES_MEM_NAMED(0xf4000000u, 0x4000000, "vrfb-area-9"), | ||
| 64 | DEFINE_RES_MEM_NAMED(0xf8000000u, 0x4000000, "vrfb-area-10"), | ||
| 65 | DEFINE_RES_MEM_NAMED(0xfc000000u, 0x4000000, "vrfb-area-11"), | ||
| 66 | }; | ||
| 67 | |||
| 68 | static int __init omap_init_vrfb(void) | ||
| 69 | { | ||
| 70 | struct platform_device *pdev; | ||
| 71 | const struct resource *res; | ||
| 72 | unsigned int num_res; | ||
| 73 | |||
| 74 | if (cpu_is_omap24xx()) { | ||
| 75 | res = omap2_vrfb_resources; | ||
| 76 | num_res = ARRAY_SIZE(omap2_vrfb_resources); | ||
| 77 | } else if (cpu_is_omap34xx()) { | ||
| 78 | res = omap3_vrfb_resources; | ||
| 79 | num_res = ARRAY_SIZE(omap3_vrfb_resources); | ||
| 80 | } else { | ||
| 81 | return 0; | ||
| 82 | } | ||
| 83 | |||
| 84 | pdev = platform_device_register_resndata(NULL, "omapvrfb", -1, | ||
| 85 | res, num_res, NULL, 0); | ||
| 86 | |||
| 87 | if (IS_ERR(pdev)) | ||
| 88 | return PTR_ERR(pdev); | ||
| 89 | else | ||
| 90 | return 0; | ||
| 91 | } | ||
| 92 | |||
| 93 | arch_initcall(omap_init_vrfb); | ||
| 94 | #endif | ||
| 95 | |||
| 36 | #if defined(CONFIG_FB_OMAP) || defined(CONFIG_FB_OMAP_MODULE) | 96 | #if defined(CONFIG_FB_OMAP) || defined(CONFIG_FB_OMAP_MODULE) |
| 37 | 97 | ||
| 38 | static bool omapfb_lcd_configured; | 98 | static bool omapfb_lcd_configured; |
diff --git a/arch/arm/plat-omap/i2c.c b/arch/arm/plat-omap/i2c.c index a5683a84c6ee..f9df624d108c 100644 --- a/arch/arm/plat-omap/i2c.c +++ b/arch/arm/plat-omap/i2c.c | |||
| @@ -26,160 +26,18 @@ | |||
| 26 | #include <linux/kernel.h> | 26 | #include <linux/kernel.h> |
| 27 | #include <linux/platform_device.h> | 27 | #include <linux/platform_device.h> |
| 28 | #include <linux/i2c.h> | 28 | #include <linux/i2c.h> |
| 29 | #include <linux/i2c-omap.h> | ||
| 29 | #include <linux/slab.h> | 30 | #include <linux/slab.h> |
| 30 | #include <linux/err.h> | 31 | #include <linux/err.h> |
| 31 | #include <linux/clk.h> | 32 | #include <linux/clk.h> |
| 32 | 33 | ||
| 33 | #include <mach/irqs.h> | ||
| 34 | #include <plat/i2c.h> | 34 | #include <plat/i2c.h> |
| 35 | #include <plat/omap_device.h> | ||
| 36 | 35 | ||
| 37 | #define OMAP_I2C_SIZE 0x3f | ||
| 38 | #define OMAP1_I2C_BASE 0xfffb3800 | ||
| 39 | #define OMAP1_INT_I2C (32 + 4) | ||
| 40 | |||
| 41 | static const char name[] = "omap_i2c"; | ||
| 42 | |||
| 43 | #define I2C_RESOURCE_BUILDER(base, irq) \ | ||
| 44 | { \ | ||
| 45 | .start = (base), \ | ||
| 46 | .end = (base) + OMAP_I2C_SIZE, \ | ||
| 47 | .flags = IORESOURCE_MEM, \ | ||
| 48 | }, \ | ||
| 49 | { \ | ||
| 50 | .start = (irq), \ | ||
| 51 | .flags = IORESOURCE_IRQ, \ | ||
| 52 | }, | ||
| 53 | |||
| 54 | static struct resource i2c_resources[][2] = { | ||
| 55 | { I2C_RESOURCE_BUILDER(0, 0) }, | ||
| 56 | }; | ||
| 57 | |||
| 58 | #define I2C_DEV_BUILDER(bus_id, res, data) \ | ||
| 59 | { \ | ||
| 60 | .id = (bus_id), \ | ||
| 61 | .name = name, \ | ||
| 62 | .num_resources = ARRAY_SIZE(res), \ | ||
| 63 | .resource = (res), \ | ||
| 64 | .dev = { \ | ||
| 65 | .platform_data = (data), \ | ||
| 66 | }, \ | ||
| 67 | } | ||
| 68 | |||
| 69 | #define MAX_OMAP_I2C_HWMOD_NAME_LEN 16 | ||
| 70 | #define OMAP_I2C_MAX_CONTROLLERS 4 | 36 | #define OMAP_I2C_MAX_CONTROLLERS 4 |
| 71 | static struct omap_i2c_bus_platform_data i2c_pdata[OMAP_I2C_MAX_CONTROLLERS]; | 37 | static struct omap_i2c_bus_platform_data i2c_pdata[OMAP_I2C_MAX_CONTROLLERS]; |
| 72 | static struct platform_device omap_i2c_devices[] = { | ||
| 73 | I2C_DEV_BUILDER(1, i2c_resources[0], &i2c_pdata[0]), | ||
| 74 | }; | ||
| 75 | 38 | ||
| 76 | #define OMAP_I2C_CMDLINE_SETUP (BIT(31)) | 39 | #define OMAP_I2C_CMDLINE_SETUP (BIT(31)) |
| 77 | 40 | ||
| 78 | static int __init omap_i2c_nr_ports(void) | ||
| 79 | { | ||
| 80 | int ports = 0; | ||
| 81 | |||
| 82 | if (cpu_class_is_omap1()) | ||
| 83 | ports = 1; | ||
| 84 | else if (cpu_is_omap24xx()) | ||
| 85 | ports = 2; | ||
| 86 | else if (cpu_is_omap34xx()) | ||
| 87 | ports = 3; | ||
| 88 | else if (cpu_is_omap44xx()) | ||
| 89 | ports = 4; | ||
| 90 | |||
| 91 | return ports; | ||
| 92 | } | ||
| 93 | |||
| 94 | static inline int omap1_i2c_add_bus(int bus_id) | ||
| 95 | { | ||
| 96 | struct platform_device *pdev; | ||
| 97 | struct omap_i2c_bus_platform_data *pdata; | ||
| 98 | struct resource *res; | ||
| 99 | |||
| 100 | omap1_i2c_mux_pins(bus_id); | ||
| 101 | |||
| 102 | pdev = &omap_i2c_devices[bus_id - 1]; | ||
| 103 | res = pdev->resource; | ||
| 104 | res[0].start = OMAP1_I2C_BASE; | ||
| 105 | res[0].end = res[0].start + OMAP_I2C_SIZE; | ||
| 106 | res[1].start = OMAP1_INT_I2C; | ||
| 107 | pdata = &i2c_pdata[bus_id - 1]; | ||
| 108 | |||
| 109 | /* all OMAP1 have IP version 1 register set */ | ||
| 110 | pdata->rev = OMAP_I2C_IP_VERSION_1; | ||
| 111 | |||
| 112 | /* all OMAP1 I2C are implemented like this */ | ||
| 113 | pdata->flags = OMAP_I2C_FLAG_NO_FIFO | | ||
| 114 | OMAP_I2C_FLAG_SIMPLE_CLOCK | | ||
| 115 | OMAP_I2C_FLAG_16BIT_DATA_REG | | ||
| 116 | OMAP_I2C_FLAG_ALWAYS_ARMXOR_CLK; | ||
| 117 | |||
| 118 | /* how the cpu bus is wired up differs for 7xx only */ | ||
| 119 | |||
| 120 | if (cpu_is_omap7xx()) | ||
| 121 | pdata->flags |= OMAP_I2C_FLAG_BUS_SHIFT_1; | ||
| 122 | else | ||
| 123 | pdata->flags |= OMAP_I2C_FLAG_BUS_SHIFT_2; | ||
| 124 | |||
| 125 | return platform_device_register(pdev); | ||
| 126 | } | ||
| 127 | |||
| 128 | |||
| 129 | #ifdef CONFIG_ARCH_OMAP2PLUS | ||
| 130 | static inline int omap2_i2c_add_bus(int bus_id) | ||
| 131 | { | ||
| 132 | int l; | ||
| 133 | struct omap_hwmod *oh; | ||
| 134 | struct platform_device *pdev; | ||
| 135 | char oh_name[MAX_OMAP_I2C_HWMOD_NAME_LEN]; | ||
| 136 | struct omap_i2c_bus_platform_data *pdata; | ||
| 137 | struct omap_i2c_dev_attr *dev_attr; | ||
| 138 | |||
| 139 | omap2_i2c_mux_pins(bus_id); | ||
| 140 | |||
| 141 | l = snprintf(oh_name, MAX_OMAP_I2C_HWMOD_NAME_LEN, "i2c%d", bus_id); | ||
| 142 | WARN(l >= MAX_OMAP_I2C_HWMOD_NAME_LEN, | ||
| 143 | "String buffer overflow in I2C%d device setup\n", bus_id); | ||
| 144 | oh = omap_hwmod_lookup(oh_name); | ||
| 145 | if (!oh) { | ||
| 146 | pr_err("Could not look up %s\n", oh_name); | ||
| 147 | return -EEXIST; | ||
| 148 | } | ||
| 149 | |||
| 150 | pdata = &i2c_pdata[bus_id - 1]; | ||
| 151 | /* | ||
| 152 | * pass the hwmod class's CPU-specific knowledge of I2C IP revision in | ||
| 153 | * use, and functionality implementation flags, up to the OMAP I2C | ||
| 154 | * driver via platform data | ||
| 155 | */ | ||
| 156 | pdata->rev = oh->class->rev; | ||
| 157 | |||
| 158 | dev_attr = (struct omap_i2c_dev_attr *)oh->dev_attr; | ||
| 159 | pdata->flags = dev_attr->flags; | ||
| 160 | |||
| 161 | pdev = omap_device_build(name, bus_id, oh, pdata, | ||
| 162 | sizeof(struct omap_i2c_bus_platform_data), | ||
| 163 | NULL, 0, 0); | ||
| 164 | WARN(IS_ERR(pdev), "Could not build omap_device for %s\n", name); | ||
| 165 | |||
| 166 | return PTR_RET(pdev); | ||
| 167 | } | ||
| 168 | #else | ||
| 169 | static inline int omap2_i2c_add_bus(int bus_id) | ||
| 170 | { | ||
| 171 | return 0; | ||
| 172 | } | ||
| 173 | #endif | ||
| 174 | |||
| 175 | static int __init omap_i2c_add_bus(int bus_id) | ||
| 176 | { | ||
| 177 | if (cpu_class_is_omap1()) | ||
| 178 | return omap1_i2c_add_bus(bus_id); | ||
| 179 | else | ||
| 180 | return omap2_i2c_add_bus(bus_id); | ||
| 181 | } | ||
| 182 | |||
| 183 | /** | 41 | /** |
| 184 | * omap_i2c_bus_setup - Process command line options for the I2C bus speed | 42 | * omap_i2c_bus_setup - Process command line options for the I2C bus speed |
| 185 | * @str: String of options | 43 | * @str: String of options |
| @@ -193,12 +51,11 @@ static int __init omap_i2c_add_bus(int bus_id) | |||
| 193 | */ | 51 | */ |
| 194 | static int __init omap_i2c_bus_setup(char *str) | 52 | static int __init omap_i2c_bus_setup(char *str) |
| 195 | { | 53 | { |
| 196 | int ports; | ||
| 197 | int ints[3]; | 54 | int ints[3]; |
| 198 | 55 | ||
| 199 | ports = omap_i2c_nr_ports(); | ||
| 200 | get_options(str, 3, ints); | 56 | get_options(str, 3, ints); |
| 201 | if (ints[0] < 2 || ints[1] < 1 || ints[1] > ports) | 57 | if (ints[0] < 2 || ints[1] < 1 || |
| 58 | ints[1] > OMAP_I2C_MAX_CONTROLLERS) | ||
| 202 | return 0; | 59 | return 0; |
| 203 | i2c_pdata[ints[1] - 1].clkrate = ints[2]; | 60 | i2c_pdata[ints[1] - 1].clkrate = ints[2]; |
| 204 | i2c_pdata[ints[1] - 1].clkrate |= OMAP_I2C_CMDLINE_SETUP; | 61 | i2c_pdata[ints[1] - 1].clkrate |= OMAP_I2C_CMDLINE_SETUP; |
| @@ -218,7 +75,7 @@ static int __init omap_register_i2c_bus_cmdline(void) | |||
| 218 | for (i = 0; i < ARRAY_SIZE(i2c_pdata); i++) | 75 | for (i = 0; i < ARRAY_SIZE(i2c_pdata); i++) |
| 219 | if (i2c_pdata[i].clkrate & OMAP_I2C_CMDLINE_SETUP) { | 76 | if (i2c_pdata[i].clkrate & OMAP_I2C_CMDLINE_SETUP) { |
| 220 | i2c_pdata[i].clkrate &= ~OMAP_I2C_CMDLINE_SETUP; | 77 | i2c_pdata[i].clkrate &= ~OMAP_I2C_CMDLINE_SETUP; |
| 221 | err = omap_i2c_add_bus(i + 1); | 78 | err = omap_i2c_add_bus(&i2c_pdata[i], i + 1); |
| 222 | if (err) | 79 | if (err) |
| 223 | goto out; | 80 | goto out; |
| 224 | } | 81 | } |
| @@ -243,7 +100,7 @@ int __init omap_register_i2c_bus(int bus_id, u32 clkrate, | |||
| 243 | { | 100 | { |
| 244 | int err; | 101 | int err; |
| 245 | 102 | ||
| 246 | BUG_ON(bus_id < 1 || bus_id > omap_i2c_nr_ports()); | 103 | BUG_ON(bus_id < 1 || bus_id > OMAP_I2C_MAX_CONTROLLERS); |
| 247 | 104 | ||
| 248 | if (info) { | 105 | if (info) { |
| 249 | err = i2c_register_board_info(bus_id, info, len); | 106 | err = i2c_register_board_info(bus_id, info, len); |
| @@ -256,5 +113,5 @@ int __init omap_register_i2c_bus(int bus_id, u32 clkrate, | |||
| 256 | 113 | ||
| 257 | i2c_pdata[bus_id - 1].clkrate &= ~OMAP_I2C_CMDLINE_SETUP; | 114 | i2c_pdata[bus_id - 1].clkrate &= ~OMAP_I2C_CMDLINE_SETUP; |
| 258 | 115 | ||
| 259 | return omap_i2c_add_bus(bus_id); | 116 | return omap_i2c_add_bus(&i2c_pdata[bus_id - 1], bus_id); |
| 260 | } | 117 | } |
diff --git a/arch/arm/plat-omap/include/plat/dma.h b/arch/arm/plat-omap/include/plat-omap/dma-omap.h index 0a87b052f8f7..6f506ba9e453 100644 --- a/arch/arm/plat-omap/include/plat/dma.h +++ b/arch/arm/plat-omap/include/plat-omap/dma-omap.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * arch/arm/plat-omap/include/mach/dma.h | 2 | * OMAP DMA handling defines and function |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2003 Nokia Corporation | 4 | * Copyright (C) 2003 Nokia Corporation |
| 5 | * Author: Juha Yrjölä <juha.yrjola@nokia.com> | 5 | * Author: Juha Yrjölä <juha.yrjola@nokia.com> |
| @@ -23,187 +23,8 @@ | |||
| 23 | 23 | ||
| 24 | #include <linux/platform_device.h> | 24 | #include <linux/platform_device.h> |
| 25 | 25 | ||
| 26 | /* | ||
| 27 | * TODO: These dma channel defines should go away once all | ||
| 28 | * the omap drivers hwmod adapted. | ||
| 29 | */ | ||
| 30 | |||
| 31 | /* Move omap4 specific defines to dma-44xx.h */ | ||
| 32 | #include "dma-44xx.h" | ||
| 33 | |||
| 34 | #define INT_DMA_LCD 25 | 26 | #define INT_DMA_LCD 25 |
| 35 | 27 | ||
| 36 | /* DMA channels for omap1 */ | ||
| 37 | #define OMAP_DMA_NO_DEVICE 0 | ||
| 38 | #define OMAP_DMA_MCSI1_TX 1 | ||
| 39 | #define OMAP_DMA_MCSI1_RX 2 | ||
| 40 | #define OMAP_DMA_I2C_RX 3 | ||
| 41 | #define OMAP_DMA_I2C_TX 4 | ||
| 42 | #define OMAP_DMA_EXT_NDMA_REQ 5 | ||
| 43 | #define OMAP_DMA_EXT_NDMA_REQ2 6 | ||
| 44 | #define OMAP_DMA_UWIRE_TX 7 | ||
| 45 | #define OMAP_DMA_MCBSP1_TX 8 | ||
| 46 | #define OMAP_DMA_MCBSP1_RX 9 | ||
| 47 | #define OMAP_DMA_MCBSP3_TX 10 | ||
| 48 | #define OMAP_DMA_MCBSP3_RX 11 | ||
| 49 | #define OMAP_DMA_UART1_TX 12 | ||
| 50 | #define OMAP_DMA_UART1_RX 13 | ||
| 51 | #define OMAP_DMA_UART2_TX 14 | ||
| 52 | #define OMAP_DMA_UART2_RX 15 | ||
| 53 | #define OMAP_DMA_MCBSP2_TX 16 | ||
| 54 | #define OMAP_DMA_MCBSP2_RX 17 | ||
| 55 | #define OMAP_DMA_UART3_TX 18 | ||
| 56 | #define OMAP_DMA_UART3_RX 19 | ||
| 57 | #define OMAP_DMA_CAMERA_IF_RX 20 | ||
| 58 | #define OMAP_DMA_MMC_TX 21 | ||
| 59 | #define OMAP_DMA_MMC_RX 22 | ||
| 60 | #define OMAP_DMA_NAND 23 | ||
| 61 | #define OMAP_DMA_IRQ_LCD_LINE 24 | ||
| 62 | #define OMAP_DMA_MEMORY_STICK 25 | ||
| 63 | #define OMAP_DMA_USB_W2FC_RX0 26 | ||
| 64 | #define OMAP_DMA_USB_W2FC_RX1 27 | ||
| 65 | #define OMAP_DMA_USB_W2FC_RX2 28 | ||
| 66 | #define OMAP_DMA_USB_W2FC_TX0 29 | ||
| 67 | #define OMAP_DMA_USB_W2FC_TX1 30 | ||
| 68 | #define OMAP_DMA_USB_W2FC_TX2 31 | ||
| 69 | |||
| 70 | /* These are only for 1610 */ | ||
| 71 | #define OMAP_DMA_CRYPTO_DES_IN 32 | ||
| 72 | #define OMAP_DMA_SPI_TX 33 | ||
| 73 | #define OMAP_DMA_SPI_RX 34 | ||
| 74 | #define OMAP_DMA_CRYPTO_HASH 35 | ||
| 75 | #define OMAP_DMA_CCP_ATTN 36 | ||
| 76 | #define OMAP_DMA_CCP_FIFO_NOT_EMPTY 37 | ||
| 77 | #define OMAP_DMA_CMT_APE_TX_CHAN_0 38 | ||
| 78 | #define OMAP_DMA_CMT_APE_RV_CHAN_0 39 | ||
| 79 | #define OMAP_DMA_CMT_APE_TX_CHAN_1 40 | ||
| 80 | #define OMAP_DMA_CMT_APE_RV_CHAN_1 41 | ||
| 81 | #define OMAP_DMA_CMT_APE_TX_CHAN_2 42 | ||
| 82 | #define OMAP_DMA_CMT_APE_RV_CHAN_2 43 | ||
| 83 | #define OMAP_DMA_CMT_APE_TX_CHAN_3 44 | ||
| 84 | #define OMAP_DMA_CMT_APE_RV_CHAN_3 45 | ||
| 85 | #define OMAP_DMA_CMT_APE_TX_CHAN_4 46 | ||
| 86 | #define OMAP_DMA_CMT_APE_RV_CHAN_4 47 | ||
| 87 | #define OMAP_DMA_CMT_APE_TX_CHAN_5 48 | ||
| 88 | #define OMAP_DMA_CMT_APE_RV_CHAN_5 49 | ||
| 89 | #define OMAP_DMA_CMT_APE_TX_CHAN_6 50 | ||
| 90 | #define OMAP_DMA_CMT_APE_RV_CHAN_6 51 | ||
| 91 | #define OMAP_DMA_CMT_APE_TX_CHAN_7 52 | ||
| 92 | #define OMAP_DMA_CMT_APE_RV_CHAN_7 53 | ||
| 93 | #define OMAP_DMA_MMC2_TX 54 | ||
| 94 | #define OMAP_DMA_MMC2_RX 55 | ||
| 95 | #define OMAP_DMA_CRYPTO_DES_OUT 56 | ||
| 96 | |||
| 97 | /* DMA channels for 24xx */ | ||
| 98 | #define OMAP24XX_DMA_NO_DEVICE 0 | ||
| 99 | #define OMAP24XX_DMA_XTI_DMA 1 /* S_DMA_0 */ | ||
| 100 | #define OMAP24XX_DMA_EXT_DMAREQ0 2 /* S_DMA_1 */ | ||
| 101 | #define OMAP24XX_DMA_EXT_DMAREQ1 3 /* S_DMA_2 */ | ||
| 102 | #define OMAP24XX_DMA_GPMC 4 /* S_DMA_3 */ | ||
| 103 | #define OMAP24XX_DMA_GFX 5 /* S_DMA_4 */ | ||
| 104 | #define OMAP24XX_DMA_DSS 6 /* S_DMA_5 */ | ||
| 105 | #define OMAP242X_DMA_VLYNQ_TX 7 /* S_DMA_6 */ | ||
| 106 | #define OMAP24XX_DMA_EXT_DMAREQ2 7 /* S_DMA_6 */ | ||
| 107 | #define OMAP24XX_DMA_CWT 8 /* S_DMA_7 */ | ||
| 108 | #define OMAP24XX_DMA_AES_TX 9 /* S_DMA_8 */ | ||
| 109 | #define OMAP24XX_DMA_AES_RX 10 /* S_DMA_9 */ | ||
| 110 | #define OMAP24XX_DMA_DES_TX 11 /* S_DMA_10 */ | ||
| 111 | #define OMAP24XX_DMA_DES_RX 12 /* S_DMA_11 */ | ||
| 112 | #define OMAP24XX_DMA_SHA1MD5_RX 13 /* S_DMA_12 */ | ||
| 113 | #define OMAP34XX_DMA_SHA2MD5_RX 13 /* S_DMA_12 */ | ||
| 114 | #define OMAP242X_DMA_EXT_DMAREQ2 14 /* S_DMA_13 */ | ||
| 115 | #define OMAP242X_DMA_EXT_DMAREQ3 15 /* S_DMA_14 */ | ||
| 116 | #define OMAP242X_DMA_EXT_DMAREQ4 16 /* S_DMA_15 */ | ||
| 117 | #define OMAP242X_DMA_EAC_AC_RD 17 /* S_DMA_16 */ | ||
| 118 | #define OMAP242X_DMA_EAC_AC_WR 18 /* S_DMA_17 */ | ||
| 119 | #define OMAP242X_DMA_EAC_MD_UL_RD 19 /* S_DMA_18 */ | ||
| 120 | #define OMAP242X_DMA_EAC_MD_UL_WR 20 /* S_DMA_19 */ | ||
| 121 | #define OMAP242X_DMA_EAC_MD_DL_RD 21 /* S_DMA_20 */ | ||
| 122 | #define OMAP242X_DMA_EAC_MD_DL_WR 22 /* S_DMA_21 */ | ||
| 123 | #define OMAP242X_DMA_EAC_BT_UL_RD 23 /* S_DMA_22 */ | ||
| 124 | #define OMAP242X_DMA_EAC_BT_UL_WR 24 /* S_DMA_23 */ | ||
| 125 | #define OMAP242X_DMA_EAC_BT_DL_RD 25 /* S_DMA_24 */ | ||
| 126 | #define OMAP242X_DMA_EAC_BT_DL_WR 26 /* S_DMA_25 */ | ||
| 127 | #define OMAP243X_DMA_EXT_DMAREQ3 14 /* S_DMA_13 */ | ||
| 128 | #define OMAP24XX_DMA_SPI3_TX0 15 /* S_DMA_14 */ | ||
| 129 | #define OMAP24XX_DMA_SPI3_RX0 16 /* S_DMA_15 */ | ||
| 130 | #define OMAP24XX_DMA_MCBSP3_TX 17 /* S_DMA_16 */ | ||
| 131 | #define OMAP24XX_DMA_MCBSP3_RX 18 /* S_DMA_17 */ | ||
| 132 | #define OMAP24XX_DMA_MCBSP4_TX 19 /* S_DMA_18 */ | ||
| 133 | #define OMAP24XX_DMA_MCBSP4_RX 20 /* S_DMA_19 */ | ||
| 134 | #define OMAP24XX_DMA_MCBSP5_TX 21 /* S_DMA_20 */ | ||
| 135 | #define OMAP24XX_DMA_MCBSP5_RX 22 /* S_DMA_21 */ | ||
| 136 | #define OMAP24XX_DMA_SPI3_TX1 23 /* S_DMA_22 */ | ||
| 137 | #define OMAP24XX_DMA_SPI3_RX1 24 /* S_DMA_23 */ | ||
| 138 | #define OMAP243X_DMA_EXT_DMAREQ4 25 /* S_DMA_24 */ | ||
| 139 | #define OMAP243X_DMA_EXT_DMAREQ5 26 /* S_DMA_25 */ | ||
| 140 | #define OMAP34XX_DMA_I2C3_TX 25 /* S_DMA_24 */ | ||
| 141 | #define OMAP34XX_DMA_I2C3_RX 26 /* S_DMA_25 */ | ||
| 142 | #define OMAP24XX_DMA_I2C1_TX 27 /* S_DMA_26 */ | ||
| 143 | #define OMAP24XX_DMA_I2C1_RX 28 /* S_DMA_27 */ | ||
| 144 | #define OMAP24XX_DMA_I2C2_TX 29 /* S_DMA_28 */ | ||
| 145 | #define OMAP24XX_DMA_I2C2_RX 30 /* S_DMA_29 */ | ||
| 146 | #define OMAP24XX_DMA_MCBSP1_TX 31 /* S_DMA_30 */ | ||
| 147 | #define OMAP24XX_DMA_MCBSP1_RX 32 /* S_DMA_31 */ | ||
| 148 | #define OMAP24XX_DMA_MCBSP2_TX 33 /* S_DMA_32 */ | ||
| 149 | #define OMAP24XX_DMA_MCBSP2_RX 34 /* S_DMA_33 */ | ||
| 150 | #define OMAP24XX_DMA_SPI1_TX0 35 /* S_DMA_34 */ | ||
| 151 | #define OMAP24XX_DMA_SPI1_RX0 36 /* S_DMA_35 */ | ||
| 152 | #define OMAP24XX_DMA_SPI1_TX1 37 /* S_DMA_36 */ | ||
| 153 | #define OMAP24XX_DMA_SPI1_RX1 38 /* S_DMA_37 */ | ||
| 154 | #define OMAP24XX_DMA_SPI1_TX2 39 /* S_DMA_38 */ | ||
| 155 | #define OMAP24XX_DMA_SPI1_RX2 40 /* S_DMA_39 */ | ||
| 156 | #define OMAP24XX_DMA_SPI1_TX3 41 /* S_DMA_40 */ | ||
| 157 | #define OMAP24XX_DMA_SPI1_RX3 42 /* S_DMA_41 */ | ||
| 158 | #define OMAP24XX_DMA_SPI2_TX0 43 /* S_DMA_42 */ | ||
| 159 | #define OMAP24XX_DMA_SPI2_RX0 44 /* S_DMA_43 */ | ||
| 160 | #define OMAP24XX_DMA_SPI2_TX1 45 /* S_DMA_44 */ | ||
| 161 | #define OMAP24XX_DMA_SPI2_RX1 46 /* S_DMA_45 */ | ||
| 162 | #define OMAP24XX_DMA_MMC2_TX 47 /* S_DMA_46 */ | ||
| 163 | #define OMAP24XX_DMA_MMC2_RX 48 /* S_DMA_47 */ | ||
| 164 | #define OMAP24XX_DMA_UART1_TX 49 /* S_DMA_48 */ | ||
| 165 | #define OMAP24XX_DMA_UART1_RX 50 /* S_DMA_49 */ | ||
| 166 | #define OMAP24XX_DMA_UART2_TX 51 /* S_DMA_50 */ | ||
| 167 | #define OMAP24XX_DMA_UART2_RX 52 /* S_DMA_51 */ | ||
| 168 | #define OMAP24XX_DMA_UART3_TX 53 /* S_DMA_52 */ | ||
| 169 | #define OMAP24XX_DMA_UART3_RX 54 /* S_DMA_53 */ | ||
| 170 | #define OMAP24XX_DMA_USB_W2FC_TX0 55 /* S_DMA_54 */ | ||
| 171 | #define OMAP24XX_DMA_USB_W2FC_RX0 56 /* S_DMA_55 */ | ||
| 172 | #define OMAP24XX_DMA_USB_W2FC_TX1 57 /* S_DMA_56 */ | ||
| 173 | #define OMAP24XX_DMA_USB_W2FC_RX1 58 /* S_DMA_57 */ | ||
| 174 | #define OMAP24XX_DMA_USB_W2FC_TX2 59 /* S_DMA_58 */ | ||
| 175 | #define OMAP24XX_DMA_USB_W2FC_RX2 60 /* S_DMA_59 */ | ||
| 176 | #define OMAP24XX_DMA_MMC1_TX 61 /* S_DMA_60 */ | ||
| 177 | #define OMAP24XX_DMA_MMC1_RX 62 /* S_DMA_61 */ | ||
| 178 | #define OMAP24XX_DMA_MS 63 /* S_DMA_62 */ | ||
| 179 | #define OMAP242X_DMA_EXT_DMAREQ5 64 /* S_DMA_63 */ | ||
| 180 | #define OMAP243X_DMA_EXT_DMAREQ6 64 /* S_DMA_63 */ | ||
| 181 | #define OMAP34XX_DMA_EXT_DMAREQ3 64 /* S_DMA_63 */ | ||
| 182 | #define OMAP34XX_DMA_AES2_TX 65 /* S_DMA_64 */ | ||
| 183 | #define OMAP34XX_DMA_AES2_RX 66 /* S_DMA_65 */ | ||
| 184 | #define OMAP34XX_DMA_DES2_TX 67 /* S_DMA_66 */ | ||
| 185 | #define OMAP34XX_DMA_DES2_RX 68 /* S_DMA_67 */ | ||
| 186 | #define OMAP34XX_DMA_SHA1MD5_RX 69 /* S_DMA_68 */ | ||
| 187 | #define OMAP34XX_DMA_SPI4_TX0 70 /* S_DMA_69 */ | ||
| 188 | #define OMAP34XX_DMA_SPI4_RX0 71 /* S_DMA_70 */ | ||
| 189 | #define OMAP34XX_DSS_DMA0 72 /* S_DMA_71 */ | ||
| 190 | #define OMAP34XX_DSS_DMA1 73 /* S_DMA_72 */ | ||
| 191 | #define OMAP34XX_DSS_DMA2 74 /* S_DMA_73 */ | ||
| 192 | #define OMAP34XX_DSS_DMA3 75 /* S_DMA_74 */ | ||
| 193 | #define OMAP34XX_DMA_MMC3_TX 77 /* S_DMA_76 */ | ||
| 194 | #define OMAP34XX_DMA_MMC3_RX 78 /* S_DMA_77 */ | ||
| 195 | #define OMAP34XX_DMA_USIM_TX 79 /* S_DMA_78 */ | ||
| 196 | #define OMAP34XX_DMA_USIM_RX 80 /* S_DMA_79 */ | ||
| 197 | |||
| 198 | #define OMAP36XX_DMA_UART4_TX 81 /* S_DMA_80 */ | ||
| 199 | #define OMAP36XX_DMA_UART4_RX 82 /* S_DMA_81 */ | ||
| 200 | |||
| 201 | /* Only for AM35xx */ | ||
| 202 | #define AM35XX_DMA_UART4_TX 54 | ||
| 203 | #define AM35XX_DMA_UART4_RX 55 | ||
| 204 | |||
| 205 | /*----------------------------------------------------------------------------*/ | ||
| 206 | |||
| 207 | #define OMAP1_DMA_TOUT_IRQ (1 << 0) | 28 | #define OMAP1_DMA_TOUT_IRQ (1 << 0) |
| 208 | #define OMAP_DMA_DROP_IRQ (1 << 1) | 29 | #define OMAP_DMA_DROP_IRQ (1 << 1) |
| 209 | #define OMAP_DMA_HALF_IRQ (1 << 2) | 30 | #define OMAP_DMA_HALF_IRQ (1 << 2) |
| @@ -309,10 +130,12 @@ | |||
| 309 | #define SRC_PORT BIT(0x7) | 130 | #define SRC_PORT BIT(0x7) |
| 310 | #define DST_PORT BIT(0x8) | 131 | #define DST_PORT BIT(0x8) |
| 311 | #define SRC_INDEX BIT(0x9) | 132 | #define SRC_INDEX BIT(0x9) |
| 312 | #define DST_INDEX BIT(0xA) | 133 | #define DST_INDEX BIT(0xa) |
| 313 | #define IS_BURST_ONLY4 BIT(0xB) | 134 | #define IS_BURST_ONLY4 BIT(0xb) |
| 314 | #define CLEAR_CSR_ON_READ BIT(0xC) | 135 | #define CLEAR_CSR_ON_READ BIT(0xc) |
| 315 | #define IS_WORD_16 BIT(0xD) | 136 | #define IS_WORD_16 BIT(0xd) |
| 137 | #define ENABLE_16XX_MODE BIT(0xe) | ||
| 138 | #define HS_CHANNELS_RESERVED BIT(0xf) | ||
| 316 | 139 | ||
| 317 | /* Defines for DMA Capabilities */ | 140 | /* Defines for DMA Capabilities */ |
| 318 | #define DMA_HAS_TRANSPARENT_CAPS (0x1 << 18) | 141 | #define DMA_HAS_TRANSPARENT_CAPS (0x1 << 18) |
| @@ -449,7 +272,15 @@ struct omap_system_dma_plat_info { | |||
| 449 | u32 (*dma_read)(int reg, int lch); | 272 | u32 (*dma_read)(int reg, int lch); |
| 450 | }; | 273 | }; |
| 451 | 274 | ||
| 452 | extern void __init omap_init_consistent_dma_size(void); | 275 | #ifdef CONFIG_ARCH_OMAP2PLUS |
| 276 | #define dma_omap2plus() 1 | ||
| 277 | #else | ||
| 278 | #define dma_omap2plus() 0 | ||
| 279 | #endif | ||
| 280 | #define dma_omap1() (!dma_omap2plus()) | ||
| 281 | #define dma_omap15xx() ((dma_omap1() && (d->dev_caps & ENABLE_1510_MODE))) | ||
| 282 | #define dma_omap16xx() ((dma_omap1() && (d->dev_caps & ENABLE_16XX_MODE))) | ||
| 283 | |||
| 453 | extern void omap_set_dma_priority(int lch, int dst_port, int priority); | 284 | extern void omap_set_dma_priority(int lch, int dst_port, int priority); |
| 454 | extern int omap_request_dma(int dev_id, const char *dev_name, | 285 | extern int omap_request_dma(int dev_id, const char *dev_name, |
| 455 | void (*callback)(int lch, u16 ch_status, void *data), | 286 | void (*callback)(int lch, u16 ch_status, void *data), |
diff --git a/arch/arm/plat-omap/include/plat/clkdev_omap.h b/arch/arm/plat-omap/include/plat/clkdev_omap.h deleted file mode 100644 index 025d85a3ee86..000000000000 --- a/arch/arm/plat-omap/include/plat/clkdev_omap.h +++ /dev/null | |||
| @@ -1,51 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * clkdev <-> OMAP integration | ||
| 3 | * | ||
| 4 | * Russell King <linux@arm.linux.org.uk> | ||
| 5 | * | ||
| 6 | */ | ||
| 7 | |||
| 8 | #ifndef __ARCH_ARM_PLAT_OMAP_INCLUDE_PLAT_CLKDEV_OMAP_H | ||
| 9 | #define __ARCH_ARM_PLAT_OMAP_INCLUDE_PLAT_CLKDEV_OMAP_H | ||
| 10 | |||
| 11 | #include <linux/clkdev.h> | ||
| 12 | |||
| 13 | struct omap_clk { | ||
| 14 | u16 cpu; | ||
| 15 | struct clk_lookup lk; | ||
| 16 | }; | ||
| 17 | |||
| 18 | #define CLK(dev, con, ck, cp) \ | ||
| 19 | { \ | ||
| 20 | .cpu = cp, \ | ||
| 21 | .lk = { \ | ||
| 22 | .dev_id = dev, \ | ||
| 23 | .con_id = con, \ | ||
| 24 | .clk = ck, \ | ||
| 25 | }, \ | ||
| 26 | } | ||
| 27 | |||
| 28 | /* Platform flags for the clkdev-OMAP integration code */ | ||
| 29 | #define CK_310 (1 << 0) | ||
| 30 | #define CK_7XX (1 << 1) /* 7xx, 850 */ | ||
| 31 | #define CK_1510 (1 << 2) | ||
| 32 | #define CK_16XX (1 << 3) /* 16xx, 17xx, 5912 */ | ||
| 33 | #define CK_242X (1 << 4) | ||
| 34 | #define CK_243X (1 << 5) /* 243x, 253x */ | ||
| 35 | #define CK_3430ES1 (1 << 6) /* 34xxES1 only */ | ||
| 36 | #define CK_3430ES2PLUS (1 << 7) /* 34xxES2, ES3, non-Sitara 35xx only */ | ||
| 37 | #define CK_AM35XX (1 << 9) /* Sitara AM35xx */ | ||
| 38 | #define CK_36XX (1 << 10) /* 36xx/37xx-specific clocks */ | ||
| 39 | #define CK_443X (1 << 11) | ||
| 40 | #define CK_TI816X (1 << 12) | ||
| 41 | #define CK_446X (1 << 13) | ||
| 42 | #define CK_AM33XX (1 << 14) /* AM33xx specific clocks */ | ||
| 43 | #define CK_1710 (1 << 15) /* 1710 extra for rate selection */ | ||
| 44 | |||
| 45 | |||
| 46 | #define CK_34XX (CK_3430ES1 | CK_3430ES2PLUS) | ||
| 47 | #define CK_3XXX (CK_34XX | CK_AM35XX | CK_36XX) | ||
| 48 | |||
| 49 | |||
| 50 | #endif | ||
| 51 | |||
diff --git a/arch/arm/plat-omap/include/plat/clock.h b/arch/arm/plat-omap/include/plat/clock.h deleted file mode 100644 index e2e2d045e428..000000000000 --- a/arch/arm/plat-omap/include/plat/clock.h +++ /dev/null | |||
| @@ -1,309 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * OMAP clock: data structure definitions, function prototypes, shared macros | ||
| 3 | * | ||
| 4 | * Copyright (C) 2004-2005, 2008-2010 Nokia Corporation | ||
| 5 | * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com> | ||
| 6 | * Based on clocks.h by Tony Lindgren, Gordon McNutt and RidgeRun, Inc | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License version 2 as | ||
| 10 | * published by the Free Software Foundation. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #ifndef __ARCH_ARM_OMAP_CLOCK_H | ||
| 14 | #define __ARCH_ARM_OMAP_CLOCK_H | ||
| 15 | |||
| 16 | #include <linux/list.h> | ||
| 17 | |||
| 18 | struct module; | ||
| 19 | struct clk; | ||
| 20 | struct clockdomain; | ||
| 21 | |||
| 22 | /* Temporary, needed during the common clock framework conversion */ | ||
| 23 | #define __clk_get_name(clk) (clk->name) | ||
| 24 | #define __clk_get_parent(clk) (clk->parent) | ||
| 25 | #define __clk_get_rate(clk) (clk->rate) | ||
| 26 | |||
| 27 | /** | ||
| 28 | * struct clkops - some clock function pointers | ||
| 29 | * @enable: fn ptr that enables the current clock in hardware | ||
| 30 | * @disable: fn ptr that enables the current clock in hardware | ||
| 31 | * @find_idlest: function returning the IDLEST register for the clock's IP blk | ||
| 32 | * @find_companion: function returning the "companion" clk reg for the clock | ||
| 33 | * @allow_idle: fn ptr that enables autoidle for the current clock in hardware | ||
| 34 | * @deny_idle: fn ptr that disables autoidle for the current clock in hardware | ||
| 35 | * | ||
| 36 | * A "companion" clk is an accompanying clock to the one being queried | ||
| 37 | * that must be enabled for the IP module connected to the clock to | ||
| 38 | * become accessible by the hardware. Neither @find_idlest nor | ||
| 39 | * @find_companion should be needed; that information is IP | ||
| 40 | * block-specific; the hwmod code has been created to handle this, but | ||
| 41 | * until hwmod data is ready and drivers have been converted to use PM | ||
| 42 | * runtime calls in place of clk_enable()/clk_disable(), @find_idlest and | ||
| 43 | * @find_companion must, unfortunately, remain. | ||
| 44 | */ | ||
| 45 | struct clkops { | ||
| 46 | int (*enable)(struct clk *); | ||
| 47 | void (*disable)(struct clk *); | ||
| 48 | void (*find_idlest)(struct clk *, void __iomem **, | ||
| 49 | u8 *, u8 *); | ||
| 50 | void (*find_companion)(struct clk *, void __iomem **, | ||
| 51 | u8 *); | ||
| 52 | void (*allow_idle)(struct clk *); | ||
| 53 | void (*deny_idle)(struct clk *); | ||
| 54 | }; | ||
| 55 | |||
| 56 | #ifdef CONFIG_ARCH_OMAP2PLUS | ||
| 57 | |||
| 58 | /* struct clksel_rate.flags possibilities */ | ||
| 59 | #define RATE_IN_242X (1 << 0) | ||
| 60 | #define RATE_IN_243X (1 << 1) | ||
| 61 | #define RATE_IN_3430ES1 (1 << 2) /* 3430ES1 rates only */ | ||
| 62 | #define RATE_IN_3430ES2PLUS (1 << 3) /* 3430 ES >= 2 rates only */ | ||
| 63 | #define RATE_IN_36XX (1 << 4) | ||
| 64 | #define RATE_IN_4430 (1 << 5) | ||
| 65 | #define RATE_IN_TI816X (1 << 6) | ||
| 66 | #define RATE_IN_4460 (1 << 7) | ||
| 67 | #define RATE_IN_AM33XX (1 << 8) | ||
| 68 | #define RATE_IN_TI814X (1 << 9) | ||
| 69 | |||
| 70 | #define RATE_IN_24XX (RATE_IN_242X | RATE_IN_243X) | ||
| 71 | #define RATE_IN_34XX (RATE_IN_3430ES1 | RATE_IN_3430ES2PLUS) | ||
| 72 | #define RATE_IN_3XXX (RATE_IN_34XX | RATE_IN_36XX) | ||
| 73 | #define RATE_IN_44XX (RATE_IN_4430 | RATE_IN_4460) | ||
| 74 | |||
| 75 | /* RATE_IN_3430ES2PLUS_36XX includes 34xx/35xx with ES >=2, and all 36xx/37xx */ | ||
| 76 | #define RATE_IN_3430ES2PLUS_36XX (RATE_IN_3430ES2PLUS | RATE_IN_36XX) | ||
| 77 | |||
| 78 | |||
| 79 | /** | ||
| 80 | * struct clksel_rate - register bitfield values corresponding to clk divisors | ||
| 81 | * @val: register bitfield value (shifted to bit 0) | ||
| 82 | * @div: clock divisor corresponding to @val | ||
| 83 | * @flags: (see "struct clksel_rate.flags possibilities" above) | ||
| 84 | * | ||
| 85 | * @val should match the value of a read from struct clk.clksel_reg | ||
| 86 | * AND'ed with struct clk.clksel_mask, shifted right to bit 0. | ||
| 87 | * | ||
| 88 | * @div is the divisor that should be applied to the parent clock's rate | ||
| 89 | * to produce the current clock's rate. | ||
| 90 | */ | ||
| 91 | struct clksel_rate { | ||
| 92 | u32 val; | ||
| 93 | u8 div; | ||
| 94 | u16 flags; | ||
| 95 | }; | ||
| 96 | |||
| 97 | /** | ||
| 98 | * struct clksel - available parent clocks, and a pointer to their divisors | ||
| 99 | * @parent: struct clk * to a possible parent clock | ||
| 100 | * @rates: available divisors for this parent clock | ||
| 101 | * | ||
| 102 | * A struct clksel is always associated with one or more struct clks | ||
| 103 | * and one or more struct clksel_rates. | ||
| 104 | */ | ||
| 105 | struct clksel { | ||
| 106 | struct clk *parent; | ||
| 107 | const struct clksel_rate *rates; | ||
| 108 | }; | ||
| 109 | |||
| 110 | /** | ||
| 111 | * struct dpll_data - DPLL registers and integration data | ||
| 112 | * @mult_div1_reg: register containing the DPLL M and N bitfields | ||
| 113 | * @mult_mask: mask of the DPLL M bitfield in @mult_div1_reg | ||
| 114 | * @div1_mask: mask of the DPLL N bitfield in @mult_div1_reg | ||
| 115 | * @clk_bypass: struct clk pointer to the clock's bypass clock input | ||
| 116 | * @clk_ref: struct clk pointer to the clock's reference clock input | ||
| 117 | * @control_reg: register containing the DPLL mode bitfield | ||
| 118 | * @enable_mask: mask of the DPLL mode bitfield in @control_reg | ||
| 119 | * @last_rounded_rate: cache of the last rate result of omap2_dpll_round_rate() | ||
| 120 | * @last_rounded_m: cache of the last M result of omap2_dpll_round_rate() | ||
| 121 | * @max_multiplier: maximum valid non-bypass multiplier value (actual) | ||
| 122 | * @last_rounded_n: cache of the last N result of omap2_dpll_round_rate() | ||
| 123 | * @min_divider: minimum valid non-bypass divider value (actual) | ||
| 124 | * @max_divider: maximum valid non-bypass divider value (actual) | ||
| 125 | * @modes: possible values of @enable_mask | ||
| 126 | * @autoidle_reg: register containing the DPLL autoidle mode bitfield | ||
| 127 | * @idlest_reg: register containing the DPLL idle status bitfield | ||
| 128 | * @autoidle_mask: mask of the DPLL autoidle mode bitfield in @autoidle_reg | ||
| 129 | * @freqsel_mask: mask of the DPLL jitter correction bitfield in @control_reg | ||
| 130 | * @idlest_mask: mask of the DPLL idle status bitfield in @idlest_reg | ||
| 131 | * @auto_recal_bit: bitshift of the driftguard enable bit in @control_reg | ||
| 132 | * @recal_en_bit: bitshift of the PRM_IRQENABLE_* bit for recalibration IRQs | ||
| 133 | * @recal_st_bit: bitshift of the PRM_IRQSTATUS_* bit for recalibration IRQs | ||
| 134 | * @flags: DPLL type/features (see below) | ||
| 135 | * | ||
| 136 | * Possible values for @flags: | ||
| 137 | * DPLL_J_TYPE: "J-type DPLL" (only some 36xx, 4xxx DPLLs) | ||
| 138 | * | ||
| 139 | * @freqsel_mask is only used on the OMAP34xx family and AM35xx. | ||
| 140 | * | ||
| 141 | * XXX Some DPLLs have multiple bypass inputs, so it's not technically | ||
| 142 | * correct to only have one @clk_bypass pointer. | ||
| 143 | * | ||
| 144 | * XXX The runtime-variable fields (@last_rounded_rate, @last_rounded_m, | ||
| 145 | * @last_rounded_n) should be separated from the runtime-fixed fields | ||
| 146 | * and placed into a different structure, so that the runtime-fixed data | ||
| 147 | * can be placed into read-only space. | ||
| 148 | */ | ||
| 149 | struct dpll_data { | ||
| 150 | void __iomem *mult_div1_reg; | ||
| 151 | u32 mult_mask; | ||
| 152 | u32 div1_mask; | ||
| 153 | struct clk *clk_bypass; | ||
| 154 | struct clk *clk_ref; | ||
| 155 | void __iomem *control_reg; | ||
| 156 | u32 enable_mask; | ||
| 157 | unsigned long last_rounded_rate; | ||
| 158 | u16 last_rounded_m; | ||
| 159 | u16 max_multiplier; | ||
| 160 | u8 last_rounded_n; | ||
| 161 | u8 min_divider; | ||
| 162 | u16 max_divider; | ||
| 163 | u8 modes; | ||
| 164 | void __iomem *autoidle_reg; | ||
| 165 | void __iomem *idlest_reg; | ||
| 166 | u32 autoidle_mask; | ||
| 167 | u32 freqsel_mask; | ||
| 168 | u32 idlest_mask; | ||
| 169 | u32 dco_mask; | ||
| 170 | u32 sddiv_mask; | ||
| 171 | u8 auto_recal_bit; | ||
| 172 | u8 recal_en_bit; | ||
| 173 | u8 recal_st_bit; | ||
| 174 | u8 flags; | ||
| 175 | }; | ||
| 176 | |||
| 177 | #endif | ||
| 178 | |||
| 179 | /* | ||
| 180 | * struct clk.flags possibilities | ||
| 181 | * | ||
| 182 | * XXX document the rest of the clock flags here | ||
| 183 | * | ||
| 184 | * CLOCK_CLKOUTX2: (OMAP4 only) DPLL CLKOUT and CLKOUTX2 GATE_CTRL | ||
| 185 | * bits share the same register. This flag allows the | ||
| 186 | * omap4_dpllmx*() code to determine which GATE_CTRL bit field | ||
| 187 | * should be used. This is a temporary solution - a better approach | ||
| 188 | * would be to associate clock type-specific data with the clock, | ||
| 189 | * similar to the struct dpll_data approach. | ||
| 190 | */ | ||
| 191 | #define ENABLE_REG_32BIT (1 << 0) /* Use 32-bit access */ | ||
| 192 | #define CLOCK_IDLE_CONTROL (1 << 1) | ||
| 193 | #define CLOCK_NO_IDLE_PARENT (1 << 2) | ||
| 194 | #define ENABLE_ON_INIT (1 << 3) /* Enable upon framework init */ | ||
| 195 | #define INVERT_ENABLE (1 << 4) /* 0 enables, 1 disables */ | ||
| 196 | #define CLOCK_CLKOUTX2 (1 << 5) | ||
| 197 | |||
| 198 | /** | ||
| 199 | * struct clk - OMAP struct clk | ||
| 200 | * @node: list_head connecting this clock into the full clock list | ||
| 201 | * @ops: struct clkops * for this clock | ||
| 202 | * @name: the name of the clock in the hardware (used in hwmod data and debug) | ||
| 203 | * @parent: pointer to this clock's parent struct clk | ||
| 204 | * @children: list_head connecting to the child clks' @sibling list_heads | ||
| 205 | * @sibling: list_head connecting this clk to its parent clk's @children | ||
| 206 | * @rate: current clock rate | ||
| 207 | * @enable_reg: register to write to enable the clock (see @enable_bit) | ||
| 208 | * @recalc: fn ptr that returns the clock's current rate | ||
| 209 | * @set_rate: fn ptr that can change the clock's current rate | ||
| 210 | * @round_rate: fn ptr that can round the clock's current rate | ||
| 211 | * @init: fn ptr to do clock-specific initialization | ||
| 212 | * @enable_bit: bitshift to write to enable/disable the clock (see @enable_reg) | ||
| 213 | * @usecount: number of users that have requested this clock to be enabled | ||
| 214 | * @fixed_div: when > 0, this clock's rate is its parent's rate / @fixed_div | ||
| 215 | * @flags: see "struct clk.flags possibilities" above | ||
| 216 | * @clksel_reg: for clksel clks, register va containing src/divisor select | ||
| 217 | * @clksel_mask: bitmask in @clksel_reg for the src/divisor selector | ||
| 218 | * @clksel: for clksel clks, pointer to struct clksel for this clock | ||
| 219 | * @dpll_data: for DPLLs, pointer to struct dpll_data for this clock | ||
| 220 | * @clkdm_name: clockdomain name that this clock is contained in | ||
| 221 | * @clkdm: pointer to struct clockdomain, resolved from @clkdm_name at runtime | ||
| 222 | * @rate_offset: bitshift for rate selection bitfield (OMAP1 only) | ||
| 223 | * @src_offset: bitshift for source selection bitfield (OMAP1 only) | ||
| 224 | * | ||
| 225 | * XXX @rate_offset, @src_offset should probably be removed and OMAP1 | ||
| 226 | * clock code converted to use clksel. | ||
| 227 | * | ||
| 228 | * XXX @usecount is poorly named. It should be "enable_count" or | ||
| 229 | * something similar. "users" in the description refers to kernel | ||
| 230 | * code (core code or drivers) that have called clk_enable() and not | ||
| 231 | * yet called clk_disable(); the usecount of parent clocks is also | ||
| 232 | * incremented by the clock code when clk_enable() is called on child | ||
| 233 | * clocks and decremented by the clock code when clk_disable() is | ||
| 234 | * called on child clocks. | ||
| 235 | * | ||
| 236 | * XXX @clkdm, @usecount, @children, @sibling should be marked for | ||
| 237 | * internal use only. | ||
| 238 | * | ||
| 239 | * @children and @sibling are used to optimize parent-to-child clock | ||
| 240 | * tree traversals. (child-to-parent traversals use @parent.) | ||
| 241 | * | ||
| 242 | * XXX The notion of the clock's current rate probably needs to be | ||
| 243 | * separated from the clock's target rate. | ||
| 244 | */ | ||
| 245 | struct clk { | ||
| 246 | struct list_head node; | ||
| 247 | const struct clkops *ops; | ||
| 248 | const char *name; | ||
| 249 | struct clk *parent; | ||
| 250 | struct list_head children; | ||
| 251 | struct list_head sibling; /* node for children */ | ||
| 252 | unsigned long rate; | ||
| 253 | void __iomem *enable_reg; | ||
| 254 | unsigned long (*recalc)(struct clk *); | ||
| 255 | int (*set_rate)(struct clk *, unsigned long); | ||
| 256 | long (*round_rate)(struct clk *, unsigned long); | ||
| 257 | void (*init)(struct clk *); | ||
| 258 | u8 enable_bit; | ||
| 259 | s8 usecount; | ||
| 260 | u8 fixed_div; | ||
| 261 | u8 flags; | ||
| 262 | #ifdef CONFIG_ARCH_OMAP2PLUS | ||
| 263 | void __iomem *clksel_reg; | ||
| 264 | u32 clksel_mask; | ||
| 265 | const struct clksel *clksel; | ||
| 266 | struct dpll_data *dpll_data; | ||
| 267 | const char *clkdm_name; | ||
| 268 | struct clockdomain *clkdm; | ||
| 269 | #else | ||
| 270 | u8 rate_offset; | ||
| 271 | u8 src_offset; | ||
| 272 | #endif | ||
| 273 | #if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) | ||
| 274 | struct dentry *dent; /* For visible tree hierarchy */ | ||
| 275 | #endif | ||
| 276 | }; | ||
| 277 | |||
| 278 | struct clk_functions { | ||
| 279 | int (*clk_enable)(struct clk *clk); | ||
| 280 | void (*clk_disable)(struct clk *clk); | ||
| 281 | long (*clk_round_rate)(struct clk *clk, unsigned long rate); | ||
| 282 | int (*clk_set_rate)(struct clk *clk, unsigned long rate); | ||
| 283 | int (*clk_set_parent)(struct clk *clk, struct clk *parent); | ||
| 284 | void (*clk_allow_idle)(struct clk *clk); | ||
| 285 | void (*clk_deny_idle)(struct clk *clk); | ||
| 286 | void (*clk_disable_unused)(struct clk *clk); | ||
| 287 | }; | ||
| 288 | |||
| 289 | extern int mpurate; | ||
| 290 | |||
| 291 | extern int clk_init(struct clk_functions *custom_clocks); | ||
| 292 | extern void clk_preinit(struct clk *clk); | ||
| 293 | extern int clk_register(struct clk *clk); | ||
| 294 | extern void clk_reparent(struct clk *child, struct clk *parent); | ||
| 295 | extern void clk_unregister(struct clk *clk); | ||
| 296 | extern void propagate_rate(struct clk *clk); | ||
| 297 | extern void recalculate_root_clocks(void); | ||
| 298 | extern unsigned long followparent_recalc(struct clk *clk); | ||
| 299 | extern void clk_enable_init_clocks(void); | ||
| 300 | unsigned long omap_fixed_divisor_recalc(struct clk *clk); | ||
| 301 | extern struct clk *omap_clk_get_by_name(const char *name); | ||
| 302 | extern int omap_clk_enable_autoidle_all(void); | ||
| 303 | extern int omap_clk_disable_autoidle_all(void); | ||
| 304 | |||
| 305 | extern const struct clkops clkops_null; | ||
| 306 | |||
| 307 | extern struct clk dummy_ck; | ||
| 308 | |||
| 309 | #endif | ||
diff --git a/arch/arm/plat-omap/include/plat/common.h b/arch/arm/plat-omap/include/plat/common.h deleted file mode 100644 index d1cb6f527b7e..000000000000 --- a/arch/arm/plat-omap/include/plat/common.h +++ /dev/null | |||
| @@ -1,42 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/plat-omap/include/mach/common.h | ||
| 3 | * | ||
| 4 | * Header for code common to all OMAP machines. | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify it | ||
| 7 | * under the terms of the GNU General Public License as published by the | ||
| 8 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 9 | * option) any later version. | ||
| 10 | * | ||
| 11 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
| 12 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
| 13 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN | ||
| 14 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| 15 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
| 16 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
| 17 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
| 18 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| 19 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
| 20 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 21 | * | ||
| 22 | * You should have received a copy of the GNU General Public License along | ||
| 23 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
| 24 | * 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 25 | */ | ||
| 26 | |||
| 27 | #ifndef __ARCH_ARM_MACH_OMAP_COMMON_H | ||
| 28 | #define __ARCH_ARM_MACH_OMAP_COMMON_H | ||
| 29 | |||
| 30 | #include <plat/i2c.h> | ||
| 31 | #include <plat/omap_hwmod.h> | ||
| 32 | |||
| 33 | extern int __init omap_init_clocksource_32k(void __iomem *vbase); | ||
| 34 | |||
| 35 | extern void __init omap_check_revision(void); | ||
| 36 | |||
| 37 | extern void omap_reserve(void); | ||
| 38 | extern int omap_dss_reset(struct omap_hwmod *); | ||
| 39 | |||
| 40 | void omap_sram_init(void); | ||
| 41 | |||
| 42 | #endif /* __ARCH_ARM_MACH_OMAP_COMMON_H */ | ||
diff --git a/arch/arm/plat-omap/include/plat/counter-32k.h b/arch/arm/plat-omap/include/plat/counter-32k.h new file mode 100644 index 000000000000..da000d482ff2 --- /dev/null +++ b/arch/arm/plat-omap/include/plat/counter-32k.h | |||
| @@ -0,0 +1 @@ | |||
| int omap_init_clocksource_32k(void __iomem *vbase); | |||
diff --git a/arch/arm/plat-omap/include/plat/cpu.h b/arch/arm/plat-omap/include/plat/cpu.h index 67da857783ce..b4516aba67ed 100644 --- a/arch/arm/plat-omap/include/plat/cpu.h +++ b/arch/arm/plat-omap/include/plat/cpu.h | |||
| @@ -1,6 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * arch/arm/plat-omap/include/mach/cpu.h | ||
| 3 | * | ||
| 4 | * OMAP cpu type detection | 2 | * OMAP cpu type detection |
| 5 | * | 3 | * |
| 6 | * Copyright (C) 2004, 2008 Nokia Corporation | 4 | * Copyright (C) 2004, 2008 Nokia Corporation |
| @@ -30,470 +28,12 @@ | |||
| 30 | #ifndef __ASM_ARCH_OMAP_CPU_H | 28 | #ifndef __ASM_ARCH_OMAP_CPU_H |
| 31 | #define __ASM_ARCH_OMAP_CPU_H | 29 | #define __ASM_ARCH_OMAP_CPU_H |
| 32 | 30 | ||
| 33 | #ifndef __ASSEMBLY__ | 31 | #ifdef CONFIG_ARCH_OMAP1 |
| 34 | 32 | #include <mach/soc.h> | |
| 35 | #include <linux/bitops.h> | ||
| 36 | #include <plat/multi.h> | ||
| 37 | |||
| 38 | /* | ||
| 39 | * Omap device type i.e. EMU/HS/TST/GP/BAD | ||
| 40 | */ | ||
| 41 | #define OMAP2_DEVICE_TYPE_TEST 0 | ||
| 42 | #define OMAP2_DEVICE_TYPE_EMU 1 | ||
| 43 | #define OMAP2_DEVICE_TYPE_SEC 2 | ||
| 44 | #define OMAP2_DEVICE_TYPE_GP 3 | ||
| 45 | #define OMAP2_DEVICE_TYPE_BAD 4 | ||
| 46 | |||
| 47 | int omap_type(void); | ||
| 48 | |||
| 49 | /* | ||
| 50 | * omap_rev bits: | ||
| 51 | * CPU id bits (0730, 1510, 1710, 2422...) [31:16] | ||
| 52 | * CPU revision (See _REV_ defined in cpu.h) [15:08] | ||
| 53 | * CPU class bits (15xx, 16xx, 24xx, 34xx...) [07:00] | ||
| 54 | */ | ||
| 55 | unsigned int omap_rev(void); | ||
| 56 | |||
| 57 | /* | ||
| 58 | * Get the CPU revision for OMAP devices | ||
| 59 | */ | ||
| 60 | #define GET_OMAP_REVISION() ((omap_rev() >> 8) & 0xff) | ||
| 61 | |||
| 62 | /* | ||
| 63 | * Macros to group OMAP into cpu classes. | ||
| 64 | * These can be used in most places. | ||
| 65 | * cpu_is_omap7xx(): True for OMAP730, OMAP850 | ||
| 66 | * cpu_is_omap15xx(): True for OMAP1510, OMAP5910 and OMAP310 | ||
| 67 | * cpu_is_omap16xx(): True for OMAP1610, OMAP5912 and OMAP1710 | ||
| 68 | * cpu_is_omap24xx(): True for OMAP2420, OMAP2422, OMAP2423, OMAP2430 | ||
| 69 | * cpu_is_omap242x(): True for OMAP2420, OMAP2422, OMAP2423 | ||
| 70 | * cpu_is_omap243x(): True for OMAP2430 | ||
| 71 | * cpu_is_omap343x(): True for OMAP3430 | ||
| 72 | * cpu_is_omap443x(): True for OMAP4430 | ||
| 73 | * cpu_is_omap446x(): True for OMAP4460 | ||
| 74 | * cpu_is_omap447x(): True for OMAP4470 | ||
| 75 | * soc_is_omap543x(): True for OMAP5430, OMAP5432 | ||
| 76 | */ | ||
| 77 | #define GET_OMAP_CLASS (omap_rev() & 0xff) | ||
| 78 | |||
| 79 | #define IS_OMAP_CLASS(class, id) \ | ||
| 80 | static inline int is_omap ##class (void) \ | ||
| 81 | { \ | ||
| 82 | return (GET_OMAP_CLASS == (id)) ? 1 : 0; \ | ||
| 83 | } | ||
| 84 | |||
| 85 | #define GET_AM_CLASS ((omap_rev() >> 24) & 0xff) | ||
| 86 | |||
| 87 | #define IS_AM_CLASS(class, id) \ | ||
| 88 | static inline int is_am ##class (void) \ | ||
| 89 | { \ | ||
| 90 | return (GET_AM_CLASS == (id)) ? 1 : 0; \ | ||
| 91 | } | ||
| 92 | |||
| 93 | #define GET_TI_CLASS ((omap_rev() >> 24) & 0xff) | ||
| 94 | |||
| 95 | #define IS_TI_CLASS(class, id) \ | ||
| 96 | static inline int is_ti ##class (void) \ | ||
| 97 | { \ | ||
| 98 | return (GET_TI_CLASS == (id)) ? 1 : 0; \ | ||
| 99 | } | ||
| 100 | |||
| 101 | #define GET_OMAP_SUBCLASS ((omap_rev() >> 20) & 0x0fff) | ||
| 102 | |||
| 103 | #define IS_OMAP_SUBCLASS(subclass, id) \ | ||
| 104 | static inline int is_omap ##subclass (void) \ | ||
| 105 | { \ | ||
| 106 | return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \ | ||
| 107 | } | ||
| 108 | |||
| 109 | #define IS_TI_SUBCLASS(subclass, id) \ | ||
| 110 | static inline int is_ti ##subclass (void) \ | ||
| 111 | { \ | ||
| 112 | return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \ | ||
| 113 | } | ||
| 114 | |||
| 115 | #define IS_AM_SUBCLASS(subclass, id) \ | ||
| 116 | static inline int is_am ##subclass (void) \ | ||
| 117 | { \ | ||
| 118 | return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \ | ||
| 119 | } | ||
| 120 | |||
| 121 | IS_OMAP_CLASS(7xx, 0x07) | ||
| 122 | IS_OMAP_CLASS(15xx, 0x15) | ||
| 123 | IS_OMAP_CLASS(16xx, 0x16) | ||
| 124 | IS_OMAP_CLASS(24xx, 0x24) | ||
| 125 | IS_OMAP_CLASS(34xx, 0x34) | ||
| 126 | IS_OMAP_CLASS(44xx, 0x44) | ||
| 127 | IS_AM_CLASS(35xx, 0x35) | ||
| 128 | IS_OMAP_CLASS(54xx, 0x54) | ||
| 129 | IS_AM_CLASS(33xx, 0x33) | ||
| 130 | |||
| 131 | IS_TI_CLASS(81xx, 0x81) | ||
| 132 | |||
| 133 | IS_OMAP_SUBCLASS(242x, 0x242) | ||
| 134 | IS_OMAP_SUBCLASS(243x, 0x243) | ||
| 135 | IS_OMAP_SUBCLASS(343x, 0x343) | ||
| 136 | IS_OMAP_SUBCLASS(363x, 0x363) | ||
| 137 | IS_OMAP_SUBCLASS(443x, 0x443) | ||
| 138 | IS_OMAP_SUBCLASS(446x, 0x446) | ||
| 139 | IS_OMAP_SUBCLASS(447x, 0x447) | ||
| 140 | IS_OMAP_SUBCLASS(543x, 0x543) | ||
| 141 | |||
| 142 | IS_TI_SUBCLASS(816x, 0x816) | ||
| 143 | IS_TI_SUBCLASS(814x, 0x814) | ||
| 144 | IS_AM_SUBCLASS(335x, 0x335) | ||
| 145 | |||
| 146 | #define cpu_is_omap7xx() 0 | ||
| 147 | #define cpu_is_omap15xx() 0 | ||
| 148 | #define cpu_is_omap16xx() 0 | ||
| 149 | #define cpu_is_omap24xx() 0 | ||
| 150 | #define cpu_is_omap242x() 0 | ||
| 151 | #define cpu_is_omap243x() 0 | ||
| 152 | #define cpu_is_omap34xx() 0 | ||
| 153 | #define cpu_is_omap343x() 0 | ||
| 154 | #define cpu_is_ti81xx() 0 | ||
| 155 | #define cpu_is_ti816x() 0 | ||
| 156 | #define cpu_is_ti814x() 0 | ||
| 157 | #define soc_is_am35xx() 0 | ||
| 158 | #define soc_is_am33xx() 0 | ||
| 159 | #define soc_is_am335x() 0 | ||
| 160 | #define cpu_is_omap44xx() 0 | ||
| 161 | #define cpu_is_omap443x() 0 | ||
| 162 | #define cpu_is_omap446x() 0 | ||
| 163 | #define cpu_is_omap447x() 0 | ||
| 164 | #define soc_is_omap54xx() 0 | ||
| 165 | #define soc_is_omap543x() 0 | ||
| 166 | |||
| 167 | #if defined(MULTI_OMAP1) | ||
| 168 | # if defined(CONFIG_ARCH_OMAP730) | ||
| 169 | # undef cpu_is_omap7xx | ||
| 170 | # define cpu_is_omap7xx() is_omap7xx() | ||
| 171 | # endif | ||
| 172 | # if defined(CONFIG_ARCH_OMAP850) | ||
| 173 | # undef cpu_is_omap7xx | ||
| 174 | # define cpu_is_omap7xx() is_omap7xx() | ||
| 175 | # endif | ||
| 176 | # if defined(CONFIG_ARCH_OMAP15XX) | ||
| 177 | # undef cpu_is_omap15xx | ||
| 178 | # define cpu_is_omap15xx() is_omap15xx() | ||
| 179 | # endif | ||
| 180 | # if defined(CONFIG_ARCH_OMAP16XX) | ||
| 181 | # undef cpu_is_omap16xx | ||
| 182 | # define cpu_is_omap16xx() is_omap16xx() | ||
| 183 | # endif | ||
| 184 | #else | ||
| 185 | # if defined(CONFIG_ARCH_OMAP730) | ||
| 186 | # undef cpu_is_omap7xx | ||
| 187 | # define cpu_is_omap7xx() 1 | ||
| 188 | # endif | ||
| 189 | # if defined(CONFIG_ARCH_OMAP850) | ||
| 190 | # undef cpu_is_omap7xx | ||
| 191 | # define cpu_is_omap7xx() 1 | ||
| 192 | # endif | ||
| 193 | # if defined(CONFIG_ARCH_OMAP15XX) | ||
| 194 | # undef cpu_is_omap15xx | ||
| 195 | # define cpu_is_omap15xx() 1 | ||
| 196 | # endif | ||
| 197 | # if defined(CONFIG_ARCH_OMAP16XX) | ||
| 198 | # undef cpu_is_omap16xx | ||
| 199 | # define cpu_is_omap16xx() 1 | ||
| 200 | # endif | ||
| 201 | #endif | ||
| 202 | |||
| 203 | #if defined(MULTI_OMAP2) | ||
| 204 | # if defined(CONFIG_ARCH_OMAP2) | ||
| 205 | # undef cpu_is_omap24xx | ||
| 206 | # define cpu_is_omap24xx() is_omap24xx() | ||
| 207 | # endif | ||
| 208 | # if defined (CONFIG_SOC_OMAP2420) | ||
| 209 | # undef cpu_is_omap242x | ||
| 210 | # define cpu_is_omap242x() is_omap242x() | ||
| 211 | # endif | ||
| 212 | # if defined (CONFIG_SOC_OMAP2430) | ||
| 213 | # undef cpu_is_omap243x | ||
| 214 | # define cpu_is_omap243x() is_omap243x() | ||
| 215 | # endif | ||
| 216 | # if defined(CONFIG_ARCH_OMAP3) | ||
| 217 | # undef cpu_is_omap34xx | ||
| 218 | # undef cpu_is_omap343x | ||
| 219 | # define cpu_is_omap34xx() is_omap34xx() | ||
| 220 | # define cpu_is_omap343x() is_omap343x() | ||
| 221 | # endif | ||
| 222 | #else | ||
| 223 | # if defined(CONFIG_ARCH_OMAP2) | ||
| 224 | # undef cpu_is_omap24xx | ||
| 225 | # define cpu_is_omap24xx() 1 | ||
| 226 | # endif | ||
| 227 | # if defined(CONFIG_SOC_OMAP2420) | ||
| 228 | # undef cpu_is_omap242x | ||
| 229 | # define cpu_is_omap242x() 1 | ||
| 230 | # endif | ||
| 231 | # if defined(CONFIG_SOC_OMAP2430) | ||
| 232 | # undef cpu_is_omap243x | ||
| 233 | # define cpu_is_omap243x() 1 | ||
| 234 | # endif | ||
| 235 | # if defined(CONFIG_ARCH_OMAP3) | ||
| 236 | # undef cpu_is_omap34xx | ||
| 237 | # define cpu_is_omap34xx() 1 | ||
| 238 | # endif | ||
| 239 | # if defined(CONFIG_SOC_OMAP3430) | ||
| 240 | # undef cpu_is_omap343x | ||
| 241 | # define cpu_is_omap343x() 1 | ||
| 242 | # endif | ||
| 243 | #endif | ||
| 244 | |||
| 245 | /* | ||
| 246 | * Macros to detect individual cpu types. | ||
| 247 | * These are only rarely needed. | ||
| 248 | * cpu_is_omap310(): True for OMAP310 | ||
| 249 | * cpu_is_omap1510(): True for OMAP1510 | ||
| 250 | * cpu_is_omap1610(): True for OMAP1610 | ||
| 251 | * cpu_is_omap1611(): True for OMAP1611 | ||
| 252 | * cpu_is_omap5912(): True for OMAP5912 | ||
| 253 | * cpu_is_omap1621(): True for OMAP1621 | ||
| 254 | * cpu_is_omap1710(): True for OMAP1710 | ||
| 255 | * cpu_is_omap2420(): True for OMAP2420 | ||
| 256 | * cpu_is_omap2422(): True for OMAP2422 | ||
| 257 | * cpu_is_omap2423(): True for OMAP2423 | ||
| 258 | * cpu_is_omap2430(): True for OMAP2430 | ||
| 259 | * cpu_is_omap3430(): True for OMAP3430 | ||
| 260 | */ | ||
| 261 | #define GET_OMAP_TYPE ((omap_rev() >> 16) & 0xffff) | ||
| 262 | |||
| 263 | #define IS_OMAP_TYPE(type, id) \ | ||
| 264 | static inline int is_omap ##type (void) \ | ||
| 265 | { \ | ||
| 266 | return (GET_OMAP_TYPE == (id)) ? 1 : 0; \ | ||
| 267 | } | ||
| 268 | |||
| 269 | IS_OMAP_TYPE(310, 0x0310) | ||
| 270 | IS_OMAP_TYPE(1510, 0x1510) | ||
| 271 | IS_OMAP_TYPE(1610, 0x1610) | ||
| 272 | IS_OMAP_TYPE(1611, 0x1611) | ||
| 273 | IS_OMAP_TYPE(5912, 0x1611) | ||
| 274 | IS_OMAP_TYPE(1621, 0x1621) | ||
| 275 | IS_OMAP_TYPE(1710, 0x1710) | ||
| 276 | IS_OMAP_TYPE(2420, 0x2420) | ||
| 277 | IS_OMAP_TYPE(2422, 0x2422) | ||
| 278 | IS_OMAP_TYPE(2423, 0x2423) | ||
| 279 | IS_OMAP_TYPE(2430, 0x2430) | ||
| 280 | IS_OMAP_TYPE(3430, 0x3430) | ||
| 281 | |||
| 282 | #define cpu_is_omap310() 0 | ||
| 283 | #define cpu_is_omap1510() 0 | ||
| 284 | #define cpu_is_omap1610() 0 | ||
| 285 | #define cpu_is_omap5912() 0 | ||
| 286 | #define cpu_is_omap1611() 0 | ||
| 287 | #define cpu_is_omap1621() 0 | ||
| 288 | #define cpu_is_omap1710() 0 | ||
| 289 | #define cpu_is_omap2420() 0 | ||
| 290 | #define cpu_is_omap2422() 0 | ||
| 291 | #define cpu_is_omap2423() 0 | ||
| 292 | #define cpu_is_omap2430() 0 | ||
| 293 | #define cpu_is_omap3430() 0 | ||
| 294 | #define cpu_is_omap3630() 0 | ||
| 295 | #define soc_is_omap5430() 0 | ||
| 296 | |||
| 297 | /* | ||
| 298 | * Whether we have MULTI_OMAP1 or not, we still need to distinguish | ||
| 299 | * between 310 vs. 1510 and 1611B/5912 vs. 1710. | ||
| 300 | */ | ||
| 301 | |||
| 302 | #if defined(CONFIG_ARCH_OMAP15XX) | ||
| 303 | # undef cpu_is_omap310 | ||
| 304 | # undef cpu_is_omap1510 | ||
| 305 | # define cpu_is_omap310() is_omap310() | ||
| 306 | # define cpu_is_omap1510() is_omap1510() | ||
| 307 | #endif | ||
| 308 | |||
| 309 | #if defined(CONFIG_ARCH_OMAP16XX) | ||
| 310 | # undef cpu_is_omap1610 | ||
| 311 | # undef cpu_is_omap1611 | ||
| 312 | # undef cpu_is_omap5912 | ||
| 313 | # undef cpu_is_omap1621 | ||
| 314 | # undef cpu_is_omap1710 | ||
| 315 | # define cpu_is_omap1610() is_omap1610() | ||
| 316 | # define cpu_is_omap1611() is_omap1611() | ||
| 317 | # define cpu_is_omap5912() is_omap5912() | ||
| 318 | # define cpu_is_omap1621() is_omap1621() | ||
| 319 | # define cpu_is_omap1710() is_omap1710() | ||
| 320 | #endif | ||
| 321 | |||
| 322 | #if defined(CONFIG_ARCH_OMAP2) | ||
| 323 | # undef cpu_is_omap2420 | ||
| 324 | # undef cpu_is_omap2422 | ||
| 325 | # undef cpu_is_omap2423 | ||
| 326 | # undef cpu_is_omap2430 | ||
| 327 | # define cpu_is_omap2420() is_omap2420() | ||
| 328 | # define cpu_is_omap2422() is_omap2422() | ||
| 329 | # define cpu_is_omap2423() is_omap2423() | ||
| 330 | # define cpu_is_omap2430() is_omap2430() | ||
| 331 | #endif | ||
| 332 | |||
| 333 | #if defined(CONFIG_ARCH_OMAP3) | ||
| 334 | # undef cpu_is_omap3430 | ||
| 335 | # undef cpu_is_ti81xx | ||
| 336 | # undef cpu_is_ti816x | ||
| 337 | # undef cpu_is_ti814x | ||
| 338 | # undef soc_is_am35xx | ||
| 339 | # define cpu_is_omap3430() is_omap3430() | ||
| 340 | # undef cpu_is_omap3630 | ||
| 341 | # define cpu_is_omap3630() is_omap363x() | ||
| 342 | # define cpu_is_ti81xx() is_ti81xx() | ||
| 343 | # define cpu_is_ti816x() is_ti816x() | ||
| 344 | # define cpu_is_ti814x() is_ti814x() | ||
| 345 | # define soc_is_am35xx() is_am35xx() | ||
| 346 | #endif | 33 | #endif |
| 347 | 34 | ||
| 348 | # if defined(CONFIG_SOC_AM33XX) | 35 | #ifdef CONFIG_ARCH_OMAP2PLUS |
| 349 | # undef soc_is_am33xx | 36 | #include "../../mach-omap2/soc.h" |
| 350 | # undef soc_is_am335x | ||
| 351 | # define soc_is_am33xx() is_am33xx() | ||
| 352 | # define soc_is_am335x() is_am335x() | ||
| 353 | #endif | 37 | #endif |
| 354 | 38 | ||
| 355 | # if defined(CONFIG_ARCH_OMAP4) | ||
| 356 | # undef cpu_is_omap44xx | ||
| 357 | # undef cpu_is_omap443x | ||
| 358 | # undef cpu_is_omap446x | ||
| 359 | # undef cpu_is_omap447x | ||
| 360 | # define cpu_is_omap44xx() is_omap44xx() | ||
| 361 | # define cpu_is_omap443x() is_omap443x() | ||
| 362 | # define cpu_is_omap446x() is_omap446x() | ||
| 363 | # define cpu_is_omap447x() is_omap447x() | ||
| 364 | # endif | ||
| 365 | |||
| 366 | # if defined(CONFIG_SOC_OMAP5) | ||
| 367 | # undef soc_is_omap54xx | ||
| 368 | # undef soc_is_omap543x | ||
| 369 | # define soc_is_omap54xx() is_omap54xx() | ||
| 370 | # define soc_is_omap543x() is_omap543x() | ||
| 371 | #endif | ||
| 372 | |||
| 373 | /* Macros to detect if we have OMAP1 or OMAP2 */ | ||
| 374 | #define cpu_class_is_omap1() (cpu_is_omap7xx() || cpu_is_omap15xx() || \ | ||
| 375 | cpu_is_omap16xx()) | ||
| 376 | #define cpu_class_is_omap2() (cpu_is_omap24xx() || cpu_is_omap34xx() || \ | ||
| 377 | cpu_is_omap44xx() || soc_is_omap54xx() || \ | ||
| 378 | soc_is_am33xx()) | ||
| 379 | |||
| 380 | /* Various silicon revisions for omap2 */ | ||
| 381 | #define OMAP242X_CLASS 0x24200024 | ||
| 382 | #define OMAP2420_REV_ES1_0 OMAP242X_CLASS | ||
| 383 | #define OMAP2420_REV_ES2_0 (OMAP242X_CLASS | (0x1 << 8)) | ||
| 384 | |||
| 385 | #define OMAP243X_CLASS 0x24300024 | ||
| 386 | #define OMAP2430_REV_ES1_0 OMAP243X_CLASS | ||
| 387 | |||
| 388 | #define OMAP343X_CLASS 0x34300034 | ||
| 389 | #define OMAP3430_REV_ES1_0 OMAP343X_CLASS | ||
| 390 | #define OMAP3430_REV_ES2_0 (OMAP343X_CLASS | (0x1 << 8)) | ||
| 391 | #define OMAP3430_REV_ES2_1 (OMAP343X_CLASS | (0x2 << 8)) | ||
| 392 | #define OMAP3430_REV_ES3_0 (OMAP343X_CLASS | (0x3 << 8)) | ||
| 393 | #define OMAP3430_REV_ES3_1 (OMAP343X_CLASS | (0x4 << 8)) | ||
| 394 | #define OMAP3430_REV_ES3_1_2 (OMAP343X_CLASS | (0x5 << 8)) | ||
| 395 | |||
| 396 | #define OMAP363X_CLASS 0x36300034 | ||
| 397 | #define OMAP3630_REV_ES1_0 OMAP363X_CLASS | ||
| 398 | #define OMAP3630_REV_ES1_1 (OMAP363X_CLASS | (0x1 << 8)) | ||
| 399 | #define OMAP3630_REV_ES1_2 (OMAP363X_CLASS | (0x2 << 8)) | ||
| 400 | |||
| 401 | #define TI816X_CLASS 0x81600034 | ||
| 402 | #define TI8168_REV_ES1_0 TI816X_CLASS | ||
| 403 | #define TI8168_REV_ES1_1 (TI816X_CLASS | (0x1 << 8)) | ||
| 404 | |||
| 405 | #define TI814X_CLASS 0x81400034 | ||
| 406 | #define TI8148_REV_ES1_0 TI814X_CLASS | ||
| 407 | #define TI8148_REV_ES2_0 (TI814X_CLASS | (0x1 << 8)) | ||
| 408 | #define TI8148_REV_ES2_1 (TI814X_CLASS | (0x2 << 8)) | ||
| 409 | |||
| 410 | #define AM35XX_CLASS 0x35170034 | ||
| 411 | #define AM35XX_REV_ES1_0 AM35XX_CLASS | ||
| 412 | #define AM35XX_REV_ES1_1 (AM35XX_CLASS | (0x1 << 8)) | ||
| 413 | |||
| 414 | #define AM335X_CLASS 0x33500033 | ||
| 415 | #define AM335X_REV_ES1_0 AM335X_CLASS | ||
| 416 | |||
| 417 | #define OMAP443X_CLASS 0x44300044 | ||
| 418 | #define OMAP4430_REV_ES1_0 (OMAP443X_CLASS | (0x10 << 8)) | ||
| 419 | #define OMAP4430_REV_ES2_0 (OMAP443X_CLASS | (0x20 << 8)) | ||
| 420 | #define OMAP4430_REV_ES2_1 (OMAP443X_CLASS | (0x21 << 8)) | ||
| 421 | #define OMAP4430_REV_ES2_2 (OMAP443X_CLASS | (0x22 << 8)) | ||
| 422 | #define OMAP4430_REV_ES2_3 (OMAP443X_CLASS | (0x23 << 8)) | ||
| 423 | |||
| 424 | #define OMAP446X_CLASS 0x44600044 | ||
| 425 | #define OMAP4460_REV_ES1_0 (OMAP446X_CLASS | (0x10 << 8)) | ||
| 426 | #define OMAP4460_REV_ES1_1 (OMAP446X_CLASS | (0x11 << 8)) | ||
| 427 | |||
| 428 | #define OMAP447X_CLASS 0x44700044 | ||
| 429 | #define OMAP4470_REV_ES1_0 (OMAP447X_CLASS | (0x10 << 8)) | ||
| 430 | |||
| 431 | #define OMAP54XX_CLASS 0x54000054 | ||
| 432 | #define OMAP5430_REV_ES1_0 (OMAP54XX_CLASS | (0x30 << 16) | (0x10 << 8)) | ||
| 433 | #define OMAP5432_REV_ES1_0 (OMAP54XX_CLASS | (0x32 << 16) | (0x10 << 8)) | ||
| 434 | |||
| 435 | void omap2xxx_check_revision(void); | ||
| 436 | void omap3xxx_check_revision(void); | ||
| 437 | void omap4xxx_check_revision(void); | ||
| 438 | void omap5xxx_check_revision(void); | ||
| 439 | void omap3xxx_check_features(void); | ||
| 440 | void ti81xx_check_features(void); | ||
| 441 | void omap4xxx_check_features(void); | ||
| 442 | |||
| 443 | /* | ||
| 444 | * Runtime detection of OMAP3 features | ||
| 445 | * | ||
| 446 | * OMAP3_HAS_IO_CHAIN_CTRL: Some later members of the OMAP3 chip | ||
| 447 | * family have OS-level control over the I/O chain clock. This is | ||
| 448 | * to avoid a window during which wakeups could potentially be lost | ||
| 449 | * during powerdomain transitions. If this bit is set, it | ||
| 450 | * indicates that the chip does support OS-level control of this | ||
| 451 | * feature. | ||
| 452 | */ | ||
| 453 | extern u32 omap_features; | ||
| 454 | |||
| 455 | #define OMAP3_HAS_L2CACHE BIT(0) | ||
| 456 | #define OMAP3_HAS_IVA BIT(1) | ||
| 457 | #define OMAP3_HAS_SGX BIT(2) | ||
| 458 | #define OMAP3_HAS_NEON BIT(3) | ||
| 459 | #define OMAP3_HAS_ISP BIT(4) | ||
| 460 | #define OMAP3_HAS_192MHZ_CLK BIT(5) | ||
| 461 | #define OMAP3_HAS_IO_WAKEUP BIT(6) | ||
| 462 | #define OMAP3_HAS_SDRC BIT(7) | ||
| 463 | #define OMAP3_HAS_IO_CHAIN_CTRL BIT(8) | ||
| 464 | #define OMAP4_HAS_MPU_1GHZ BIT(9) | ||
| 465 | #define OMAP4_HAS_MPU_1_2GHZ BIT(10) | ||
| 466 | #define OMAP4_HAS_MPU_1_5GHZ BIT(11) | ||
| 467 | |||
| 468 | |||
| 469 | #define OMAP3_HAS_FEATURE(feat,flag) \ | ||
| 470 | static inline unsigned int omap3_has_ ##feat(void) \ | ||
| 471 | { \ | ||
| 472 | return omap_features & OMAP3_HAS_ ##flag; \ | ||
| 473 | } \ | ||
| 474 | |||
| 475 | OMAP3_HAS_FEATURE(l2cache, L2CACHE) | ||
| 476 | OMAP3_HAS_FEATURE(sgx, SGX) | ||
| 477 | OMAP3_HAS_FEATURE(iva, IVA) | ||
| 478 | OMAP3_HAS_FEATURE(neon, NEON) | ||
| 479 | OMAP3_HAS_FEATURE(isp, ISP) | ||
| 480 | OMAP3_HAS_FEATURE(192mhz_clk, 192MHZ_CLK) | ||
| 481 | OMAP3_HAS_FEATURE(io_wakeup, IO_WAKEUP) | ||
| 482 | OMAP3_HAS_FEATURE(sdrc, SDRC) | ||
| 483 | OMAP3_HAS_FEATURE(io_chain_ctrl, IO_CHAIN_CTRL) | ||
| 484 | |||
| 485 | /* | ||
| 486 | * Runtime detection of OMAP4 features | ||
| 487 | */ | ||
| 488 | #define OMAP4_HAS_FEATURE(feat, flag) \ | ||
| 489 | static inline unsigned int omap4_has_ ##feat(void) \ | ||
| 490 | { \ | ||
| 491 | return omap_features & OMAP4_HAS_ ##flag; \ | ||
| 492 | } \ | ||
| 493 | |||
| 494 | OMAP4_HAS_FEATURE(mpu_1ghz, MPU_1GHZ) | ||
| 495 | OMAP4_HAS_FEATURE(mpu_1_2ghz, MPU_1_2GHZ) | ||
| 496 | OMAP4_HAS_FEATURE(mpu_1_5ghz, MPU_1_5GHZ) | ||
| 497 | |||
| 498 | #endif /* __ASSEMBLY__ */ | ||
| 499 | #endif | 39 | #endif |
diff --git a/arch/arm/mach-omap2/debug-devices.h b/arch/arm/plat-omap/include/plat/debug-devices.h index a4edbd2f7484..8fc4287222dd 100644 --- a/arch/arm/mach-omap2/debug-devices.h +++ b/arch/arm/plat-omap/include/plat/debug-devices.h | |||
| @@ -1,9 +1,2 @@ | |||
| 1 | #ifndef _OMAP_DEBUG_DEVICES_H | ||
| 2 | #define _OMAP_DEBUG_DEVICES_H | ||
| 3 | |||
| 4 | #include <linux/types.h> | ||
| 5 | |||
| 6 | /* for TI reference platforms sharing the same debug card */ | 1 | /* for TI reference platforms sharing the same debug card */ |
| 7 | extern int debug_card_init(u32 addr, unsigned gpio); | 2 | extern int debug_card_init(u32 addr, unsigned gpio); |
| 8 | |||
| 9 | #endif | ||
diff --git a/arch/arm/plat-omap/include/plat/dma-44xx.h b/arch/arm/plat-omap/include/plat/dma-44xx.h deleted file mode 100644 index 1f767cb2f38a..000000000000 --- a/arch/arm/plat-omap/include/plat/dma-44xx.h +++ /dev/null | |||
| @@ -1,147 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * OMAP4 SDMA channel definitions | ||
| 3 | * | ||
| 4 | * Copyright (C) 2009-2010 Texas Instruments, Inc. | ||
| 5 | * Copyright (C) 2009-2010 Nokia Corporation | ||
| 6 | * | ||
| 7 | * Santosh Shilimkar (santosh.shilimkar@ti.com) | ||
| 8 | * Benoit Cousson (b-cousson@ti.com) | ||
| 9 | * Paul Walmsley (paul@pwsan.com) | ||
| 10 | * | ||
| 11 | * This file is automatically generated from the OMAP hardware databases. | ||
| 12 | * We respectfully ask that any modifications to this file be coordinated | ||
| 13 | * with the public linux-omap@vger.kernel.org mailing list and the | ||
| 14 | * authors above to ensure that the autogeneration scripts are kept | ||
| 15 | * up-to-date with the file contents. | ||
| 16 | * | ||
| 17 | * This program is free software; you can redistribute it and/or modify | ||
| 18 | * it under the terms of the GNU General Public License version 2 as | ||
| 19 | * published by the Free Software Foundation. | ||
| 20 | */ | ||
| 21 | |||
| 22 | #ifndef __ARCH_ARM_MACH_OMAP2_OMAP44XX_DMA_H | ||
| 23 | #define __ARCH_ARM_MACH_OMAP2_OMAP44XX_DMA_H | ||
| 24 | |||
| 25 | #define OMAP44XX_DMA_SYS_REQ0 2 | ||
| 26 | #define OMAP44XX_DMA_SYS_REQ1 3 | ||
| 27 | #define OMAP44XX_DMA_GPMC 4 | ||
| 28 | #define OMAP44XX_DMA_DSS_DISPC_REQ 6 | ||
| 29 | #define OMAP44XX_DMA_SYS_REQ2 7 | ||
| 30 | #define OMAP44XX_DMA_MCASP1_AXEVT 8 | ||
| 31 | #define OMAP44XX_DMA_ISS_REQ1 9 | ||
| 32 | #define OMAP44XX_DMA_ISS_REQ2 10 | ||
| 33 | #define OMAP44XX_DMA_MCASP1_AREVT 11 | ||
| 34 | #define OMAP44XX_DMA_ISS_REQ3 12 | ||
| 35 | #define OMAP44XX_DMA_ISS_REQ4 13 | ||
| 36 | #define OMAP44XX_DMA_DSS_RFBI_REQ 14 | ||
| 37 | #define OMAP44XX_DMA_SPI3_TX0 15 | ||
| 38 | #define OMAP44XX_DMA_SPI3_RX0 16 | ||
| 39 | #define OMAP44XX_DMA_MCBSP2_TX 17 | ||
| 40 | #define OMAP44XX_DMA_MCBSP2_RX 18 | ||
| 41 | #define OMAP44XX_DMA_MCBSP3_TX 19 | ||
| 42 | #define OMAP44XX_DMA_MCBSP3_RX 20 | ||
| 43 | #define OMAP44XX_DMA_C2C_SSCM_GPO0 21 | ||
| 44 | #define OMAP44XX_DMA_C2C_SSCM_GPO1 22 | ||
| 45 | #define OMAP44XX_DMA_SPI3_TX1 23 | ||
| 46 | #define OMAP44XX_DMA_SPI3_RX1 24 | ||
| 47 | #define OMAP44XX_DMA_I2C3_TX 25 | ||
| 48 | #define OMAP44XX_DMA_I2C3_RX 26 | ||
| 49 | #define OMAP44XX_DMA_I2C1_TX 27 | ||
| 50 | #define OMAP44XX_DMA_I2C1_RX 28 | ||
| 51 | #define OMAP44XX_DMA_I2C2_TX 29 | ||
| 52 | #define OMAP44XX_DMA_I2C2_RX 30 | ||
| 53 | #define OMAP44XX_DMA_MCBSP4_TX 31 | ||
| 54 | #define OMAP44XX_DMA_MCBSP4_RX 32 | ||
| 55 | #define OMAP44XX_DMA_MCBSP1_TX 33 | ||
| 56 | #define OMAP44XX_DMA_MCBSP1_RX 34 | ||
| 57 | #define OMAP44XX_DMA_SPI1_TX0 35 | ||
| 58 | #define OMAP44XX_DMA_SPI1_RX0 36 | ||
| 59 | #define OMAP44XX_DMA_SPI1_TX1 37 | ||
| 60 | #define OMAP44XX_DMA_SPI1_RX1 38 | ||
| 61 | #define OMAP44XX_DMA_SPI1_TX2 39 | ||
| 62 | #define OMAP44XX_DMA_SPI1_RX2 40 | ||
| 63 | #define OMAP44XX_DMA_SPI1_TX3 41 | ||
| 64 | #define OMAP44XX_DMA_SPI1_RX3 42 | ||
| 65 | #define OMAP44XX_DMA_SPI2_TX0 43 | ||
| 66 | #define OMAP44XX_DMA_SPI2_RX0 44 | ||
| 67 | #define OMAP44XX_DMA_SPI2_TX1 45 | ||
| 68 | #define OMAP44XX_DMA_SPI2_RX1 46 | ||
| 69 | #define OMAP44XX_DMA_MMC2_TX 47 | ||
| 70 | #define OMAP44XX_DMA_MMC2_RX 48 | ||
| 71 | #define OMAP44XX_DMA_UART1_TX 49 | ||
| 72 | #define OMAP44XX_DMA_UART1_RX 50 | ||
| 73 | #define OMAP44XX_DMA_UART2_TX 51 | ||
| 74 | #define OMAP44XX_DMA_UART2_RX 52 | ||
| 75 | #define OMAP44XX_DMA_UART3_TX 53 | ||
| 76 | #define OMAP44XX_DMA_UART3_RX 54 | ||
| 77 | #define OMAP44XX_DMA_UART4_TX 55 | ||
| 78 | #define OMAP44XX_DMA_UART4_RX 56 | ||
| 79 | #define OMAP44XX_DMA_MMC4_TX 57 | ||
| 80 | #define OMAP44XX_DMA_MMC4_RX 58 | ||
| 81 | #define OMAP44XX_DMA_MMC5_TX 59 | ||
| 82 | #define OMAP44XX_DMA_MMC5_RX 60 | ||
| 83 | #define OMAP44XX_DMA_MMC1_TX 61 | ||
| 84 | #define OMAP44XX_DMA_MMC1_RX 62 | ||
| 85 | #define OMAP44XX_DMA_SYS_REQ3 64 | ||
| 86 | #define OMAP44XX_DMA_MCPDM_UP 65 | ||
| 87 | #define OMAP44XX_DMA_MCPDM_DL 66 | ||
| 88 | #define OMAP44XX_DMA_DMIC_REQ 67 | ||
| 89 | #define OMAP44XX_DMA_C2C_SSCM_GPO2 68 | ||
| 90 | #define OMAP44XX_DMA_C2C_SSCM_GPO3 69 | ||
| 91 | #define OMAP44XX_DMA_SPI4_TX0 70 | ||
| 92 | #define OMAP44XX_DMA_SPI4_RX0 71 | ||
| 93 | #define OMAP44XX_DMA_DSS_DSI1_REQ0 72 | ||
| 94 | #define OMAP44XX_DMA_DSS_DSI1_REQ1 73 | ||
| 95 | #define OMAP44XX_DMA_DSS_DSI1_REQ2 74 | ||
| 96 | #define OMAP44XX_DMA_DSS_DSI1_REQ3 75 | ||
| 97 | #define OMAP44XX_DMA_DSS_HDMI_REQ 76 | ||
| 98 | #define OMAP44XX_DMA_MMC3_TX 77 | ||
| 99 | #define OMAP44XX_DMA_MMC3_RX 78 | ||
| 100 | #define OMAP44XX_DMA_USIM_TX 79 | ||
| 101 | #define OMAP44XX_DMA_USIM_RX 80 | ||
| 102 | #define OMAP44XX_DMA_DSS_DSI2_REQ0 81 | ||
| 103 | #define OMAP44XX_DMA_DSS_DSI2_REQ1 82 | ||
| 104 | #define OMAP44XX_DMA_DSS_DSI2_REQ2 83 | ||
| 105 | #define OMAP44XX_DMA_DSS_DSI2_REQ3 84 | ||
| 106 | #define OMAP44XX_DMA_SLIMBUS1_TX0 85 | ||
| 107 | #define OMAP44XX_DMA_SLIMBUS1_TX1 86 | ||
| 108 | #define OMAP44XX_DMA_SLIMBUS1_TX2 87 | ||
| 109 | #define OMAP44XX_DMA_SLIMBUS1_TX3 88 | ||
| 110 | #define OMAP44XX_DMA_SLIMBUS1_RX0 89 | ||
| 111 | #define OMAP44XX_DMA_SLIMBUS1_RX1 90 | ||
| 112 | #define OMAP44XX_DMA_SLIMBUS1_RX2 91 | ||
| 113 | #define OMAP44XX_DMA_SLIMBUS1_RX3 92 | ||
| 114 | #define OMAP44XX_DMA_SLIMBUS2_TX0 93 | ||
| 115 | #define OMAP44XX_DMA_SLIMBUS2_TX1 94 | ||
| 116 | #define OMAP44XX_DMA_SLIMBUS2_TX2 95 | ||
| 117 | #define OMAP44XX_DMA_SLIMBUS2_TX3 96 | ||
| 118 | #define OMAP44XX_DMA_SLIMBUS2_RX0 97 | ||
| 119 | #define OMAP44XX_DMA_SLIMBUS2_RX1 98 | ||
| 120 | #define OMAP44XX_DMA_SLIMBUS2_RX2 99 | ||
| 121 | #define OMAP44XX_DMA_SLIMBUS2_RX3 100 | ||
| 122 | #define OMAP44XX_DMA_ABE_REQ_0 101 | ||
| 123 | #define OMAP44XX_DMA_ABE_REQ_1 102 | ||
| 124 | #define OMAP44XX_DMA_ABE_REQ_2 103 | ||
| 125 | #define OMAP44XX_DMA_ABE_REQ_3 104 | ||
| 126 | #define OMAP44XX_DMA_ABE_REQ_4 105 | ||
| 127 | #define OMAP44XX_DMA_ABE_REQ_5 106 | ||
| 128 | #define OMAP44XX_DMA_ABE_REQ_6 107 | ||
| 129 | #define OMAP44XX_DMA_ABE_REQ_7 108 | ||
| 130 | #define OMAP44XX_DMA_AES1_P_CTX_IN_REQ 109 | ||
| 131 | #define OMAP44XX_DMA_AES1_P_DATA_IN_REQ 110 | ||
| 132 | #define OMAP44XX_DMA_AES1_P_DATA_OUT_REQ 111 | ||
| 133 | #define OMAP44XX_DMA_AES2_P_CTX_IN_REQ 112 | ||
| 134 | #define OMAP44XX_DMA_AES2_P_DATA_IN_REQ 113 | ||
| 135 | #define OMAP44XX_DMA_AES2_P_DATA_OUT_REQ 114 | ||
| 136 | #define OMAP44XX_DMA_DES_P_CTX_IN_REQ 115 | ||
| 137 | #define OMAP44XX_DMA_DES_P_DATA_IN_REQ 116 | ||
| 138 | #define OMAP44XX_DMA_DES_P_DATA_OUT_REQ 117 | ||
| 139 | #define OMAP44XX_DMA_SHA2_CTXIN_P 118 | ||
| 140 | #define OMAP44XX_DMA_SHA2_DIN_P 119 | ||
| 141 | #define OMAP44XX_DMA_SHA2_CTXOUT_P 120 | ||
| 142 | #define OMAP44XX_DMA_AES1_P_CONTEXT_OUT_REQ 121 | ||
| 143 | #define OMAP44XX_DMA_AES2_P_CONTEXT_OUT_REQ 122 | ||
| 144 | #define OMAP44XX_DMA_I2C4_TX 124 | ||
| 145 | #define OMAP44XX_DMA_I2C4_RX 125 | ||
| 146 | |||
| 147 | #endif | ||
diff --git a/arch/arm/plat-omap/include/plat/dmtimer.h b/arch/arm/plat-omap/include/plat/dmtimer.h index 85868e98c11c..3f5b9cfd9c0b 100644 --- a/arch/arm/plat-omap/include/plat/dmtimer.h +++ b/arch/arm/plat-omap/include/plat/dmtimer.h | |||
| @@ -94,6 +94,7 @@ struct dmtimer_platform_data { | |||
| 94 | /* set_timer_src - Only used for OMAP1 devices */ | 94 | /* set_timer_src - Only used for OMAP1 devices */ |
| 95 | int (*set_timer_src)(struct platform_device *pdev, int source); | 95 | int (*set_timer_src)(struct platform_device *pdev, int source); |
| 96 | u32 timer_capability; | 96 | u32 timer_capability; |
| 97 | int (*get_context_loss_count)(struct device *); | ||
| 97 | }; | 98 | }; |
| 98 | 99 | ||
| 99 | int omap_dm_timer_reserve_systimer(int id); | 100 | int omap_dm_timer_reserve_systimer(int id); |
| @@ -263,6 +264,7 @@ struct omap_dm_timer { | |||
| 263 | unsigned reserved:1; | 264 | unsigned reserved:1; |
| 264 | unsigned posted:1; | 265 | unsigned posted:1; |
| 265 | struct timer_regs context; | 266 | struct timer_regs context; |
| 267 | int (*get_context_loss_count)(struct device *); | ||
| 266 | int ctx_loss_count; | 268 | int ctx_loss_count; |
| 267 | int revision; | 269 | int revision; |
| 268 | u32 capability; | 270 | u32 capability; |
diff --git a/arch/arm/plat-omap/include/plat/fpga.h b/arch/arm/plat-omap/include/plat/fpga.h deleted file mode 100644 index bd3c6324ae1f..000000000000 --- a/arch/arm/plat-omap/include/plat/fpga.h +++ /dev/null | |||
| @@ -1,193 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/plat-omap/include/mach/fpga.h | ||
| 3 | * | ||
| 4 | * Interrupt handler for OMAP-1510 FPGA | ||
| 5 | * | ||
| 6 | * Copyright (C) 2001 RidgeRun, Inc. | ||
| 7 | * Author: Greg Lonnon <glonnon@ridgerun.com> | ||
| 8 | * | ||
| 9 | * Copyright (C) 2002 MontaVista Software, Inc. | ||
| 10 | * | ||
| 11 | * Separated FPGA interrupts from innovator1510.c and cleaned up for 2.6 | ||
| 12 | * Copyright (C) 2004 Nokia Corporation by Tony Lindrgen <tony@atomide.com> | ||
| 13 | * | ||
| 14 | * This program is free software; you can redistribute it and/or modify | ||
| 15 | * it under the terms of the GNU General Public License version 2 as | ||
| 16 | * published by the Free Software Foundation. | ||
| 17 | */ | ||
| 18 | |||
| 19 | #ifndef __ASM_ARCH_OMAP_FPGA_H | ||
| 20 | #define __ASM_ARCH_OMAP_FPGA_H | ||
| 21 | |||
| 22 | extern void omap1510_fpga_init_irq(void); | ||
| 23 | |||
| 24 | #define fpga_read(reg) __raw_readb(reg) | ||
| 25 | #define fpga_write(val, reg) __raw_writeb(val, reg) | ||
| 26 | |||
| 27 | /* | ||
| 28 | * --------------------------------------------------------------------------- | ||
| 29 | * H2/P2 Debug board FPGA | ||
| 30 | * --------------------------------------------------------------------------- | ||
| 31 | */ | ||
| 32 | /* maps in the FPGA registers and the ETHR registers */ | ||
| 33 | #define H2P2_DBG_FPGA_BASE 0xE8000000 /* VA */ | ||
| 34 | #define H2P2_DBG_FPGA_SIZE SZ_4K /* SIZE */ | ||
| 35 | #define H2P2_DBG_FPGA_START 0x04000000 /* PA */ | ||
| 36 | |||
| 37 | #define H2P2_DBG_FPGA_ETHR_START (H2P2_DBG_FPGA_START + 0x300) | ||
| 38 | #define H2P2_DBG_FPGA_FPGA_REV IOMEM(H2P2_DBG_FPGA_BASE + 0x10) /* FPGA Revision */ | ||
| 39 | #define H2P2_DBG_FPGA_BOARD_REV IOMEM(H2P2_DBG_FPGA_BASE + 0x12) /* Board Revision */ | ||
| 40 | #define H2P2_DBG_FPGA_GPIO IOMEM(H2P2_DBG_FPGA_BASE + 0x14) /* GPIO outputs */ | ||
| 41 | #define H2P2_DBG_FPGA_LEDS IOMEM(H2P2_DBG_FPGA_BASE + 0x16) /* LEDs outputs */ | ||
| 42 | #define H2P2_DBG_FPGA_MISC_INPUTS IOMEM(H2P2_DBG_FPGA_BASE + 0x18) /* Misc inputs */ | ||
| 43 | #define H2P2_DBG_FPGA_LAN_STATUS IOMEM(H2P2_DBG_FPGA_BASE + 0x1A) /* LAN Status line */ | ||
| 44 | #define H2P2_DBG_FPGA_LAN_RESET IOMEM(H2P2_DBG_FPGA_BASE + 0x1C) /* LAN Reset line */ | ||
| 45 | |||
| 46 | /* NOTE: most boards don't have a static mapping for the FPGA ... */ | ||
| 47 | struct h2p2_dbg_fpga { | ||
| 48 | /* offset 0x00 */ | ||
| 49 | u16 smc91x[8]; | ||
| 50 | /* offset 0x10 */ | ||
| 51 | u16 fpga_rev; | ||
| 52 | u16 board_rev; | ||
| 53 | u16 gpio_outputs; | ||
| 54 | u16 leds; | ||
| 55 | /* offset 0x18 */ | ||
| 56 | u16 misc_inputs; | ||
| 57 | u16 lan_status; | ||
| 58 | u16 lan_reset; | ||
| 59 | u16 reserved0; | ||
| 60 | /* offset 0x20 */ | ||
| 61 | u16 ps2_data; | ||
| 62 | u16 ps2_ctrl; | ||
| 63 | /* plus also 4 rs232 ports ... */ | ||
| 64 | }; | ||
| 65 | |||
| 66 | /* LEDs definition on debug board (16 LEDs, all physically green) */ | ||
| 67 | #define H2P2_DBG_FPGA_LED_GREEN (1 << 15) | ||
| 68 | #define H2P2_DBG_FPGA_LED_AMBER (1 << 14) | ||
| 69 | #define H2P2_DBG_FPGA_LED_RED (1 << 13) | ||
| 70 | #define H2P2_DBG_FPGA_LED_BLUE (1 << 12) | ||
| 71 | /* cpu0 load-meter LEDs */ | ||
| 72 | #define H2P2_DBG_FPGA_LOAD_METER (1 << 0) // A bit of fun on our board ... | ||
| 73 | #define H2P2_DBG_FPGA_LOAD_METER_SIZE 11 | ||
| 74 | #define H2P2_DBG_FPGA_LOAD_METER_MASK ((1 << H2P2_DBG_FPGA_LOAD_METER_SIZE) - 1) | ||
| 75 | |||
| 76 | #define H2P2_DBG_FPGA_P2_LED_TIMER (1 << 0) | ||
| 77 | #define H2P2_DBG_FPGA_P2_LED_IDLE (1 << 1) | ||
| 78 | |||
| 79 | /* | ||
| 80 | * --------------------------------------------------------------------------- | ||
| 81 | * OMAP-1510 FPGA | ||
| 82 | * --------------------------------------------------------------------------- | ||
| 83 | */ | ||
| 84 | #define OMAP1510_FPGA_BASE 0xE8000000 /* VA */ | ||
| 85 | #define OMAP1510_FPGA_SIZE SZ_4K | ||
| 86 | #define OMAP1510_FPGA_START 0x08000000 /* PA */ | ||
| 87 | |||
| 88 | /* Revision */ | ||
| 89 | #define OMAP1510_FPGA_REV_LOW IOMEM(OMAP1510_FPGA_BASE + 0x0) | ||
| 90 | #define OMAP1510_FPGA_REV_HIGH IOMEM(OMAP1510_FPGA_BASE + 0x1) | ||
| 91 | |||
| 92 | #define OMAP1510_FPGA_LCD_PANEL_CONTROL IOMEM(OMAP1510_FPGA_BASE + 0x2) | ||
| 93 | #define OMAP1510_FPGA_LED_DIGIT IOMEM(OMAP1510_FPGA_BASE + 0x3) | ||
| 94 | #define INNOVATOR_FPGA_HID_SPI IOMEM(OMAP1510_FPGA_BASE + 0x4) | ||
| 95 | #define OMAP1510_FPGA_POWER IOMEM(OMAP1510_FPGA_BASE + 0x5) | ||
| 96 | |||
| 97 | /* Interrupt status */ | ||
| 98 | #define OMAP1510_FPGA_ISR_LO IOMEM(OMAP1510_FPGA_BASE + 0x6) | ||
| 99 | #define OMAP1510_FPGA_ISR_HI IOMEM(OMAP1510_FPGA_BASE + 0x7) | ||
| 100 | |||
| 101 | /* Interrupt mask */ | ||
| 102 | #define OMAP1510_FPGA_IMR_LO IOMEM(OMAP1510_FPGA_BASE + 0x8) | ||
| 103 | #define OMAP1510_FPGA_IMR_HI IOMEM(OMAP1510_FPGA_BASE + 0x9) | ||
| 104 | |||
| 105 | /* Reset registers */ | ||
| 106 | #define OMAP1510_FPGA_HOST_RESET IOMEM(OMAP1510_FPGA_BASE + 0xa) | ||
| 107 | #define OMAP1510_FPGA_RST IOMEM(OMAP1510_FPGA_BASE + 0xb) | ||
| 108 | |||
| 109 | #define OMAP1510_FPGA_AUDIO IOMEM(OMAP1510_FPGA_BASE + 0xc) | ||
| 110 | #define OMAP1510_FPGA_DIP IOMEM(OMAP1510_FPGA_BASE + 0xe) | ||
| 111 | #define OMAP1510_FPGA_FPGA_IO IOMEM(OMAP1510_FPGA_BASE + 0xf) | ||
| 112 | #define OMAP1510_FPGA_UART1 IOMEM(OMAP1510_FPGA_BASE + 0x14) | ||
| 113 | #define OMAP1510_FPGA_UART2 IOMEM(OMAP1510_FPGA_BASE + 0x15) | ||
| 114 | #define OMAP1510_FPGA_OMAP1510_STATUS IOMEM(OMAP1510_FPGA_BASE + 0x16) | ||
| 115 | #define OMAP1510_FPGA_BOARD_REV IOMEM(OMAP1510_FPGA_BASE + 0x18) | ||
| 116 | #define OMAP1510P1_PPT_DATA IOMEM(OMAP1510_FPGA_BASE + 0x100) | ||
| 117 | #define OMAP1510P1_PPT_STATUS IOMEM(OMAP1510_FPGA_BASE + 0x101) | ||
| 118 | #define OMAP1510P1_PPT_CONTROL IOMEM(OMAP1510_FPGA_BASE + 0x102) | ||
| 119 | |||
| 120 | #define OMAP1510_FPGA_TOUCHSCREEN IOMEM(OMAP1510_FPGA_BASE + 0x204) | ||
| 121 | |||
| 122 | #define INNOVATOR_FPGA_INFO IOMEM(OMAP1510_FPGA_BASE + 0x205) | ||
| 123 | #define INNOVATOR_FPGA_LCD_BRIGHT_LO IOMEM(OMAP1510_FPGA_BASE + 0x206) | ||
| 124 | #define INNOVATOR_FPGA_LCD_BRIGHT_HI IOMEM(OMAP1510_FPGA_BASE + 0x207) | ||
| 125 | #define INNOVATOR_FPGA_LED_GRN_LO IOMEM(OMAP1510_FPGA_BASE + 0x208) | ||
| 126 | #define INNOVATOR_FPGA_LED_GRN_HI IOMEM(OMAP1510_FPGA_BASE + 0x209) | ||
| 127 | #define INNOVATOR_FPGA_LED_RED_LO IOMEM(OMAP1510_FPGA_BASE + 0x20a) | ||
| 128 | #define INNOVATOR_FPGA_LED_RED_HI IOMEM(OMAP1510_FPGA_BASE + 0x20b) | ||
| 129 | #define INNOVATOR_FPGA_CAM_USB_CONTROL IOMEM(OMAP1510_FPGA_BASE + 0x20c) | ||
| 130 | #define INNOVATOR_FPGA_EXP_CONTROL IOMEM(OMAP1510_FPGA_BASE + 0x20d) | ||
| 131 | #define INNOVATOR_FPGA_ISR2 IOMEM(OMAP1510_FPGA_BASE + 0x20e) | ||
| 132 | #define INNOVATOR_FPGA_IMR2 IOMEM(OMAP1510_FPGA_BASE + 0x210) | ||
| 133 | |||
| 134 | #define OMAP1510_FPGA_ETHR_START (OMAP1510_FPGA_START + 0x300) | ||
| 135 | |||
| 136 | /* | ||
| 137 | * Power up Giga UART driver, turn on HID clock. | ||
| 138 | * Turn off BT power, since we're not using it and it | ||
| 139 | * draws power. | ||
| 140 | */ | ||
| 141 | #define OMAP1510_FPGA_RESET_VALUE 0x42 | ||
| 142 | |||
| 143 | #define OMAP1510_FPGA_PCR_IF_PD0 (1 << 7) | ||
| 144 | #define OMAP1510_FPGA_PCR_COM2_EN (1 << 6) | ||
| 145 | #define OMAP1510_FPGA_PCR_COM1_EN (1 << 5) | ||
| 146 | #define OMAP1510_FPGA_PCR_EXP_PD0 (1 << 4) | ||
| 147 | #define OMAP1510_FPGA_PCR_EXP_PD1 (1 << 3) | ||
| 148 | #define OMAP1510_FPGA_PCR_48MHZ_CLK (1 << 2) | ||
| 149 | #define OMAP1510_FPGA_PCR_4MHZ_CLK (1 << 1) | ||
| 150 | #define OMAP1510_FPGA_PCR_RSRVD_BIT0 (1 << 0) | ||
| 151 | |||
| 152 | /* | ||
| 153 | * Innovator/OMAP1510 FPGA HID register bit definitions | ||
| 154 | */ | ||
| 155 | #define OMAP1510_FPGA_HID_SCLK (1<<0) /* output */ | ||
| 156 | #define OMAP1510_FPGA_HID_MOSI (1<<1) /* output */ | ||
| 157 | #define OMAP1510_FPGA_HID_nSS (1<<2) /* output 0/1 chip idle/select */ | ||
| 158 | #define OMAP1510_FPGA_HID_nHSUS (1<<3) /* output 0/1 host active/suspended */ | ||
| 159 | #define OMAP1510_FPGA_HID_MISO (1<<4) /* input */ | ||
| 160 | #define OMAP1510_FPGA_HID_ATN (1<<5) /* input 0/1 chip idle/ATN */ | ||
| 161 | #define OMAP1510_FPGA_HID_rsrvd (1<<6) | ||
| 162 | #define OMAP1510_FPGA_HID_RESETn (1<<7) /* output - 0/1 USAR reset/run */ | ||
| 163 | |||
| 164 | /* The FPGA IRQ is cascaded through GPIO_13 */ | ||
| 165 | #define OMAP1510_INT_FPGA (IH_GPIO_BASE + 13) | ||
| 166 | |||
| 167 | /* IRQ Numbers for interrupts muxed through the FPGA */ | ||
| 168 | #define OMAP1510_INT_FPGA_ATN (OMAP_FPGA_IRQ_BASE + 0) | ||
| 169 | #define OMAP1510_INT_FPGA_ACK (OMAP_FPGA_IRQ_BASE + 1) | ||
| 170 | #define OMAP1510_INT_FPGA2 (OMAP_FPGA_IRQ_BASE + 2) | ||
| 171 | #define OMAP1510_INT_FPGA3 (OMAP_FPGA_IRQ_BASE + 3) | ||
| 172 | #define OMAP1510_INT_FPGA4 (OMAP_FPGA_IRQ_BASE + 4) | ||
| 173 | #define OMAP1510_INT_FPGA5 (OMAP_FPGA_IRQ_BASE + 5) | ||
| 174 | #define OMAP1510_INT_FPGA6 (OMAP_FPGA_IRQ_BASE + 6) | ||
| 175 | #define OMAP1510_INT_FPGA7 (OMAP_FPGA_IRQ_BASE + 7) | ||
| 176 | #define OMAP1510_INT_FPGA8 (OMAP_FPGA_IRQ_BASE + 8) | ||
| 177 | #define OMAP1510_INT_FPGA9 (OMAP_FPGA_IRQ_BASE + 9) | ||
| 178 | #define OMAP1510_INT_FPGA10 (OMAP_FPGA_IRQ_BASE + 10) | ||
| 179 | #define OMAP1510_INT_FPGA11 (OMAP_FPGA_IRQ_BASE + 11) | ||
| 180 | #define OMAP1510_INT_FPGA12 (OMAP_FPGA_IRQ_BASE + 12) | ||
| 181 | #define OMAP1510_INT_ETHER (OMAP_FPGA_IRQ_BASE + 13) | ||
| 182 | #define OMAP1510_INT_FPGAUART1 (OMAP_FPGA_IRQ_BASE + 14) | ||
| 183 | #define OMAP1510_INT_FPGAUART2 (OMAP_FPGA_IRQ_BASE + 15) | ||
| 184 | #define OMAP1510_INT_FPGA_TS (OMAP_FPGA_IRQ_BASE + 16) | ||
| 185 | #define OMAP1510_INT_FPGA17 (OMAP_FPGA_IRQ_BASE + 17) | ||
| 186 | #define OMAP1510_INT_FPGA_CAM (OMAP_FPGA_IRQ_BASE + 18) | ||
| 187 | #define OMAP1510_INT_FPGA_RTC_A (OMAP_FPGA_IRQ_BASE + 19) | ||
| 188 | #define OMAP1510_INT_FPGA_RTC_B (OMAP_FPGA_IRQ_BASE + 20) | ||
| 189 | #define OMAP1510_INT_FPGA_CD (OMAP_FPGA_IRQ_BASE + 21) | ||
| 190 | #define OMAP1510_INT_FPGA22 (OMAP_FPGA_IRQ_BASE + 22) | ||
| 191 | #define OMAP1510_INT_FPGA23 (OMAP_FPGA_IRQ_BASE + 23) | ||
| 192 | |||
| 193 | #endif | ||
diff --git a/arch/arm/plat-omap/include/plat/i2c.h b/arch/arm/plat-omap/include/plat/i2c.h index 7c22b9e10dc3..7a9028cb5a75 100644 --- a/arch/arm/plat-omap/include/plat/i2c.h +++ b/arch/arm/plat-omap/include/plat/i2c.h | |||
| @@ -18,11 +18,15 @@ | |||
| 18 | * 02110-1301 USA | 18 | * 02110-1301 USA |
| 19 | * | 19 | * |
| 20 | */ | 20 | */ |
| 21 | #ifndef __ASM__ARCH_OMAP_I2C_H | ||
| 22 | #define __ASM__ARCH_OMAP_I2C_H | ||
| 23 | 21 | ||
| 24 | #include <linux/i2c.h> | 22 | #ifndef __PLAT_OMAP_I2C_H |
| 25 | #include <linux/i2c-omap.h> | 23 | #define __PLAT_OMAP_I2C_H |
| 24 | |||
| 25 | struct i2c_board_info; | ||
| 26 | struct omap_i2c_bus_platform_data; | ||
| 27 | |||
| 28 | int omap_i2c_add_bus(struct omap_i2c_bus_platform_data *i2c_pdata, | ||
| 29 | int bus_id); | ||
| 26 | 30 | ||
| 27 | #if defined(CONFIG_I2C_OMAP) || defined(CONFIG_I2C_OMAP_MODULE) | 31 | #if defined(CONFIG_I2C_OMAP) || defined(CONFIG_I2C_OMAP_MODULE) |
| 28 | extern int omap_register_i2c_bus(int bus_id, u32 clkrate, | 32 | extern int omap_register_i2c_bus(int bus_id, u32 clkrate, |
| @@ -37,23 +41,7 @@ static inline int omap_register_i2c_bus(int bus_id, u32 clkrate, | |||
| 37 | } | 41 | } |
| 38 | #endif | 42 | #endif |
| 39 | 43 | ||
| 40 | /** | ||
| 41 | * i2c_dev_attr - OMAP I2C controller device attributes for omap_hwmod | ||
| 42 | * @fifo_depth: total controller FIFO size (in bytes) | ||
| 43 | * @flags: differences in hardware support capability | ||
| 44 | * | ||
| 45 | * @fifo_depth represents what exists on the hardware, not what is | ||
| 46 | * actually configured at runtime by the device driver. | ||
| 47 | */ | ||
| 48 | struct omap_i2c_dev_attr { | ||
| 49 | u8 fifo_depth; | ||
| 50 | u32 flags; | ||
| 51 | }; | ||
| 52 | |||
| 53 | void __init omap1_i2c_mux_pins(int bus_id); | ||
| 54 | void __init omap2_i2c_mux_pins(int bus_id); | ||
| 55 | |||
| 56 | struct omap_hwmod; | 44 | struct omap_hwmod; |
| 57 | int omap_i2c_reset(struct omap_hwmod *oh); | 45 | int omap_i2c_reset(struct omap_hwmod *oh); |
| 58 | 46 | ||
| 59 | #endif /* __ASM__ARCH_OMAP_I2C_H */ | 47 | #endif /* __PLAT_OMAP_I2C_H */ |
diff --git a/arch/arm/plat-omap/include/plat/led.h b/arch/arm/plat-omap/include/plat/led.h deleted file mode 100644 index 25e451e7e2fd..000000000000 --- a/arch/arm/plat-omap/include/plat/led.h +++ /dev/null | |||
| @@ -1,24 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/plat-omap/include/mach/led.h | ||
| 3 | * | ||
| 4 | * Copyright (C) 2006 Samsung Electronics | ||
| 5 | * Kyungmin Park <kyungmin.park@samsung.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | */ | ||
| 11 | #ifndef ASMARM_ARCH_LED_H | ||
| 12 | #define ASMARM_ARCH_LED_H | ||
| 13 | |||
| 14 | struct omap_led_config { | ||
| 15 | struct led_classdev cdev; | ||
| 16 | s16 gpio; | ||
| 17 | }; | ||
| 18 | |||
| 19 | struct omap_led_platform_data { | ||
| 20 | s16 nr_leds; | ||
| 21 | struct omap_led_config *leds; | ||
| 22 | }; | ||
| 23 | |||
| 24 | #endif | ||
diff --git a/arch/arm/plat-omap/include/plat/menelaus.h b/arch/arm/plat-omap/include/plat/menelaus.h deleted file mode 100644 index 4a970ec62dd1..000000000000 --- a/arch/arm/plat-omap/include/plat/menelaus.h +++ /dev/null | |||
| @@ -1,49 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/plat-omap/include/mach/menelaus.h | ||
| 3 | * | ||
| 4 | * Functions to access Menelaus power management chip | ||
| 5 | */ | ||
| 6 | |||
| 7 | #ifndef __ASM_ARCH_MENELAUS_H | ||
| 8 | #define __ASM_ARCH_MENELAUS_H | ||
| 9 | |||
| 10 | struct device; | ||
| 11 | |||
| 12 | struct menelaus_platform_data { | ||
| 13 | int (* late_init)(struct device *dev); | ||
| 14 | }; | ||
| 15 | |||
| 16 | extern int menelaus_register_mmc_callback(void (*callback)(void *data, u8 card_mask), | ||
| 17 | void *data); | ||
| 18 | extern void menelaus_unregister_mmc_callback(void); | ||
| 19 | extern int menelaus_set_mmc_opendrain(int slot, int enable); | ||
| 20 | extern int menelaus_set_mmc_slot(int slot, int enable, int power, int cd_on); | ||
| 21 | |||
| 22 | extern int menelaus_set_vmem(unsigned int mV); | ||
| 23 | extern int menelaus_set_vio(unsigned int mV); | ||
| 24 | extern int menelaus_set_vmmc(unsigned int mV); | ||
| 25 | extern int menelaus_set_vaux(unsigned int mV); | ||
| 26 | extern int menelaus_set_vdcdc(int dcdc, unsigned int mV); | ||
| 27 | extern int menelaus_set_slot_sel(int enable); | ||
| 28 | extern int menelaus_get_slot_pin_states(void); | ||
| 29 | extern int menelaus_set_vcore_sw(unsigned int mV); | ||
| 30 | extern int menelaus_set_vcore_hw(unsigned int roof_mV, unsigned int floor_mV); | ||
| 31 | |||
| 32 | #define EN_VPLL_SLEEP (1 << 7) | ||
| 33 | #define EN_VMMC_SLEEP (1 << 6) | ||
| 34 | #define EN_VAUX_SLEEP (1 << 5) | ||
| 35 | #define EN_VIO_SLEEP (1 << 4) | ||
| 36 | #define EN_VMEM_SLEEP (1 << 3) | ||
| 37 | #define EN_DC3_SLEEP (1 << 2) | ||
| 38 | #define EN_DC2_SLEEP (1 << 1) | ||
| 39 | #define EN_VC_SLEEP (1 << 0) | ||
| 40 | |||
| 41 | extern int menelaus_set_regulator_sleep(int enable, u32 val); | ||
| 42 | |||
| 43 | #if defined(CONFIG_ARCH_OMAP2) && defined(CONFIG_MENELAUS) | ||
| 44 | #define omap_has_menelaus() 1 | ||
| 45 | #else | ||
| 46 | #define omap_has_menelaus() 0 | ||
| 47 | #endif | ||
| 48 | |||
| 49 | #endif | ||
diff --git a/arch/arm/plat-omap/include/plat/mmc.h b/arch/arm/plat-omap/include/plat/mmc.h deleted file mode 100644 index 8b4e4f2da2f5..000000000000 --- a/arch/arm/plat-omap/include/plat/mmc.h +++ /dev/null | |||
| @@ -1,188 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * MMC definitions for OMAP2 | ||
| 3 | * | ||
| 4 | * Copyright (C) 2006 Nokia Corporation | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License version 2 as | ||
| 8 | * published by the Free Software Foundation. | ||
| 9 | */ | ||
| 10 | |||
| 11 | #ifndef __OMAP2_MMC_H | ||
| 12 | #define __OMAP2_MMC_H | ||
| 13 | |||
| 14 | #include <linux/types.h> | ||
| 15 | #include <linux/device.h> | ||
| 16 | #include <linux/mmc/host.h> | ||
| 17 | |||
| 18 | #include <plat/omap_hwmod.h> | ||
| 19 | |||
| 20 | #define OMAP15XX_NR_MMC 1 | ||
| 21 | #define OMAP16XX_NR_MMC 2 | ||
| 22 | #define OMAP1_MMC_SIZE 0x080 | ||
| 23 | #define OMAP1_MMC1_BASE 0xfffb7800 | ||
| 24 | #define OMAP1_MMC2_BASE 0xfffb7c00 /* omap16xx only */ | ||
| 25 | |||
| 26 | #define OMAP24XX_NR_MMC 2 | ||
| 27 | #define OMAP2420_MMC_SIZE OMAP1_MMC_SIZE | ||
| 28 | #define OMAP2_MMC1_BASE 0x4809c000 | ||
| 29 | |||
| 30 | #define OMAP4_MMC_REG_OFFSET 0x100 | ||
| 31 | |||
| 32 | #define OMAP_MMC_MAX_SLOTS 2 | ||
| 33 | |||
| 34 | /* | ||
| 35 | * struct omap_mmc_dev_attr.flags possibilities | ||
| 36 | * | ||
| 37 | * OMAP_HSMMC_SUPPORTS_DUAL_VOLT: Some HSMMC controller instances can | ||
| 38 | * operate with either 1.8Vdc or 3.0Vdc card voltages; this flag | ||
| 39 | * should be set if this is the case. See for example Section 22.5.3 | ||
| 40 | * "MMC/SD/SDIO1 Bus Voltage Selection" of the OMAP34xx Multimedia | ||
| 41 | * Device Silicon Revision 3.1.x Revision ZR (July 2011) (SWPU223R). | ||
| 42 | * | ||
| 43 | * OMAP_HSMMC_BROKEN_MULTIBLOCK_READ: Multiple-block read transfers | ||
| 44 | * don't work correctly on some MMC controller instances on some | ||
| 45 | * OMAP3 SoCs; this flag should be set if this is the case. See | ||
| 46 | * for example Advisory 2.1.1.128 "MMC: Multiple Block Read | ||
| 47 | * Operation Issue" in _OMAP3530/3525/3515/3503 Silicon Errata_ | ||
| 48 | * Revision F (October 2010) (SPRZ278F). | ||
| 49 | */ | ||
| 50 | #define OMAP_HSMMC_SUPPORTS_DUAL_VOLT BIT(0) | ||
| 51 | #define OMAP_HSMMC_BROKEN_MULTIBLOCK_READ BIT(1) | ||
| 52 | |||
| 53 | struct omap_mmc_dev_attr { | ||
| 54 | u8 flags; | ||
| 55 | }; | ||
| 56 | |||
| 57 | struct omap_mmc_platform_data { | ||
| 58 | /* back-link to device */ | ||
| 59 | struct device *dev; | ||
| 60 | |||
| 61 | /* number of slots per controller */ | ||
| 62 | unsigned nr_slots:2; | ||
| 63 | |||
| 64 | /* set if your board has components or wiring that limits the | ||
| 65 | * maximum frequency on the MMC bus */ | ||
| 66 | unsigned int max_freq; | ||
| 67 | |||
| 68 | /* switch the bus to a new slot */ | ||
| 69 | int (*switch_slot)(struct device *dev, int slot); | ||
| 70 | /* initialize board-specific MMC functionality, can be NULL if | ||
| 71 | * not supported */ | ||
| 72 | int (*init)(struct device *dev); | ||
| 73 | void (*cleanup)(struct device *dev); | ||
| 74 | void (*shutdown)(struct device *dev); | ||
| 75 | |||
| 76 | /* To handle board related suspend/resume functionality for MMC */ | ||
| 77 | int (*suspend)(struct device *dev, int slot); | ||
| 78 | int (*resume)(struct device *dev, int slot); | ||
| 79 | |||
| 80 | /* Return context loss count due to PM states changing */ | ||
| 81 | int (*get_context_loss_count)(struct device *dev); | ||
| 82 | |||
| 83 | /* Integrating attributes from the omap_hwmod layer */ | ||
| 84 | u8 controller_flags; | ||
| 85 | |||
| 86 | /* Register offset deviation */ | ||
| 87 | u16 reg_offset; | ||
| 88 | |||
| 89 | struct omap_mmc_slot_data { | ||
| 90 | |||
| 91 | /* | ||
| 92 | * 4/8 wires and any additional host capabilities | ||
| 93 | * need to OR'd all capabilities (ref. linux/mmc/host.h) | ||
| 94 | */ | ||
| 95 | u8 wires; /* Used for the MMC driver on omap1 and 2420 */ | ||
| 96 | u32 caps; /* Used for the MMC driver on 2430 and later */ | ||
| 97 | u32 pm_caps; /* PM capabilities of the mmc */ | ||
| 98 | |||
| 99 | /* | ||
| 100 | * nomux means "standard" muxing is wrong on this board, and | ||
| 101 | * that board-specific code handled it before common init logic. | ||
| 102 | */ | ||
| 103 | unsigned nomux:1; | ||
| 104 | |||
| 105 | /* switch pin can be for card detect (default) or card cover */ | ||
| 106 | unsigned cover:1; | ||
| 107 | |||
| 108 | /* use the internal clock */ | ||
| 109 | unsigned internal_clock:1; | ||
| 110 | |||
| 111 | /* nonremovable e.g. eMMC */ | ||
| 112 | unsigned nonremovable:1; | ||
| 113 | |||
| 114 | /* Try to sleep or power off when possible */ | ||
| 115 | unsigned power_saving:1; | ||
| 116 | |||
| 117 | /* If using power_saving and the MMC power is not to go off */ | ||
| 118 | unsigned no_off:1; | ||
| 119 | |||
| 120 | /* eMMC does not handle power off when not in sleep state */ | ||
| 121 | unsigned no_regulator_off_init:1; | ||
| 122 | |||
| 123 | /* Regulator off remapped to sleep */ | ||
| 124 | unsigned vcc_aux_disable_is_sleep:1; | ||
| 125 | |||
| 126 | /* we can put the features above into this variable */ | ||
| 127 | #define HSMMC_HAS_PBIAS (1 << 0) | ||
| 128 | #define HSMMC_HAS_UPDATED_RESET (1 << 1) | ||
| 129 | unsigned features; | ||
| 130 | |||
| 131 | int switch_pin; /* gpio (card detect) */ | ||
| 132 | int gpio_wp; /* gpio (write protect) */ | ||
| 133 | |||
| 134 | int (*set_bus_mode)(struct device *dev, int slot, int bus_mode); | ||
| 135 | int (*set_power)(struct device *dev, int slot, | ||
| 136 | int power_on, int vdd); | ||
| 137 | int (*get_ro)(struct device *dev, int slot); | ||
| 138 | void (*remux)(struct device *dev, int slot, int power_on); | ||
| 139 | /* Call back before enabling / disabling regulators */ | ||
| 140 | void (*before_set_reg)(struct device *dev, int slot, | ||
| 141 | int power_on, int vdd); | ||
| 142 | /* Call back after enabling / disabling regulators */ | ||
| 143 | void (*after_set_reg)(struct device *dev, int slot, | ||
| 144 | int power_on, int vdd); | ||
| 145 | /* if we have special card, init it using this callback */ | ||
| 146 | void (*init_card)(struct mmc_card *card); | ||
| 147 | |||
| 148 | /* return MMC cover switch state, can be NULL if not supported. | ||
| 149 | * | ||
| 150 | * possible return values: | ||
| 151 | * 0 - closed | ||
| 152 | * 1 - open | ||
| 153 | */ | ||
| 154 | int (*get_cover_state)(struct device *dev, int slot); | ||
| 155 | |||
| 156 | const char *name; | ||
| 157 | u32 ocr_mask; | ||
| 158 | |||
| 159 | /* Card detection IRQs */ | ||
| 160 | int card_detect_irq; | ||
| 161 | int (*card_detect)(struct device *dev, int slot); | ||
| 162 | |||
| 163 | unsigned int ban_openended:1; | ||
| 164 | |||
| 165 | } slots[OMAP_MMC_MAX_SLOTS]; | ||
| 166 | }; | ||
| 167 | |||
| 168 | /* called from board-specific card detection service routine */ | ||
| 169 | extern void omap_mmc_notify_cover_event(struct device *dev, int slot, | ||
| 170 | int is_closed); | ||
| 171 | |||
| 172 | #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) | ||
| 173 | void omap1_init_mmc(struct omap_mmc_platform_data **mmc_data, | ||
| 174 | int nr_controllers); | ||
| 175 | void omap242x_init_mmc(struct omap_mmc_platform_data **mmc_data); | ||
| 176 | #else | ||
| 177 | static inline void omap1_init_mmc(struct omap_mmc_platform_data **mmc_data, | ||
| 178 | int nr_controllers) | ||
| 179 | { | ||
| 180 | } | ||
| 181 | static inline void omap242x_init_mmc(struct omap_mmc_platform_data **mmc_data) | ||
| 182 | { | ||
| 183 | } | ||
| 184 | #endif | ||
| 185 | |||
| 186 | extern int omap_msdi_reset(struct omap_hwmod *oh); | ||
| 187 | |||
| 188 | #endif | ||
diff --git a/arch/arm/plat-omap/include/plat/multi.h b/arch/arm/plat-omap/include/plat/multi.h deleted file mode 100644 index 324d31b14852..000000000000 --- a/arch/arm/plat-omap/include/plat/multi.h +++ /dev/null | |||
| @@ -1,120 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Support for compiling in multiple OMAP processors | ||
| 3 | * | ||
| 4 | * Copyright (C) 2010 Nokia Corporation | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | * | ||
| 11 | * This program is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | * GNU General Public License for more details. | ||
| 15 | * | ||
| 16 | * You should have received a copy of the GNU General Public License | ||
| 17 | * along with this program; if not, write to the Free Software | ||
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 19 | * | ||
| 20 | */ | ||
| 21 | |||
| 22 | #ifndef __PLAT_OMAP_MULTI_H | ||
| 23 | #define __PLAT_OMAP_MULTI_H | ||
| 24 | |||
| 25 | /* | ||
| 26 | * Test if multicore OMAP support is needed | ||
| 27 | */ | ||
| 28 | #undef MULTI_OMAP1 | ||
| 29 | #undef MULTI_OMAP2 | ||
| 30 | #undef OMAP_NAME | ||
| 31 | |||
| 32 | #ifdef CONFIG_ARCH_OMAP730 | ||
| 33 | # ifdef OMAP_NAME | ||
| 34 | # undef MULTI_OMAP1 | ||
| 35 | # define MULTI_OMAP1 | ||
| 36 | # else | ||
| 37 | # define OMAP_NAME omap730 | ||
| 38 | # endif | ||
| 39 | #endif | ||
| 40 | #ifdef CONFIG_ARCH_OMAP850 | ||
| 41 | # ifdef OMAP_NAME | ||
| 42 | # undef MULTI_OMAP1 | ||
| 43 | # define MULTI_OMAP1 | ||
| 44 | # else | ||
| 45 | # define OMAP_NAME omap850 | ||
| 46 | # endif | ||
| 47 | #endif | ||
| 48 | #ifdef CONFIG_ARCH_OMAP15XX | ||
| 49 | # ifdef OMAP_NAME | ||
| 50 | # undef MULTI_OMAP1 | ||
| 51 | # define MULTI_OMAP1 | ||
| 52 | # else | ||
| 53 | # define OMAP_NAME omap1510 | ||
| 54 | # endif | ||
| 55 | #endif | ||
| 56 | #ifdef CONFIG_ARCH_OMAP16XX | ||
| 57 | # ifdef OMAP_NAME | ||
| 58 | # undef MULTI_OMAP1 | ||
| 59 | # define MULTI_OMAP1 | ||
| 60 | # else | ||
| 61 | # define OMAP_NAME omap16xx | ||
| 62 | # endif | ||
| 63 | #endif | ||
| 64 | #ifdef CONFIG_ARCH_OMAP2PLUS | ||
| 65 | # if (defined(OMAP_NAME) || defined(MULTI_OMAP1)) | ||
| 66 | # error "OMAP1 and OMAP2PLUS can't be selected at the same time" | ||
| 67 | # endif | ||
| 68 | #endif | ||
| 69 | #ifdef CONFIG_SOC_OMAP2420 | ||
| 70 | # ifdef OMAP_NAME | ||
| 71 | # undef MULTI_OMAP2 | ||
| 72 | # define MULTI_OMAP2 | ||
| 73 | # else | ||
| 74 | # define OMAP_NAME omap2420 | ||
| 75 | # endif | ||
| 76 | #endif | ||
| 77 | #ifdef CONFIG_SOC_OMAP2430 | ||
| 78 | # ifdef OMAP_NAME | ||
| 79 | # undef MULTI_OMAP2 | ||
| 80 | # define MULTI_OMAP2 | ||
| 81 | # else | ||
| 82 | # define OMAP_NAME omap2430 | ||
| 83 | # endif | ||
| 84 | #endif | ||
| 85 | #ifdef CONFIG_ARCH_OMAP3 | ||
| 86 | # ifdef OMAP_NAME | ||
| 87 | # undef MULTI_OMAP2 | ||
| 88 | # define MULTI_OMAP2 | ||
| 89 | # else | ||
| 90 | # define OMAP_NAME omap3 | ||
| 91 | # endif | ||
| 92 | #endif | ||
| 93 | #ifdef CONFIG_ARCH_OMAP4 | ||
| 94 | # ifdef OMAP_NAME | ||
| 95 | # undef MULTI_OMAP2 | ||
| 96 | # define MULTI_OMAP2 | ||
| 97 | # else | ||
| 98 | # define OMAP_NAME omap4 | ||
| 99 | # endif | ||
| 100 | #endif | ||
| 101 | |||
| 102 | #ifdef CONFIG_SOC_OMAP5 | ||
| 103 | # ifdef OMAP_NAME | ||
| 104 | # undef MULTI_OMAP2 | ||
| 105 | # define MULTI_OMAP2 | ||
| 106 | # else | ||
| 107 | # define OMAP_NAME omap5 | ||
| 108 | # endif | ||
| 109 | #endif | ||
| 110 | |||
| 111 | #ifdef CONFIG_SOC_AM33XX | ||
| 112 | # ifdef OMAP_NAME | ||
| 113 | # undef MULTI_OMAP2 | ||
| 114 | # define MULTI_OMAP2 | ||
| 115 | # else | ||
| 116 | # define OMAP_NAME am33xx | ||
| 117 | # endif | ||
| 118 | #endif | ||
| 119 | |||
| 120 | #endif /* __PLAT_OMAP_MULTI_H */ | ||
diff --git a/arch/arm/plat-omap/include/plat/omap-secure.h b/arch/arm/plat-omap/include/plat/omap-secure.h deleted file mode 100644 index 0e4acd2d2deb..000000000000 --- a/arch/arm/plat-omap/include/plat/omap-secure.h +++ /dev/null | |||
| @@ -1,14 +0,0 @@ | |||
| 1 | #ifndef __OMAP_SECURE_H__ | ||
| 2 | #define __OMAP_SECURE_H__ | ||
| 3 | |||
| 4 | #include <linux/types.h> | ||
| 5 | |||
| 6 | extern int omap_secure_ram_reserve_memblock(void); | ||
| 7 | |||
| 8 | #ifdef CONFIG_OMAP4_ERRATA_I688 | ||
| 9 | extern int omap_barrier_reserve_memblock(void); | ||
| 10 | #else | ||
| 11 | static inline void omap_barrier_reserve_memblock(void) | ||
| 12 | { } | ||
| 13 | #endif | ||
| 14 | #endif /* __OMAP_SECURE_H__ */ | ||
diff --git a/arch/arm/plat-omap/include/plat/sdrc.h b/arch/arm/plat-omap/include/plat/sdrc.h deleted file mode 100644 index 36d6a7666216..000000000000 --- a/arch/arm/plat-omap/include/plat/sdrc.h +++ /dev/null | |||
| @@ -1,164 +0,0 @@ | |||
| 1 | #ifndef ____ASM_ARCH_SDRC_H | ||
| 2 | #define ____ASM_ARCH_SDRC_H | ||
| 3 | |||
| 4 | /* | ||
| 5 | * OMAP2/3 SDRC/SMS register definitions | ||
| 6 | * | ||
| 7 | * Copyright (C) 2007-2008 Texas Instruments, Inc. | ||
| 8 | * Copyright (C) 2007-2008 Nokia Corporation | ||
| 9 | * | ||
| 10 | * Tony Lindgren | ||
| 11 | * Paul Walmsley | ||
| 12 | * Richard Woodruff | ||
| 13 | * | ||
| 14 | * This program is free software; you can redistribute it and/or modify | ||
| 15 | * it under the terms of the GNU General Public License version 2 as | ||
| 16 | * published by the Free Software Foundation. | ||
| 17 | */ | ||
| 18 | |||
| 19 | |||
| 20 | /* SDRC register offsets - read/write with sdrc_{read,write}_reg() */ | ||
| 21 | |||
| 22 | #define SDRC_SYSCONFIG 0x010 | ||
| 23 | #define SDRC_CS_CFG 0x040 | ||
| 24 | #define SDRC_SHARING 0x044 | ||
| 25 | #define SDRC_ERR_TYPE 0x04C | ||
| 26 | #define SDRC_DLLA_CTRL 0x060 | ||
| 27 | #define SDRC_DLLA_STATUS 0x064 | ||
| 28 | #define SDRC_DLLB_CTRL 0x068 | ||
| 29 | #define SDRC_DLLB_STATUS 0x06C | ||
| 30 | #define SDRC_POWER 0x070 | ||
| 31 | #define SDRC_MCFG_0 0x080 | ||
| 32 | #define SDRC_MR_0 0x084 | ||
| 33 | #define SDRC_EMR2_0 0x08c | ||
| 34 | #define SDRC_ACTIM_CTRL_A_0 0x09c | ||
| 35 | #define SDRC_ACTIM_CTRL_B_0 0x0a0 | ||
| 36 | #define SDRC_RFR_CTRL_0 0x0a4 | ||
| 37 | #define SDRC_MANUAL_0 0x0a8 | ||
| 38 | #define SDRC_MCFG_1 0x0B0 | ||
| 39 | #define SDRC_MR_1 0x0B4 | ||
| 40 | #define SDRC_EMR2_1 0x0BC | ||
| 41 | #define SDRC_ACTIM_CTRL_A_1 0x0C4 | ||
| 42 | #define SDRC_ACTIM_CTRL_B_1 0x0C8 | ||
| 43 | #define SDRC_RFR_CTRL_1 0x0D4 | ||
| 44 | #define SDRC_MANUAL_1 0x0D8 | ||
| 45 | |||
| 46 | #define SDRC_POWER_AUTOCOUNT_SHIFT 8 | ||
| 47 | #define SDRC_POWER_AUTOCOUNT_MASK (0xffff << SDRC_POWER_AUTOCOUNT_SHIFT) | ||
| 48 | #define SDRC_POWER_CLKCTRL_SHIFT 4 | ||
| 49 | #define SDRC_POWER_CLKCTRL_MASK (0x3 << SDRC_POWER_CLKCTRL_SHIFT) | ||
| 50 | #define SDRC_SELF_REFRESH_ON_AUTOCOUNT (0x2 << SDRC_POWER_CLKCTRL_SHIFT) | ||
| 51 | |||
| 52 | /* | ||
| 53 | * These values represent the number of memory clock cycles between | ||
| 54 | * autorefresh initiation. They assume 1 refresh per 64 ms (JEDEC), 8192 | ||
| 55 | * rows per device, and include a subtraction of a 50 cycle window in the | ||
| 56 | * event that the autorefresh command is delayed due to other SDRC activity. | ||
| 57 | * The '| 1' sets the ARE field to send one autorefresh when the autorefresh | ||
| 58 | * counter reaches 0. | ||
| 59 | * | ||
| 60 | * These represent optimal values for common parts, it won't work for all. | ||
| 61 | * As long as you scale down, most parameters are still work, they just | ||
| 62 | * become sub-optimal. The RFR value goes in the opposite direction. If you | ||
| 63 | * don't adjust it down as your clock period increases the refresh interval | ||
| 64 | * will not be met. Setting all parameters for complete worst case may work, | ||
| 65 | * but may cut memory performance by 2x. Due to errata the DLLs need to be | ||
| 66 | * unlocked and their value needs run time calibration. A dynamic call is | ||
| 67 | * need for that as no single right value exists acorss production samples. | ||
| 68 | * | ||
| 69 | * Only the FULL speed values are given. Current code is such that rate | ||
| 70 | * changes must be made at DPLLoutx2. The actual value adjustment for low | ||
| 71 | * frequency operation will be handled by omap_set_performance() | ||
| 72 | * | ||
| 73 | * By having the boot loader boot up in the fastest L4 speed available likely | ||
| 74 | * will result in something which you can switch between. | ||
| 75 | */ | ||
| 76 | #define SDRC_RFR_CTRL_165MHz (0x00044c00 | 1) | ||
| 77 | #define SDRC_RFR_CTRL_133MHz (0x0003de00 | 1) | ||
| 78 | #define SDRC_RFR_CTRL_100MHz (0x0002da01 | 1) | ||
| 79 | #define SDRC_RFR_CTRL_110MHz (0x0002da01 | 1) /* Need to calc */ | ||
| 80 | #define SDRC_RFR_CTRL_BYPASS (0x00005000 | 1) /* Need to calc */ | ||
| 81 | |||
| 82 | |||
| 83 | /* | ||
| 84 | * SMS register access | ||
| 85 | */ | ||
| 86 | |||
| 87 | #define OMAP242X_SMS_REGADDR(reg) \ | ||
| 88 | (void __iomem *)OMAP2_L3_IO_ADDRESS(OMAP2420_SMS_BASE + reg) | ||
| 89 | #define OMAP243X_SMS_REGADDR(reg) \ | ||
| 90 | (void __iomem *)OMAP2_L3_IO_ADDRESS(OMAP243X_SMS_BASE + reg) | ||
| 91 | #define OMAP343X_SMS_REGADDR(reg) \ | ||
| 92 | (void __iomem *)OMAP2_L3_IO_ADDRESS(OMAP343X_SMS_BASE + reg) | ||
| 93 | |||
| 94 | /* SMS register offsets - read/write with sms_{read,write}_reg() */ | ||
| 95 | |||
| 96 | #define SMS_SYSCONFIG 0x010 | ||
| 97 | #define SMS_ROT_CONTROL(context) (0x180 + 0x10 * context) | ||
| 98 | #define SMS_ROT_SIZE(context) (0x184 + 0x10 * context) | ||
| 99 | #define SMS_ROT_PHYSICAL_BA(context) (0x188 + 0x10 * context) | ||
| 100 | /* REVISIT: fill in other SMS registers here */ | ||
| 101 | |||
| 102 | |||
| 103 | #ifndef __ASSEMBLER__ | ||
| 104 | |||
| 105 | /** | ||
| 106 | * struct omap_sdrc_params - SDRC parameters for a given SDRC clock rate | ||
| 107 | * @rate: SDRC clock rate (in Hz) | ||
| 108 | * @actim_ctrla: Value to program to SDRC_ACTIM_CTRLA for this rate | ||
| 109 | * @actim_ctrlb: Value to program to SDRC_ACTIM_CTRLB for this rate | ||
| 110 | * @rfr_ctrl: Value to program to SDRC_RFR_CTRL for this rate | ||
| 111 | * @mr: Value to program to SDRC_MR for this rate | ||
| 112 | * | ||
| 113 | * This structure holds a pre-computed set of register values for the | ||
| 114 | * SDRC for a given SDRC clock rate and SDRAM chip. These are | ||
| 115 | * intended to be pre-computed and specified in an array in the board-*.c | ||
| 116 | * files. The structure is keyed off the 'rate' field. | ||
| 117 | */ | ||
| 118 | struct omap_sdrc_params { | ||
| 119 | unsigned long rate; | ||
| 120 | u32 actim_ctrla; | ||
| 121 | u32 actim_ctrlb; | ||
| 122 | u32 rfr_ctrl; | ||
| 123 | u32 mr; | ||
| 124 | }; | ||
| 125 | |||
| 126 | #ifdef CONFIG_SOC_HAS_OMAP2_SDRC | ||
| 127 | void omap2_sdrc_init(struct omap_sdrc_params *sdrc_cs0, | ||
| 128 | struct omap_sdrc_params *sdrc_cs1); | ||
| 129 | #else | ||
| 130 | static inline void __init omap2_sdrc_init(struct omap_sdrc_params *sdrc_cs0, | ||
| 131 | struct omap_sdrc_params *sdrc_cs1) {}; | ||
| 132 | #endif | ||
| 133 | |||
| 134 | int omap2_sdrc_get_params(unsigned long r, | ||
| 135 | struct omap_sdrc_params **sdrc_cs0, | ||
| 136 | struct omap_sdrc_params **sdrc_cs1); | ||
| 137 | void omap2_sms_save_context(void); | ||
| 138 | void omap2_sms_restore_context(void); | ||
| 139 | |||
| 140 | void omap2_sms_write_rot_control(u32 val, unsigned ctx); | ||
| 141 | void omap2_sms_write_rot_size(u32 val, unsigned ctx); | ||
| 142 | void omap2_sms_write_rot_physical_ba(u32 val, unsigned ctx); | ||
| 143 | |||
| 144 | #ifdef CONFIG_ARCH_OMAP2 | ||
| 145 | |||
| 146 | struct memory_timings { | ||
| 147 | u32 m_type; /* ddr = 1, sdr = 0 */ | ||
| 148 | u32 dll_mode; /* use lock mode = 1, unlock mode = 0 */ | ||
| 149 | u32 slow_dll_ctrl; /* unlock mode, dll value for slow speed */ | ||
| 150 | u32 fast_dll_ctrl; /* unlock mode, dll value for fast speed */ | ||
| 151 | u32 base_cs; /* base chip select to use for calculations */ | ||
| 152 | }; | ||
| 153 | |||
| 154 | extern void omap2xxx_sdrc_init_params(u32 force_lock_to_unlock_mode); | ||
| 155 | struct omap_sdrc_params *rx51_get_sdram_timings(void); | ||
| 156 | |||
| 157 | u32 omap2xxx_sdrc_dll_is_unlocked(void); | ||
| 158 | u32 omap2xxx_sdrc_reprogram(u32 level, u32 force); | ||
| 159 | |||
| 160 | #endif /* CONFIG_ARCH_OMAP2 */ | ||
| 161 | |||
| 162 | #endif /* __ASSEMBLER__ */ | ||
| 163 | |||
| 164 | #endif | ||
diff --git a/arch/arm/plat-omap/include/plat/sram.h b/arch/arm/plat-omap/include/plat/sram.h index 227ae2657554..ba4525059a99 100644 --- a/arch/arm/plat-omap/include/plat/sram.h +++ b/arch/arm/plat-omap/include/plat/sram.h | |||
| @@ -1,18 +1,8 @@ | |||
| 1 | /* | 1 | int omap_sram_init(void); |
| 2 | * arch/arm/plat-omap/include/mach/sram.h | ||
| 3 | * | ||
| 4 | * Interface for functions that need to be run in internal SRAM | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License version 2 as | ||
| 8 | * published by the Free Software Foundation. | ||
| 9 | */ | ||
| 10 | 2 | ||
| 11 | #ifndef __ARCH_ARM_OMAP_SRAM_H | 3 | void omap_map_sram(unsigned long start, unsigned long size, |
| 12 | #define __ARCH_ARM_OMAP_SRAM_H | 4 | unsigned long skip, int cached); |
| 13 | 5 | void omap_sram_reset(void); | |
| 14 | #ifndef __ASSEMBLY__ | ||
| 15 | #include <asm/fncpy.h> | ||
| 16 | 6 | ||
| 17 | extern void *omap_sram_push_address(unsigned long size); | 7 | extern void *omap_sram_push_address(unsigned long size); |
| 18 | 8 | ||
| @@ -24,82 +14,3 @@ extern void *omap_sram_push_address(unsigned long size); | |||
| 24 | _res = fncpy(_sram_address, &(funcp), size); \ | 14 | _res = fncpy(_sram_address, &(funcp), size); \ |
| 25 | _res; \ | 15 | _res; \ |
| 26 | }) | 16 | }) |
| 27 | |||
| 28 | extern void omap_sram_reprogram_clock(u32 dpllctl, u32 ckctl); | ||
| 29 | |||
| 30 | extern void omap2_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl, | ||
| 31 | u32 base_cs, u32 force_unlock); | ||
| 32 | extern void omap2_sram_reprogram_sdrc(u32 perf_level, u32 dll_val, | ||
| 33 | u32 mem_type); | ||
| 34 | extern u32 omap2_set_prcm(u32 dpll_ctrl_val, u32 sdrc_rfr_val, int bypass); | ||
| 35 | |||
| 36 | extern u32 omap3_configure_core_dpll( | ||
| 37 | u32 m2, u32 unlock_dll, u32 f, u32 inc, | ||
| 38 | u32 sdrc_rfr_ctrl_0, u32 sdrc_actim_ctrl_a_0, | ||
| 39 | u32 sdrc_actim_ctrl_b_0, u32 sdrc_mr_0, | ||
| 40 | u32 sdrc_rfr_ctrl_1, u32 sdrc_actim_ctrl_a_1, | ||
| 41 | u32 sdrc_actim_ctrl_b_1, u32 sdrc_mr_1); | ||
| 42 | extern void omap3_sram_restore_context(void); | ||
| 43 | |||
| 44 | /* Do not use these */ | ||
| 45 | extern void omap1_sram_reprogram_clock(u32 ckctl, u32 dpllctl); | ||
| 46 | extern unsigned long omap1_sram_reprogram_clock_sz; | ||
| 47 | |||
| 48 | extern void omap24xx_sram_reprogram_clock(u32 ckctl, u32 dpllctl); | ||
| 49 | extern unsigned long omap24xx_sram_reprogram_clock_sz; | ||
| 50 | |||
| 51 | extern void omap242x_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl, | ||
| 52 | u32 base_cs, u32 force_unlock); | ||
| 53 | extern unsigned long omap242x_sram_ddr_init_sz; | ||
| 54 | |||
| 55 | extern u32 omap242x_sram_set_prcm(u32 dpll_ctrl_val, u32 sdrc_rfr_val, | ||
| 56 | int bypass); | ||
| 57 | extern unsigned long omap242x_sram_set_prcm_sz; | ||
| 58 | |||
| 59 | extern void omap242x_sram_reprogram_sdrc(u32 perf_level, u32 dll_val, | ||
| 60 | u32 mem_type); | ||
| 61 | extern unsigned long omap242x_sram_reprogram_sdrc_sz; | ||
| 62 | |||
| 63 | |||
| 64 | extern void omap243x_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl, | ||
| 65 | u32 base_cs, u32 force_unlock); | ||
| 66 | extern unsigned long omap243x_sram_ddr_init_sz; | ||
| 67 | |||
| 68 | extern u32 omap243x_sram_set_prcm(u32 dpll_ctrl_val, u32 sdrc_rfr_val, | ||
| 69 | int bypass); | ||
| 70 | extern unsigned long omap243x_sram_set_prcm_sz; | ||
| 71 | |||
| 72 | extern void omap243x_sram_reprogram_sdrc(u32 perf_level, u32 dll_val, | ||
| 73 | u32 mem_type); | ||
| 74 | extern unsigned long omap243x_sram_reprogram_sdrc_sz; | ||
| 75 | |||
| 76 | extern u32 omap3_sram_configure_core_dpll( | ||
| 77 | u32 m2, u32 unlock_dll, u32 f, u32 inc, | ||
| 78 | u32 sdrc_rfr_ctrl_0, u32 sdrc_actim_ctrl_a_0, | ||
| 79 | u32 sdrc_actim_ctrl_b_0, u32 sdrc_mr_0, | ||
| 80 | u32 sdrc_rfr_ctrl_1, u32 sdrc_actim_ctrl_a_1, | ||
| 81 | u32 sdrc_actim_ctrl_b_1, u32 sdrc_mr_1); | ||
| 82 | extern unsigned long omap3_sram_configure_core_dpll_sz; | ||
| 83 | |||
| 84 | #ifdef CONFIG_PM | ||
| 85 | extern void omap_push_sram_idle(void); | ||
| 86 | #else | ||
| 87 | static inline void omap_push_sram_idle(void) {} | ||
| 88 | #endif /* CONFIG_PM */ | ||
| 89 | |||
| 90 | #endif /* __ASSEMBLY__ */ | ||
| 91 | |||
| 92 | /* | ||
| 93 | * OMAP2+: define the SRAM PA addresses. | ||
| 94 | * Used by the SRAM management code and the idle sleep code. | ||
| 95 | */ | ||
| 96 | #define OMAP2_SRAM_PA 0x40200000 | ||
| 97 | #define OMAP3_SRAM_PA 0x40200000 | ||
| 98 | #ifdef CONFIG_OMAP4_ERRATA_I688 | ||
| 99 | #define OMAP4_SRAM_PA 0x40304000 | ||
| 100 | #define OMAP4_SRAM_VA 0xfe404000 | ||
| 101 | #else | ||
| 102 | #define OMAP4_SRAM_PA 0x40300000 | ||
| 103 | #endif | ||
| 104 | #define AM33XX_SRAM_PA 0x40300000 | ||
| 105 | #endif | ||
diff --git a/arch/arm/plat-omap/include/plat/uncompress.h b/arch/arm/plat-omap/include/plat/uncompress.h deleted file mode 100644 index 7f7b112acccb..000000000000 --- a/arch/arm/plat-omap/include/plat/uncompress.h +++ /dev/null | |||
| @@ -1,204 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/plat-omap/include/mach/uncompress.h | ||
| 3 | * | ||
| 4 | * Serial port stubs for kernel decompress status messages | ||
| 5 | * | ||
| 6 | * Initially based on: | ||
| 7 | * linux-2.4.15-rmk1-dsplinux1.6/arch/arm/plat-omap/include/mach1510/uncompress.h | ||
| 8 | * Copyright (C) 2000 RidgeRun, Inc. | ||
| 9 | * Author: Greg Lonnon <glonnon@ridgerun.com> | ||
| 10 | * | ||
| 11 | * Rewritten by: | ||
| 12 | * Author: <source@mvista.com> | ||
| 13 | * 2004 (c) MontaVista Software, Inc. | ||
| 14 | * | ||
| 15 | * This file is licensed under the terms of the GNU General Public License | ||
| 16 | * version 2. This program is licensed "as is" without any warranty of any | ||
| 17 | * kind, whether express or implied. | ||
| 18 | */ | ||
| 19 | |||
| 20 | #include <linux/types.h> | ||
| 21 | #include <linux/serial_reg.h> | ||
| 22 | |||
| 23 | #include <asm/memory.h> | ||
| 24 | #include <asm/mach-types.h> | ||
| 25 | |||
| 26 | #include <plat/serial.h> | ||
| 27 | |||
| 28 | #define MDR1_MODE_MASK 0x07 | ||
| 29 | |||
| 30 | volatile u8 *uart_base; | ||
| 31 | int uart_shift; | ||
| 32 | |||
| 33 | /* | ||
| 34 | * Store the DEBUG_LL uart number into memory. | ||
| 35 | * See also debug-macro.S, and serial.c for related code. | ||
| 36 | */ | ||
| 37 | static void set_omap_uart_info(unsigned char port) | ||
| 38 | { | ||
| 39 | /* | ||
| 40 | * Get address of some.bss variable and round it down | ||
| 41 | * a la CONFIG_AUTO_ZRELADDR. | ||
| 42 | */ | ||
| 43 | u32 ram_start = (u32)&uart_shift & 0xf8000000; | ||
| 44 | u32 *uart_info = (u32 *)(ram_start + OMAP_UART_INFO_OFS); | ||
| 45 | *uart_info = port; | ||
| 46 | } | ||
| 47 | |||
| 48 | static void putc(int c) | ||
| 49 | { | ||
| 50 | if (!uart_base) | ||
| 51 | return; | ||
| 52 | |||
| 53 | /* Check for UART 16x mode */ | ||
| 54 | if ((uart_base[UART_OMAP_MDR1 << uart_shift] & MDR1_MODE_MASK) != 0) | ||
| 55 | return; | ||
| 56 | |||
| 57 | while (!(uart_base[UART_LSR << uart_shift] & UART_LSR_THRE)) | ||
| 58 | barrier(); | ||
| 59 | uart_base[UART_TX << uart_shift] = c; | ||
| 60 | } | ||
| 61 | |||
| 62 | static inline void flush(void) | ||
| 63 | { | ||
| 64 | } | ||
| 65 | |||
| 66 | /* | ||
| 67 | * Macros to configure UART1 and debug UART | ||
| 68 | */ | ||
| 69 | #define _DEBUG_LL_ENTRY(mach, dbg_uart, dbg_shft, dbg_id) \ | ||
| 70 | if (machine_is_##mach()) { \ | ||
| 71 | uart_base = (volatile u8 *)(dbg_uart); \ | ||
| 72 | uart_shift = (dbg_shft); \ | ||
| 73 | port = (dbg_id); \ | ||
| 74 | set_omap_uart_info(port); \ | ||
| 75 | break; \ | ||
| 76 | } | ||
| 77 | |||
| 78 | #define DEBUG_LL_OMAP7XX(p, mach) \ | ||
| 79 | _DEBUG_LL_ENTRY(mach, OMAP1_UART##p##_BASE, OMAP7XX_PORT_SHIFT, \ | ||
| 80 | OMAP1UART##p) | ||
| 81 | |||
| 82 | #define DEBUG_LL_OMAP1(p, mach) \ | ||
| 83 | _DEBUG_LL_ENTRY(mach, OMAP1_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 84 | OMAP1UART##p) | ||
| 85 | |||
| 86 | #define DEBUG_LL_OMAP2(p, mach) \ | ||
| 87 | _DEBUG_LL_ENTRY(mach, OMAP2_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 88 | OMAP2UART##p) | ||
| 89 | |||
| 90 | #define DEBUG_LL_OMAP3(p, mach) \ | ||
| 91 | _DEBUG_LL_ENTRY(mach, OMAP3_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 92 | OMAP3UART##p) | ||
| 93 | |||
| 94 | #define DEBUG_LL_OMAP4(p, mach) \ | ||
| 95 | _DEBUG_LL_ENTRY(mach, OMAP4_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 96 | OMAP4UART##p) | ||
| 97 | |||
| 98 | #define DEBUG_LL_OMAP5(p, mach) \ | ||
| 99 | _DEBUG_LL_ENTRY(mach, OMAP5_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 100 | OMAP5UART##p) | ||
| 101 | /* Zoom2/3 shift is different for UART1 and external port */ | ||
| 102 | #define DEBUG_LL_ZOOM(mach) \ | ||
| 103 | _DEBUG_LL_ENTRY(mach, ZOOM_UART_BASE, ZOOM_PORT_SHIFT, ZOOM_UART) | ||
| 104 | |||
| 105 | #define DEBUG_LL_TI81XX(p, mach) \ | ||
| 106 | _DEBUG_LL_ENTRY(mach, TI81XX_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 107 | TI81XXUART##p) | ||
| 108 | |||
| 109 | #define DEBUG_LL_AM33XX(p, mach) \ | ||
| 110 | _DEBUG_LL_ENTRY(mach, AM33XX_UART##p##_BASE, OMAP_PORT_SHIFT, \ | ||
| 111 | AM33XXUART##p) | ||
| 112 | |||
| 113 | static inline void arch_decomp_setup(void) | ||
| 114 | { | ||
| 115 | int port = 0; | ||
| 116 | |||
| 117 | /* | ||
| 118 | * Initialize the port based on the machine ID from the bootloader. | ||
| 119 | * Note that we're using macros here instead of switch statement | ||
| 120 | * as machine_is functions are optimized out for the boards that | ||
| 121 | * are not selected. | ||
| 122 | */ | ||
| 123 | do { | ||
| 124 | /* omap7xx/8xx based boards using UART1 with shift 0 */ | ||
| 125 | DEBUG_LL_OMAP7XX(1, herald); | ||
| 126 | DEBUG_LL_OMAP7XX(1, omap_perseus2); | ||
| 127 | |||
| 128 | /* omap15xx/16xx based boards using UART1 */ | ||
| 129 | DEBUG_LL_OMAP1(1, ams_delta); | ||
| 130 | DEBUG_LL_OMAP1(1, nokia770); | ||
| 131 | DEBUG_LL_OMAP1(1, omap_h2); | ||
| 132 | DEBUG_LL_OMAP1(1, omap_h3); | ||
| 133 | DEBUG_LL_OMAP1(1, omap_innovator); | ||
| 134 | DEBUG_LL_OMAP1(1, omap_osk); | ||
| 135 | DEBUG_LL_OMAP1(1, omap_palmte); | ||
| 136 | DEBUG_LL_OMAP1(1, omap_palmz71); | ||
| 137 | |||
| 138 | /* omap15xx/16xx based boards using UART2 */ | ||
| 139 | DEBUG_LL_OMAP1(2, omap_palmtt); | ||
| 140 | |||
| 141 | /* omap15xx/16xx based boards using UART3 */ | ||
| 142 | DEBUG_LL_OMAP1(3, sx1); | ||
| 143 | |||
| 144 | /* omap2 based boards using UART1 */ | ||
| 145 | DEBUG_LL_OMAP2(1, omap_2430sdp); | ||
| 146 | DEBUG_LL_OMAP2(1, omap_apollon); | ||
| 147 | DEBUG_LL_OMAP2(1, omap_h4); | ||
| 148 | |||
| 149 | /* omap2 based boards using UART3 */ | ||
| 150 | DEBUG_LL_OMAP2(3, nokia_n800); | ||
| 151 | DEBUG_LL_OMAP2(3, nokia_n810); | ||
| 152 | DEBUG_LL_OMAP2(3, nokia_n810_wimax); | ||
| 153 | |||
| 154 | /* omap3 based boards using UART1 */ | ||
| 155 | DEBUG_LL_OMAP2(1, omap3evm); | ||
| 156 | DEBUG_LL_OMAP3(1, omap_3430sdp); | ||
| 157 | DEBUG_LL_OMAP3(1, omap_3630sdp); | ||
| 158 | DEBUG_LL_OMAP3(1, omap3530_lv_som); | ||
| 159 | DEBUG_LL_OMAP3(1, omap3_torpedo); | ||
| 160 | |||
| 161 | /* omap3 based boards using UART3 */ | ||
| 162 | DEBUG_LL_OMAP3(3, cm_t35); | ||
| 163 | DEBUG_LL_OMAP3(3, cm_t3517); | ||
| 164 | DEBUG_LL_OMAP3(3, cm_t3730); | ||
| 165 | DEBUG_LL_OMAP3(3, craneboard); | ||
| 166 | DEBUG_LL_OMAP3(3, devkit8000); | ||
| 167 | DEBUG_LL_OMAP3(3, igep0020); | ||
| 168 | DEBUG_LL_OMAP3(3, igep0030); | ||
| 169 | DEBUG_LL_OMAP3(3, nokia_rm680); | ||
| 170 | DEBUG_LL_OMAP3(3, nokia_rm696); | ||
| 171 | DEBUG_LL_OMAP3(3, nokia_rx51); | ||
| 172 | DEBUG_LL_OMAP3(3, omap3517evm); | ||
| 173 | DEBUG_LL_OMAP3(3, omap3_beagle); | ||
| 174 | DEBUG_LL_OMAP3(3, omap3_pandora); | ||
| 175 | DEBUG_LL_OMAP3(3, omap_ldp); | ||
| 176 | DEBUG_LL_OMAP3(3, overo); | ||
| 177 | DEBUG_LL_OMAP3(3, touchbook); | ||
| 178 | |||
| 179 | /* omap4 based boards using UART3 */ | ||
| 180 | DEBUG_LL_OMAP4(3, omap_4430sdp); | ||
| 181 | DEBUG_LL_OMAP4(3, omap4_panda); | ||
| 182 | |||
| 183 | /* omap5 based boards using UART3 */ | ||
| 184 | DEBUG_LL_OMAP5(3, omap5_sevm); | ||
| 185 | |||
| 186 | /* zoom2/3 external uart */ | ||
| 187 | DEBUG_LL_ZOOM(omap_zoom2); | ||
| 188 | DEBUG_LL_ZOOM(omap_zoom3); | ||
| 189 | |||
| 190 | /* TI8168 base boards using UART3 */ | ||
| 191 | DEBUG_LL_TI81XX(3, ti8168evm); | ||
| 192 | |||
| 193 | /* TI8148 base boards using UART1 */ | ||
| 194 | DEBUG_LL_TI81XX(1, ti8148evm); | ||
| 195 | |||
| 196 | /* AM33XX base boards using UART1 */ | ||
| 197 | DEBUG_LL_AM33XX(1, am335xevm); | ||
| 198 | } while (0); | ||
| 199 | } | ||
| 200 | |||
| 201 | /* | ||
| 202 | * nothing to do | ||
| 203 | */ | ||
| 204 | #define arch_decomp_wdog() | ||
diff --git a/arch/arm/plat-omap/include/plat/usb.h b/arch/arm/plat-omap/include/plat/usb.h deleted file mode 100644 index 87ee140fefaa..000000000000 --- a/arch/arm/plat-omap/include/plat/usb.h +++ /dev/null | |||
| @@ -1,179 +0,0 @@ | |||
| 1 | // include/asm-arm/mach-omap/usb.h | ||
| 2 | |||
| 3 | #ifndef __ASM_ARCH_OMAP_USB_H | ||
| 4 | #define __ASM_ARCH_OMAP_USB_H | ||
| 5 | |||
| 6 | #include <linux/io.h> | ||
| 7 | #include <linux/platform_device.h> | ||
| 8 | #include <linux/usb/musb.h> | ||
| 9 | |||
| 10 | #define OMAP3_HS_USB_PORTS 3 | ||
| 11 | |||
| 12 | enum usbhs_omap_port_mode { | ||
| 13 | OMAP_USBHS_PORT_MODE_UNUSED, | ||
| 14 | OMAP_EHCI_PORT_MODE_PHY, | ||
| 15 | OMAP_EHCI_PORT_MODE_TLL, | ||
| 16 | OMAP_EHCI_PORT_MODE_HSIC, | ||
| 17 | OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0, | ||
| 18 | OMAP_OHCI_PORT_MODE_PHY_6PIN_DPDM, | ||
| 19 | OMAP_OHCI_PORT_MODE_PHY_3PIN_DATSE0, | ||
| 20 | OMAP_OHCI_PORT_MODE_PHY_4PIN_DPDM, | ||
| 21 | OMAP_OHCI_PORT_MODE_TLL_6PIN_DATSE0, | ||
| 22 | OMAP_OHCI_PORT_MODE_TLL_6PIN_DPDM, | ||
| 23 | OMAP_OHCI_PORT_MODE_TLL_3PIN_DATSE0, | ||
| 24 | OMAP_OHCI_PORT_MODE_TLL_4PIN_DPDM, | ||
| 25 | OMAP_OHCI_PORT_MODE_TLL_2PIN_DATSE0, | ||
| 26 | OMAP_OHCI_PORT_MODE_TLL_2PIN_DPDM | ||
| 27 | }; | ||
| 28 | |||
| 29 | struct usbhs_omap_board_data { | ||
| 30 | enum usbhs_omap_port_mode port_mode[OMAP3_HS_USB_PORTS]; | ||
| 31 | |||
| 32 | /* have to be valid if phy_reset is true and portx is in phy mode */ | ||
| 33 | int reset_gpio_port[OMAP3_HS_USB_PORTS]; | ||
| 34 | |||
| 35 | /* Set this to true for ES2.x silicon */ | ||
| 36 | unsigned es2_compatibility:1; | ||
| 37 | |||
| 38 | unsigned phy_reset:1; | ||
| 39 | |||
| 40 | /* | ||
| 41 | * Regulators for USB PHYs. | ||
| 42 | * Each PHY can have a separate regulator. | ||
| 43 | */ | ||
| 44 | struct regulator *regulator[OMAP3_HS_USB_PORTS]; | ||
| 45 | }; | ||
| 46 | |||
| 47 | #ifdef CONFIG_ARCH_OMAP2PLUS | ||
| 48 | |||
| 49 | struct ehci_hcd_omap_platform_data { | ||
| 50 | enum usbhs_omap_port_mode port_mode[OMAP3_HS_USB_PORTS]; | ||
| 51 | int reset_gpio_port[OMAP3_HS_USB_PORTS]; | ||
| 52 | struct regulator *regulator[OMAP3_HS_USB_PORTS]; | ||
| 53 | unsigned phy_reset:1; | ||
| 54 | }; | ||
| 55 | |||
| 56 | struct ohci_hcd_omap_platform_data { | ||
| 57 | enum usbhs_omap_port_mode port_mode[OMAP3_HS_USB_PORTS]; | ||
| 58 | unsigned es2_compatibility:1; | ||
| 59 | }; | ||
| 60 | |||
| 61 | struct usbhs_omap_platform_data { | ||
| 62 | enum usbhs_omap_port_mode port_mode[OMAP3_HS_USB_PORTS]; | ||
| 63 | |||
| 64 | struct ehci_hcd_omap_platform_data *ehci_data; | ||
| 65 | struct ohci_hcd_omap_platform_data *ohci_data; | ||
| 66 | }; | ||
| 67 | |||
| 68 | struct usbtll_omap_platform_data { | ||
| 69 | enum usbhs_omap_port_mode port_mode[OMAP3_HS_USB_PORTS]; | ||
| 70 | }; | ||
| 71 | /*-------------------------------------------------------------------------*/ | ||
| 72 | |||
| 73 | struct omap_musb_board_data { | ||
| 74 | u8 interface_type; | ||
| 75 | u8 mode; | ||
| 76 | u16 power; | ||
| 77 | unsigned extvbus:1; | ||
| 78 | void (*set_phy_power)(u8 on); | ||
| 79 | void (*clear_irq)(void); | ||
| 80 | void (*set_mode)(u8 mode); | ||
| 81 | void (*reset)(void); | ||
| 82 | }; | ||
| 83 | |||
| 84 | enum musb_interface {MUSB_INTERFACE_ULPI, MUSB_INTERFACE_UTMI}; | ||
| 85 | |||
| 86 | extern void usb_musb_init(struct omap_musb_board_data *board_data); | ||
| 87 | |||
| 88 | extern void usbhs_init(const struct usbhs_omap_board_data *pdata); | ||
| 89 | extern int omap_tll_enable(void); | ||
| 90 | extern int omap_tll_disable(void); | ||
| 91 | |||
| 92 | extern int omap4430_phy_power(struct device *dev, int ID, int on); | ||
| 93 | extern int omap4430_phy_set_clk(struct device *dev, int on); | ||
| 94 | extern int omap4430_phy_init(struct device *dev); | ||
| 95 | extern int omap4430_phy_exit(struct device *dev); | ||
| 96 | extern int omap4430_phy_suspend(struct device *dev, int suspend); | ||
| 97 | |||
| 98 | #endif | ||
| 99 | |||
| 100 | extern void am35x_musb_reset(void); | ||
| 101 | extern void am35x_musb_phy_power(u8 on); | ||
| 102 | extern void am35x_musb_clear_irq(void); | ||
| 103 | extern void am35x_set_mode(u8 musb_mode); | ||
| 104 | extern void ti81xx_musb_phy_power(u8 on); | ||
| 105 | |||
| 106 | /* AM35x */ | ||
| 107 | /* USB 2.0 PHY Control */ | ||
| 108 | #define CONF2_PHY_GPIOMODE (1 << 23) | ||
| 109 | #define CONF2_OTGMODE (3 << 14) | ||
| 110 | #define CONF2_NO_OVERRIDE (0 << 14) | ||
| 111 | #define CONF2_FORCE_HOST (1 << 14) | ||
| 112 | #define CONF2_FORCE_DEVICE (2 << 14) | ||
| 113 | #define CONF2_FORCE_HOST_VBUS_LOW (3 << 14) | ||
| 114 | #define CONF2_SESENDEN (1 << 13) | ||
| 115 | #define CONF2_VBDTCTEN (1 << 12) | ||
| 116 | #define CONF2_REFFREQ_24MHZ (2 << 8) | ||
| 117 | #define CONF2_REFFREQ_26MHZ (7 << 8) | ||
| 118 | #define CONF2_REFFREQ_13MHZ (6 << 8) | ||
| 119 | #define CONF2_REFFREQ (0xf << 8) | ||
| 120 | #define CONF2_PHYCLKGD (1 << 7) | ||
| 121 | #define CONF2_VBUSSENSE (1 << 6) | ||
| 122 | #define CONF2_PHY_PLLON (1 << 5) | ||
| 123 | #define CONF2_RESET (1 << 4) | ||
| 124 | #define CONF2_PHYPWRDN (1 << 3) | ||
| 125 | #define CONF2_OTGPWRDN (1 << 2) | ||
| 126 | #define CONF2_DATPOL (1 << 1) | ||
| 127 | |||
| 128 | /* TI81XX specific definitions */ | ||
| 129 | #define USBCTRL0 0x620 | ||
| 130 | #define USBSTAT0 0x624 | ||
| 131 | |||
| 132 | /* TI816X PHY controls bits */ | ||
| 133 | #define TI816X_USBPHY0_NORMAL_MODE (1 << 0) | ||
| 134 | #define TI816X_USBPHY_REFCLK_OSC (1 << 8) | ||
| 135 | |||
| 136 | /* TI814X PHY controls bits */ | ||
| 137 | #define USBPHY_CM_PWRDN (1 << 0) | ||
| 138 | #define USBPHY_OTG_PWRDN (1 << 1) | ||
| 139 | #define USBPHY_CHGDET_DIS (1 << 2) | ||
| 140 | #define USBPHY_CHGDET_RSTRT (1 << 3) | ||
| 141 | #define USBPHY_SRCONDM (1 << 4) | ||
| 142 | #define USBPHY_SINKONDP (1 << 5) | ||
| 143 | #define USBPHY_CHGISINK_EN (1 << 6) | ||
| 144 | #define USBPHY_CHGVSRC_EN (1 << 7) | ||
| 145 | #define USBPHY_DMPULLUP (1 << 8) | ||
| 146 | #define USBPHY_DPPULLUP (1 << 9) | ||
| 147 | #define USBPHY_CDET_EXTCTL (1 << 10) | ||
| 148 | #define USBPHY_GPIO_MODE (1 << 12) | ||
| 149 | #define USBPHY_DPOPBUFCTL (1 << 13) | ||
| 150 | #define USBPHY_DMOPBUFCTL (1 << 14) | ||
| 151 | #define USBPHY_DPINPUT (1 << 15) | ||
| 152 | #define USBPHY_DMINPUT (1 << 16) | ||
| 153 | #define USBPHY_DPGPIO_PD (1 << 17) | ||
| 154 | #define USBPHY_DMGPIO_PD (1 << 18) | ||
| 155 | #define USBPHY_OTGVDET_EN (1 << 19) | ||
| 156 | #define USBPHY_OTGSESSEND_EN (1 << 20) | ||
| 157 | #define USBPHY_DATA_POLARITY (1 << 23) | ||
| 158 | |||
| 159 | #if defined(CONFIG_ARCH_OMAP1) && defined(CONFIG_USB) | ||
| 160 | u32 omap1_usb0_init(unsigned nwires, unsigned is_device); | ||
| 161 | u32 omap1_usb1_init(unsigned nwires); | ||
| 162 | u32 omap1_usb2_init(unsigned nwires, unsigned alt_pingroup); | ||
| 163 | #else | ||
| 164 | static inline u32 omap1_usb0_init(unsigned nwires, unsigned is_device) | ||
| 165 | { | ||
| 166 | return 0; | ||
| 167 | } | ||
| 168 | static inline u32 omap1_usb1_init(unsigned nwires) | ||
| 169 | { | ||
| 170 | return 0; | ||
| 171 | |||
| 172 | } | ||
| 173 | static inline u32 omap1_usb2_init(unsigned nwires, unsigned alt_pingroup) | ||
| 174 | { | ||
| 175 | return 0; | ||
| 176 | } | ||
| 177 | #endif | ||
| 178 | |||
| 179 | #endif /* __ASM_ARCH_OMAP_USB_H */ | ||
diff --git a/arch/arm/plat-omap/include/plat/vrfb.h b/arch/arm/plat-omap/include/plat/vrfb.h deleted file mode 100644 index 3792bdea2f6d..000000000000 --- a/arch/arm/plat-omap/include/plat/vrfb.h +++ /dev/null | |||
| @@ -1,66 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * VRFB Rotation Engine | ||
| 3 | * | ||
| 4 | * Copyright (C) 2009 Nokia Corporation | ||
| 5 | * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | * | ||
| 11 | * This program is distributed in the hope that it will be useful, but | ||
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 14 | * General Public License for more details. | ||
| 15 | * | ||
| 16 | * You should have received a copy of the GNU General Public License along | ||
| 17 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
| 18 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __OMAP_VRFB_H__ | ||
| 22 | #define __OMAP_VRFB_H__ | ||
| 23 | |||
| 24 | #define OMAP_VRFB_LINE_LEN 2048 | ||
| 25 | |||
| 26 | struct vrfb { | ||
| 27 | u8 context; | ||
| 28 | void __iomem *vaddr[4]; | ||
| 29 | unsigned long paddr[4]; | ||
| 30 | u16 xres; | ||
| 31 | u16 yres; | ||
| 32 | u16 xoffset; | ||
| 33 | u16 yoffset; | ||
| 34 | u8 bytespp; | ||
| 35 | bool yuv_mode; | ||
| 36 | }; | ||
| 37 | |||
| 38 | #ifdef CONFIG_OMAP2_VRFB | ||
| 39 | extern int omap_vrfb_request_ctx(struct vrfb *vrfb); | ||
| 40 | extern void omap_vrfb_release_ctx(struct vrfb *vrfb); | ||
| 41 | extern void omap_vrfb_adjust_size(u16 *width, u16 *height, | ||
| 42 | u8 bytespp); | ||
| 43 | extern u32 omap_vrfb_min_phys_size(u16 width, u16 height, u8 bytespp); | ||
| 44 | extern u16 omap_vrfb_max_height(u32 phys_size, u16 width, u8 bytespp); | ||
| 45 | extern void omap_vrfb_setup(struct vrfb *vrfb, unsigned long paddr, | ||
| 46 | u16 width, u16 height, | ||
| 47 | unsigned bytespp, bool yuv_mode); | ||
| 48 | extern int omap_vrfb_map_angle(struct vrfb *vrfb, u16 height, u8 rot); | ||
| 49 | extern void omap_vrfb_restore_context(void); | ||
| 50 | |||
| 51 | #else | ||
| 52 | static inline int omap_vrfb_request_ctx(struct vrfb *vrfb) { return 0; } | ||
| 53 | static inline void omap_vrfb_release_ctx(struct vrfb *vrfb) {} | ||
| 54 | static inline void omap_vrfb_adjust_size(u16 *width, u16 *height, | ||
| 55 | u8 bytespp) {} | ||
| 56 | static inline u32 omap_vrfb_min_phys_size(u16 width, u16 height, u8 bytespp) | ||
| 57 | { return 0; } | ||
| 58 | static inline u16 omap_vrfb_max_height(u32 phys_size, u16 width, u8 bytespp) | ||
| 59 | { return 0; } | ||
| 60 | static inline void omap_vrfb_setup(struct vrfb *vrfb, unsigned long paddr, | ||
| 61 | u16 width, u16 height, unsigned bytespp, bool yuv_mode) {} | ||
| 62 | static inline int omap_vrfb_map_angle(struct vrfb *vrfb, u16 height, u8 rot) | ||
| 63 | { return 0; } | ||
| 64 | static inline void omap_vrfb_restore_context(void) {} | ||
| 65 | #endif | ||
| 66 | #endif /* __VRFB_H */ | ||
diff --git a/arch/arm/plat-omap/sram.c b/arch/arm/plat-omap/sram.c index 28acb383e7df..743fc2836f7a 100644 --- a/arch/arm/plat-omap/sram.c +++ b/arch/arm/plat-omap/sram.c | |||
| @@ -20,198 +20,20 @@ | |||
| 20 | #include <linux/init.h> | 20 | #include <linux/init.h> |
| 21 | #include <linux/io.h> | 21 | #include <linux/io.h> |
| 22 | 22 | ||
| 23 | #include <asm/fncpy.h> | ||
| 23 | #include <asm/tlb.h> | 24 | #include <asm/tlb.h> |
| 24 | #include <asm/cacheflush.h> | 25 | #include <asm/cacheflush.h> |
| 25 | 26 | ||
| 26 | #include <asm/mach/map.h> | 27 | #include <asm/mach/map.h> |
| 27 | 28 | ||
| 28 | #include <plat/sram.h> | ||
| 29 | #include <plat/cpu.h> | ||
| 30 | |||
| 31 | #include "sram.h" | ||
| 32 | |||
| 33 | /* XXX These "sideways" includes will disappear when sram.c becomes a driver */ | ||
| 34 | #include "../mach-omap2/iomap.h" | ||
| 35 | #include "../mach-omap2/prm2xxx_3xxx.h" | ||
| 36 | #include "../mach-omap2/sdrc.h" | ||
| 37 | |||
| 38 | #define OMAP1_SRAM_PA 0x20000000 | ||
| 39 | #define OMAP2_SRAM_PUB_PA (OMAP2_SRAM_PA + 0xf800) | ||
| 40 | #define OMAP3_SRAM_PUB_PA (OMAP3_SRAM_PA + 0x8000) | ||
| 41 | #ifdef CONFIG_OMAP4_ERRATA_I688 | ||
| 42 | #define OMAP4_SRAM_PUB_PA OMAP4_SRAM_PA | ||
| 43 | #else | ||
| 44 | #define OMAP4_SRAM_PUB_PA (OMAP4_SRAM_PA + 0x4000) | ||
| 45 | #endif | ||
| 46 | #define OMAP5_SRAM_PA 0x40300000 | ||
| 47 | |||
| 48 | #if defined(CONFIG_ARCH_OMAP2PLUS) | ||
| 49 | #define SRAM_BOOTLOADER_SZ 0x00 | ||
| 50 | #else | ||
| 51 | #define SRAM_BOOTLOADER_SZ 0x80 | ||
| 52 | #endif | ||
| 53 | |||
| 54 | #define OMAP24XX_VA_REQINFOPERM0 OMAP2_L3_IO_ADDRESS(0x68005048) | ||
| 55 | #define OMAP24XX_VA_READPERM0 OMAP2_L3_IO_ADDRESS(0x68005050) | ||
| 56 | #define OMAP24XX_VA_WRITEPERM0 OMAP2_L3_IO_ADDRESS(0x68005058) | ||
| 57 | |||
| 58 | #define OMAP34XX_VA_REQINFOPERM0 OMAP2_L3_IO_ADDRESS(0x68012848) | ||
| 59 | #define OMAP34XX_VA_READPERM0 OMAP2_L3_IO_ADDRESS(0x68012850) | ||
| 60 | #define OMAP34XX_VA_WRITEPERM0 OMAP2_L3_IO_ADDRESS(0x68012858) | ||
| 61 | #define OMAP34XX_VA_ADDR_MATCH2 OMAP2_L3_IO_ADDRESS(0x68012880) | ||
| 62 | #define OMAP34XX_VA_SMS_RG_ATT0 OMAP2_L3_IO_ADDRESS(0x6C000048) | ||
| 63 | |||
| 64 | #define GP_DEVICE 0x300 | ||
| 65 | |||
| 66 | #define ROUND_DOWN(value,boundary) ((value) & (~((boundary)-1))) | 29 | #define ROUND_DOWN(value,boundary) ((value) & (~((boundary)-1))) |
| 67 | 30 | ||
| 68 | static unsigned long omap_sram_start; | ||
| 69 | static void __iomem *omap_sram_base; | 31 | static void __iomem *omap_sram_base; |
| 70 | static unsigned long omap_sram_skip; | 32 | static unsigned long omap_sram_skip; |
| 71 | static unsigned long omap_sram_size; | 33 | static unsigned long omap_sram_size; |
| 72 | static void __iomem *omap_sram_ceil; | 34 | static void __iomem *omap_sram_ceil; |
| 73 | 35 | ||
| 74 | /* | 36 | /* |
| 75 | * Depending on the target RAMFS firewall setup, the public usable amount of | ||
| 76 | * SRAM varies. The default accessible size for all device types is 2k. A GP | ||
| 77 | * device allows ARM11 but not other initiators for full size. This | ||
| 78 | * functionality seems ok until some nice security API happens. | ||
| 79 | */ | ||
| 80 | static int is_sram_locked(void) | ||
| 81 | { | ||
| 82 | if (OMAP2_DEVICE_TYPE_GP == omap_type()) { | ||
| 83 | /* RAMFW: R/W access to all initiators for all qualifier sets */ | ||
| 84 | if (cpu_is_omap242x()) { | ||
| 85 | __raw_writel(0xFF, OMAP24XX_VA_REQINFOPERM0); /* all q-vects */ | ||
| 86 | __raw_writel(0xCFDE, OMAP24XX_VA_READPERM0); /* all i-read */ | ||
| 87 | __raw_writel(0xCFDE, OMAP24XX_VA_WRITEPERM0); /* all i-write */ | ||
| 88 | } | ||
| 89 | if (cpu_is_omap34xx()) { | ||
| 90 | __raw_writel(0xFFFF, OMAP34XX_VA_REQINFOPERM0); /* all q-vects */ | ||
| 91 | __raw_writel(0xFFFF, OMAP34XX_VA_READPERM0); /* all i-read */ | ||
| 92 | __raw_writel(0xFFFF, OMAP34XX_VA_WRITEPERM0); /* all i-write */ | ||
| 93 | __raw_writel(0x0, OMAP34XX_VA_ADDR_MATCH2); | ||
| 94 | __raw_writel(0xFFFFFFFF, OMAP34XX_VA_SMS_RG_ATT0); | ||
| 95 | } | ||
| 96 | return 0; | ||
| 97 | } else | ||
| 98 | return 1; /* assume locked with no PPA or security driver */ | ||
| 99 | } | ||
| 100 | |||
| 101 | /* | ||
| 102 | * The amount of SRAM depends on the core type. | ||
| 103 | * Note that we cannot try to test for SRAM here because writes | ||
| 104 | * to secure SRAM will hang the system. Also the SRAM is not | ||
| 105 | * yet mapped at this point. | ||
| 106 | */ | ||
| 107 | static void __init omap_detect_sram(void) | ||
| 108 | { | ||
| 109 | omap_sram_skip = SRAM_BOOTLOADER_SZ; | ||
| 110 | if (cpu_class_is_omap2()) { | ||
| 111 | if (is_sram_locked()) { | ||
| 112 | if (cpu_is_omap34xx()) { | ||
| 113 | omap_sram_start = OMAP3_SRAM_PUB_PA; | ||
| 114 | if ((omap_type() == OMAP2_DEVICE_TYPE_EMU) || | ||
| 115 | (omap_type() == OMAP2_DEVICE_TYPE_SEC)) { | ||
| 116 | omap_sram_size = 0x7000; /* 28K */ | ||
| 117 | omap_sram_skip += SZ_16K; | ||
| 118 | } else { | ||
| 119 | omap_sram_size = 0x8000; /* 32K */ | ||
| 120 | } | ||
| 121 | } else if (cpu_is_omap44xx()) { | ||
| 122 | omap_sram_start = OMAP4_SRAM_PUB_PA; | ||
| 123 | omap_sram_size = 0xa000; /* 40K */ | ||
| 124 | } else if (soc_is_omap54xx()) { | ||
| 125 | omap_sram_start = OMAP5_SRAM_PA; | ||
| 126 | omap_sram_size = SZ_128K; /* 128KB */ | ||
| 127 | } else { | ||
| 128 | omap_sram_start = OMAP2_SRAM_PUB_PA; | ||
| 129 | omap_sram_size = 0x800; /* 2K */ | ||
| 130 | } | ||
| 131 | } else { | ||
| 132 | if (soc_is_am33xx()) { | ||
| 133 | omap_sram_start = AM33XX_SRAM_PA; | ||
| 134 | omap_sram_size = 0x10000; /* 64K */ | ||
| 135 | } else if (cpu_is_omap34xx()) { | ||
| 136 | omap_sram_start = OMAP3_SRAM_PA; | ||
| 137 | omap_sram_size = 0x10000; /* 64K */ | ||
| 138 | } else if (cpu_is_omap44xx()) { | ||
| 139 | omap_sram_start = OMAP4_SRAM_PA; | ||
| 140 | omap_sram_size = 0xe000; /* 56K */ | ||
| 141 | } else if (soc_is_omap54xx()) { | ||
| 142 | omap_sram_start = OMAP5_SRAM_PA; | ||
| 143 | omap_sram_size = SZ_128K; /* 128KB */ | ||
| 144 | } else { | ||
| 145 | omap_sram_start = OMAP2_SRAM_PA; | ||
| 146 | if (cpu_is_omap242x()) | ||
| 147 | omap_sram_size = 0xa0000; /* 640K */ | ||
| 148 | else if (cpu_is_omap243x()) | ||
| 149 | omap_sram_size = 0x10000; /* 64K */ | ||
| 150 | } | ||
| 151 | } | ||
| 152 | } else { | ||
| 153 | omap_sram_start = OMAP1_SRAM_PA; | ||
| 154 | |||
| 155 | if (cpu_is_omap7xx()) | ||
| 156 | omap_sram_size = 0x32000; /* 200K */ | ||
| 157 | else if (cpu_is_omap15xx()) | ||
| 158 | omap_sram_size = 0x30000; /* 192K */ | ||
| 159 | else if (cpu_is_omap1610() || cpu_is_omap1611() || | ||
| 160 | cpu_is_omap1621() || cpu_is_omap1710()) | ||
| 161 | omap_sram_size = 0x4000; /* 16K */ | ||
| 162 | else { | ||
| 163 | pr_err("Could not detect SRAM size\n"); | ||
| 164 | omap_sram_size = 0x4000; | ||
| 165 | } | ||
| 166 | } | ||
| 167 | } | ||
| 168 | |||
| 169 | /* | ||
| 170 | * Note that we cannot use ioremap for SRAM, as clock init needs SRAM early. | ||
| 171 | */ | ||
| 172 | static void __init omap_map_sram(void) | ||
| 173 | { | ||
| 174 | int cached = 1; | ||
| 175 | |||
| 176 | if (omap_sram_size == 0) | ||
| 177 | return; | ||
| 178 | |||
| 179 | #ifdef CONFIG_OMAP4_ERRATA_I688 | ||
| 180 | if (cpu_is_omap44xx()) { | ||
| 181 | omap_sram_start += PAGE_SIZE; | ||
| 182 | omap_sram_size -= SZ_16K; | ||
| 183 | } | ||
| 184 | #endif | ||
| 185 | if (cpu_is_omap34xx()) { | ||
| 186 | /* | ||
| 187 | * SRAM must be marked as non-cached on OMAP3 since the | ||
| 188 | * CORE DPLL M2 divider change code (in SRAM) runs with the | ||
| 189 | * SDRAM controller disabled, and if it is marked cached, | ||
| 190 | * the ARM may attempt to write cache lines back to SDRAM | ||
| 191 | * which will cause the system to hang. | ||
| 192 | */ | ||
| 193 | cached = 0; | ||
| 194 | } | ||
| 195 | |||
| 196 | omap_sram_start = ROUND_DOWN(omap_sram_start, PAGE_SIZE); | ||
| 197 | omap_sram_base = __arm_ioremap_exec(omap_sram_start, omap_sram_size, | ||
| 198 | cached); | ||
| 199 | if (!omap_sram_base) { | ||
| 200 | pr_err("SRAM: Could not map\n"); | ||
| 201 | return; | ||
| 202 | } | ||
| 203 | |||
| 204 | omap_sram_ceil = omap_sram_base + omap_sram_size; | ||
| 205 | |||
| 206 | /* | ||
| 207 | * Looks like we need to preserve some bootloader code at the | ||
| 208 | * beginning of SRAM for jumping to flash for reboot to work... | ||
| 209 | */ | ||
| 210 | memset_io(omap_sram_base + omap_sram_skip, 0, | ||
| 211 | omap_sram_size - omap_sram_skip); | ||
| 212 | } | ||
| 213 | |||
| 214 | /* | ||
| 215 | * Memory allocator for SRAM: calculates the new ceiling address | 37 | * Memory allocator for SRAM: calculates the new ceiling address |
| 216 | * for pushing a function using the fncpy API. | 38 | * for pushing a function using the fncpy API. |
| 217 | * | 39 | * |
| @@ -236,171 +58,39 @@ void *omap_sram_push_address(unsigned long size) | |||
| 236 | return (void *)omap_sram_ceil; | 58 | return (void *)omap_sram_ceil; |
| 237 | } | 59 | } |
| 238 | 60 | ||
| 239 | #ifdef CONFIG_ARCH_OMAP1 | 61 | /* |
| 240 | 62 | * The SRAM context is lost during off-idle and stack | |
| 241 | static void (*_omap_sram_reprogram_clock)(u32 dpllctl, u32 ckctl); | 63 | * needs to be reset. |
| 242 | 64 | */ | |
| 243 | void omap_sram_reprogram_clock(u32 dpllctl, u32 ckctl) | 65 | void omap_sram_reset(void) |
| 244 | { | ||
| 245 | BUG_ON(!_omap_sram_reprogram_clock); | ||
| 246 | /* On 730, bit 13 must always be 1 */ | ||
| 247 | if (cpu_is_omap7xx()) | ||
| 248 | ckctl |= 0x2000; | ||
| 249 | _omap_sram_reprogram_clock(dpllctl, ckctl); | ||
| 250 | } | ||
| 251 | |||
| 252 | static int __init omap1_sram_init(void) | ||
| 253 | { | ||
| 254 | _omap_sram_reprogram_clock = | ||
| 255 | omap_sram_push(omap1_sram_reprogram_clock, | ||
| 256 | omap1_sram_reprogram_clock_sz); | ||
| 257 | |||
| 258 | return 0; | ||
| 259 | } | ||
| 260 | |||
| 261 | #else | ||
| 262 | #define omap1_sram_init() do {} while (0) | ||
| 263 | #endif | ||
| 264 | |||
| 265 | #if defined(CONFIG_ARCH_OMAP2) | ||
| 266 | |||
| 267 | static void (*_omap2_sram_ddr_init)(u32 *slow_dll_ctrl, u32 fast_dll_ctrl, | ||
| 268 | u32 base_cs, u32 force_unlock); | ||
| 269 | |||
| 270 | void omap2_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl, | ||
| 271 | u32 base_cs, u32 force_unlock) | ||
| 272 | { | ||
| 273 | BUG_ON(!_omap2_sram_ddr_init); | ||
| 274 | _omap2_sram_ddr_init(slow_dll_ctrl, fast_dll_ctrl, | ||
| 275 | base_cs, force_unlock); | ||
| 276 | } | ||
| 277 | |||
| 278 | static void (*_omap2_sram_reprogram_sdrc)(u32 perf_level, u32 dll_val, | ||
| 279 | u32 mem_type); | ||
| 280 | |||
| 281 | void omap2_sram_reprogram_sdrc(u32 perf_level, u32 dll_val, u32 mem_type) | ||
| 282 | { | ||
| 283 | BUG_ON(!_omap2_sram_reprogram_sdrc); | ||
| 284 | _omap2_sram_reprogram_sdrc(perf_level, dll_val, mem_type); | ||
| 285 | } | ||
| 286 | |||
| 287 | static u32 (*_omap2_set_prcm)(u32 dpll_ctrl_val, u32 sdrc_rfr_val, int bypass); | ||
| 288 | |||
| 289 | u32 omap2_set_prcm(u32 dpll_ctrl_val, u32 sdrc_rfr_val, int bypass) | ||
| 290 | { | ||
| 291 | BUG_ON(!_omap2_set_prcm); | ||
| 292 | return _omap2_set_prcm(dpll_ctrl_val, sdrc_rfr_val, bypass); | ||
| 293 | } | ||
| 294 | #endif | ||
| 295 | |||
| 296 | #ifdef CONFIG_SOC_OMAP2420 | ||
| 297 | static int __init omap242x_sram_init(void) | ||
| 298 | { | ||
| 299 | _omap2_sram_ddr_init = omap_sram_push(omap242x_sram_ddr_init, | ||
| 300 | omap242x_sram_ddr_init_sz); | ||
| 301 | |||
| 302 | _omap2_sram_reprogram_sdrc = omap_sram_push(omap242x_sram_reprogram_sdrc, | ||
| 303 | omap242x_sram_reprogram_sdrc_sz); | ||
| 304 | |||
| 305 | _omap2_set_prcm = omap_sram_push(omap242x_sram_set_prcm, | ||
| 306 | omap242x_sram_set_prcm_sz); | ||
| 307 | |||
| 308 | return 0; | ||
| 309 | } | ||
| 310 | #else | ||
| 311 | static inline int omap242x_sram_init(void) | ||
| 312 | { | ||
| 313 | return 0; | ||
| 314 | } | ||
| 315 | #endif | ||
| 316 | |||
| 317 | #ifdef CONFIG_SOC_OMAP2430 | ||
| 318 | static int __init omap243x_sram_init(void) | ||
| 319 | { | ||
| 320 | _omap2_sram_ddr_init = omap_sram_push(omap243x_sram_ddr_init, | ||
| 321 | omap243x_sram_ddr_init_sz); | ||
| 322 | |||
| 323 | _omap2_sram_reprogram_sdrc = omap_sram_push(omap243x_sram_reprogram_sdrc, | ||
| 324 | omap243x_sram_reprogram_sdrc_sz); | ||
| 325 | |||
| 326 | _omap2_set_prcm = omap_sram_push(omap243x_sram_set_prcm, | ||
| 327 | omap243x_sram_set_prcm_sz); | ||
| 328 | |||
| 329 | return 0; | ||
| 330 | } | ||
| 331 | #else | ||
| 332 | static inline int omap243x_sram_init(void) | ||
| 333 | { | ||
| 334 | return 0; | ||
| 335 | } | ||
| 336 | #endif | ||
| 337 | |||
| 338 | #ifdef CONFIG_ARCH_OMAP3 | ||
| 339 | |||
| 340 | static u32 (*_omap3_sram_configure_core_dpll)( | ||
| 341 | u32 m2, u32 unlock_dll, u32 f, u32 inc, | ||
| 342 | u32 sdrc_rfr_ctrl_0, u32 sdrc_actim_ctrl_a_0, | ||
| 343 | u32 sdrc_actim_ctrl_b_0, u32 sdrc_mr_0, | ||
| 344 | u32 sdrc_rfr_ctrl_1, u32 sdrc_actim_ctrl_a_1, | ||
| 345 | u32 sdrc_actim_ctrl_b_1, u32 sdrc_mr_1); | ||
| 346 | |||
| 347 | u32 omap3_configure_core_dpll(u32 m2, u32 unlock_dll, u32 f, u32 inc, | ||
| 348 | u32 sdrc_rfr_ctrl_0, u32 sdrc_actim_ctrl_a_0, | ||
| 349 | u32 sdrc_actim_ctrl_b_0, u32 sdrc_mr_0, | ||
| 350 | u32 sdrc_rfr_ctrl_1, u32 sdrc_actim_ctrl_a_1, | ||
| 351 | u32 sdrc_actim_ctrl_b_1, u32 sdrc_mr_1) | ||
| 352 | { | ||
| 353 | BUG_ON(!_omap3_sram_configure_core_dpll); | ||
| 354 | return _omap3_sram_configure_core_dpll( | ||
| 355 | m2, unlock_dll, f, inc, | ||
| 356 | sdrc_rfr_ctrl_0, sdrc_actim_ctrl_a_0, | ||
| 357 | sdrc_actim_ctrl_b_0, sdrc_mr_0, | ||
| 358 | sdrc_rfr_ctrl_1, sdrc_actim_ctrl_a_1, | ||
| 359 | sdrc_actim_ctrl_b_1, sdrc_mr_1); | ||
| 360 | } | ||
| 361 | |||
| 362 | void omap3_sram_restore_context(void) | ||
| 363 | { | 66 | { |
| 364 | omap_sram_ceil = omap_sram_base + omap_sram_size; | 67 | omap_sram_ceil = omap_sram_base + omap_sram_size; |
| 365 | |||
| 366 | _omap3_sram_configure_core_dpll = | ||
| 367 | omap_sram_push(omap3_sram_configure_core_dpll, | ||
| 368 | omap3_sram_configure_core_dpll_sz); | ||
| 369 | omap_push_sram_idle(); | ||
| 370 | } | 68 | } |
| 371 | 69 | ||
| 372 | static inline int omap34xx_sram_init(void) | 70 | /* |
| 373 | { | 71 | * Note that we cannot use ioremap for SRAM, as clock init needs SRAM early. |
| 374 | omap3_sram_restore_context(); | 72 | */ |
| 375 | return 0; | 73 | void __init omap_map_sram(unsigned long start, unsigned long size, |
| 376 | } | 74 | unsigned long skip, int cached) |
| 377 | #else | ||
| 378 | static inline int omap34xx_sram_init(void) | ||
| 379 | { | ||
| 380 | return 0; | ||
| 381 | } | ||
| 382 | #endif /* CONFIG_ARCH_OMAP3 */ | ||
| 383 | |||
| 384 | static inline int am33xx_sram_init(void) | ||
| 385 | { | 75 | { |
| 386 | return 0; | 76 | if (size == 0) |
| 387 | } | 77 | return; |
| 388 | 78 | ||
| 389 | int __init omap_sram_init(void) | 79 | start = ROUND_DOWN(start, PAGE_SIZE); |
| 390 | { | 80 | omap_sram_size = size; |
| 391 | omap_detect_sram(); | 81 | omap_sram_skip = skip; |
| 392 | omap_map_sram(); | 82 | omap_sram_base = __arm_ioremap_exec(start, size, cached); |
| 83 | if (!omap_sram_base) { | ||
| 84 | pr_err("SRAM: Could not map\n"); | ||
| 85 | return; | ||
| 86 | } | ||
| 393 | 87 | ||
| 394 | if (!(cpu_class_is_omap2())) | 88 | omap_sram_reset(); |
| 395 | omap1_sram_init(); | ||
| 396 | else if (cpu_is_omap242x()) | ||
| 397 | omap242x_sram_init(); | ||
| 398 | else if (cpu_is_omap2430()) | ||
| 399 | omap243x_sram_init(); | ||
| 400 | else if (soc_is_am33xx()) | ||
| 401 | am33xx_sram_init(); | ||
| 402 | else if (cpu_is_omap34xx()) | ||
| 403 | omap34xx_sram_init(); | ||
| 404 | 89 | ||
| 405 | return 0; | 90 | /* |
| 91 | * Looks like we need to preserve some bootloader code at the | ||
| 92 | * beginning of SRAM for jumping to flash for reboot to work... | ||
| 93 | */ | ||
| 94 | memset_io(omap_sram_base + omap_sram_skip, 0, | ||
| 95 | omap_sram_size - omap_sram_skip); | ||
| 406 | } | 96 | } |
diff --git a/arch/arm/plat-omap/sram.h b/arch/arm/plat-omap/sram.h deleted file mode 100644 index 29b43ef97f20..000000000000 --- a/arch/arm/plat-omap/sram.h +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #ifndef __PLAT_OMAP_SRAM_H__ | ||
| 2 | #define __PLAT_OMAP_SRAM_H__ | ||
| 3 | |||
| 4 | extern int __init omap_sram_init(void); | ||
| 5 | |||
| 6 | #endif /* __PLAT_OMAP_SRAM_H__ */ | ||
