2 * arch/arm/mach-ep93xx/core.c
3 * Core routines for Cirrus EP93xx chips.
5 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
6 * Copyright (C) 2007 Herbert Valerio Riedel <hvr@gnu.org>
8 * Thanks go to Michael Burian and Ray Lehtiniemi for their key
9 * role in the ep93xx linux community.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
17 #define pr_fmt(fmt) "ep93xx " KBUILD_MODNAME ": " fmt
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/platform_device.h>
22 #include <linux/interrupt.h>
23 #include <linux/dma-mapping.h>
24 #include <linux/timex.h>
25 #include <linux/irq.h>
27 #include <linux/gpio.h>
28 #include <linux/leds.h>
29 #include <linux/termios.h>
30 #include <linux/amba/bus.h>
31 #include <linux/amba/serial.h>
32 #include <linux/mtd/physmap.h>
33 #include <linux/i2c.h>
34 #include <linux/i2c-gpio.h>
35 #include <linux/spi/spi.h>
36 #include <linux/export.h>
37 #include <linux/irqchip/arm-vic.h>
39 #include <mach/hardware.h>
40 #include <linux/platform_data/video-ep93xx.h>
41 #include <linux/platform_data/keypad-ep93xx.h>
42 #include <linux/platform_data/spi-ep93xx.h>
43 #include <mach/gpio-ep93xx.h>
45 #include <asm/mach/map.h>
46 #include <asm/mach/time.h>
50 /*************************************************************************
51 * Static I/O mappings that are needed for all EP93xx platforms
52 *************************************************************************/
53 static struct map_desc ep93xx_io_desc
[] __initdata
= {
55 .virtual = EP93XX_AHB_VIRT_BASE
,
56 .pfn
= __phys_to_pfn(EP93XX_AHB_PHYS_BASE
),
57 .length
= EP93XX_AHB_SIZE
,
60 .virtual = EP93XX_APB_VIRT_BASE
,
61 .pfn
= __phys_to_pfn(EP93XX_APB_PHYS_BASE
),
62 .length
= EP93XX_APB_SIZE
,
67 void __init
ep93xx_map_io(void)
69 iotable_init(ep93xx_io_desc
, ARRAY_SIZE(ep93xx_io_desc
));
73 /*************************************************************************
74 * Timer handling for EP93xx
75 *************************************************************************
76 * The ep93xx has four internal timers. Timers 1, 2 (both 16 bit) and
77 * 3 (32 bit) count down at 508 kHz, are self-reloading, and can generate
78 * an interrupt on underflow. Timer 4 (40 bit) counts down at 983.04 kHz,
79 * is free-running, and can't generate interrupts.
81 * The 508 kHz timers are ideal for use for the timer interrupt, as the
82 * most common values of HZ divide 508 kHz nicely. We pick one of the 16
83 * bit timers (timer 1) since we don't need more than 16 bits of reload
84 * value as long as HZ >= 8.
86 * The higher clock rate of timer 4 makes it a better choice than the
87 * other timers for use in gettimeoffset(), while the fact that it can't
88 * generate interrupts means we don't have to worry about not being able
89 * to use this timer for something else. We also use timer 4 for keeping
90 * track of lost jiffies.
92 #define EP93XX_TIMER_REG(x) (EP93XX_TIMER_BASE + (x))
93 #define EP93XX_TIMER1_LOAD EP93XX_TIMER_REG(0x00)
94 #define EP93XX_TIMER1_VALUE EP93XX_TIMER_REG(0x04)
95 #define EP93XX_TIMER1_CONTROL EP93XX_TIMER_REG(0x08)
96 #define EP93XX_TIMER123_CONTROL_ENABLE (1 << 7)
97 #define EP93XX_TIMER123_CONTROL_MODE (1 << 6)
98 #define EP93XX_TIMER123_CONTROL_CLKSEL (1 << 3)
99 #define EP93XX_TIMER1_CLEAR EP93XX_TIMER_REG(0x0c)
100 #define EP93XX_TIMER2_LOAD EP93XX_TIMER_REG(0x20)
101 #define EP93XX_TIMER2_VALUE EP93XX_TIMER_REG(0x24)
102 #define EP93XX_TIMER2_CONTROL EP93XX_TIMER_REG(0x28)
103 #define EP93XX_TIMER2_CLEAR EP93XX_TIMER_REG(0x2c)
104 #define EP93XX_TIMER4_VALUE_LOW EP93XX_TIMER_REG(0x60)
105 #define EP93XX_TIMER4_VALUE_HIGH EP93XX_TIMER_REG(0x64)
106 #define EP93XX_TIMER4_VALUE_HIGH_ENABLE (1 << 8)
107 #define EP93XX_TIMER3_LOAD EP93XX_TIMER_REG(0x80)
108 #define EP93XX_TIMER3_VALUE EP93XX_TIMER_REG(0x84)
109 #define EP93XX_TIMER3_CONTROL EP93XX_TIMER_REG(0x88)
110 #define EP93XX_TIMER3_CLEAR EP93XX_TIMER_REG(0x8c)
112 #define EP93XX_TIMER123_CLOCK 508469
113 #define EP93XX_TIMER4_CLOCK 983040
115 #define TIMER1_RELOAD ((EP93XX_TIMER123_CLOCK / HZ) - 1)
116 #define TIMER4_TICKS_PER_JIFFY DIV_ROUND_CLOSEST(CLOCK_TICK_RATE, HZ)
118 static unsigned int last_jiffy_time
;
120 static irqreturn_t
ep93xx_timer_interrupt(int irq
, void *dev_id
)
122 /* Writing any value clears the timer interrupt */
123 __raw_writel(1, EP93XX_TIMER1_CLEAR
);
125 /* Recover lost jiffies */
127 (__raw_readl(EP93XX_TIMER4_VALUE_LOW
) - last_jiffy_time
)
128 >= TIMER4_TICKS_PER_JIFFY
) {
129 last_jiffy_time
+= TIMER4_TICKS_PER_JIFFY
;
136 static struct irqaction ep93xx_timer_irq
= {
137 .name
= "ep93xx timer",
138 .flags
= IRQF_DISABLED
| IRQF_TIMER
| IRQF_IRQPOLL
,
139 .handler
= ep93xx_timer_interrupt
,
142 static u32
ep93xx_gettimeoffset(void)
146 offset
= __raw_readl(EP93XX_TIMER4_VALUE_LOW
) - last_jiffy_time
;
149 * Timer 4 is based on a 983.04 kHz reference clock,
150 * so dividing by 983040 gives the fraction of a second,
151 * so dividing by 0.983040 converts to uS.
152 * Refactor the calculation to avoid overflow.
153 * Finally, multiply by 1000 to give nS.
155 return (offset
+ (53 * offset
/ 3072)) * 1000;
158 void __init
ep93xx_timer_init(void)
160 u32 tmode
= EP93XX_TIMER123_CONTROL_MODE
|
161 EP93XX_TIMER123_CONTROL_CLKSEL
;
163 arch_gettimeoffset
= ep93xx_gettimeoffset
;
165 /* Enable periodic HZ timer. */
166 __raw_writel(tmode
, EP93XX_TIMER1_CONTROL
);
167 __raw_writel(TIMER1_RELOAD
, EP93XX_TIMER1_LOAD
);
168 __raw_writel(tmode
| EP93XX_TIMER123_CONTROL_ENABLE
,
169 EP93XX_TIMER1_CONTROL
);
171 /* Enable lost jiffy timer. */
172 __raw_writel(EP93XX_TIMER4_VALUE_HIGH_ENABLE
,
173 EP93XX_TIMER4_VALUE_HIGH
);
175 setup_irq(IRQ_EP93XX_TIMER1
, &ep93xx_timer_irq
);
179 /*************************************************************************
180 * EP93xx IRQ handling
181 *************************************************************************/
182 void __init
ep93xx_init_irq(void)
184 vic_init(EP93XX_VIC1_BASE
, 0, EP93XX_VIC1_VALID_IRQ_MASK
, 0);
185 vic_init(EP93XX_VIC2_BASE
, 32, EP93XX_VIC2_VALID_IRQ_MASK
, 0);
189 /*************************************************************************
190 * EP93xx System Controller Software Locked register handling
191 *************************************************************************/
194 * syscon_swlock prevents anything else from writing to the syscon
195 * block while a software locked register is being written.
197 static DEFINE_SPINLOCK(syscon_swlock
);
199 void ep93xx_syscon_swlocked_write(unsigned int val
, void __iomem
*reg
)
203 spin_lock_irqsave(&syscon_swlock
, flags
);
205 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK
);
206 __raw_writel(val
, reg
);
208 spin_unlock_irqrestore(&syscon_swlock
, flags
);
211 void ep93xx_devcfg_set_clear(unsigned int set_bits
, unsigned int clear_bits
)
216 spin_lock_irqsave(&syscon_swlock
, flags
);
218 val
= __raw_readl(EP93XX_SYSCON_DEVCFG
);
221 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK
);
222 __raw_writel(val
, EP93XX_SYSCON_DEVCFG
);
224 spin_unlock_irqrestore(&syscon_swlock
, flags
);
228 * ep93xx_chip_revision() - returns the EP93xx chip revision
230 * See <mach/platform.h> for more information.
232 unsigned int ep93xx_chip_revision(void)
236 v
= __raw_readl(EP93XX_SYSCON_SYSCFG
);
237 v
&= EP93XX_SYSCON_SYSCFG_REV_MASK
;
238 v
>>= EP93XX_SYSCON_SYSCFG_REV_SHIFT
;
242 /*************************************************************************
244 *************************************************************************/
245 static struct resource ep93xx_gpio_resource
[] = {
246 DEFINE_RES_MEM(EP93XX_GPIO_PHYS_BASE
, 0xcc),
249 static struct platform_device ep93xx_gpio_device
= {
250 .name
= "gpio-ep93xx",
252 .num_resources
= ARRAY_SIZE(ep93xx_gpio_resource
),
253 .resource
= ep93xx_gpio_resource
,
256 /*************************************************************************
257 * EP93xx peripheral handling
258 *************************************************************************/
259 #define EP93XX_UART_MCR_OFFSET (0x0100)
261 static void ep93xx_uart_set_mctrl(struct amba_device
*dev
,
262 void __iomem
*base
, unsigned int mctrl
)
267 if (mctrl
& TIOCM_RTS
)
269 if (mctrl
& TIOCM_DTR
)
272 __raw_writel(mcr
, base
+ EP93XX_UART_MCR_OFFSET
);
275 static struct amba_pl010_data ep93xx_uart_data
= {
276 .set_mctrl
= ep93xx_uart_set_mctrl
,
279 static AMBA_APB_DEVICE(uart1
, "apb:uart1", 0x00041010, EP93XX_UART1_PHYS_BASE
,
280 { IRQ_EP93XX_UART1
}, &ep93xx_uart_data
);
282 static AMBA_APB_DEVICE(uart2
, "apb:uart2", 0x00041010, EP93XX_UART2_PHYS_BASE
,
283 { IRQ_EP93XX_UART2
}, &ep93xx_uart_data
);
285 static AMBA_APB_DEVICE(uart3
, "apb:uart3", 0x00041010, EP93XX_UART3_PHYS_BASE
,
286 { IRQ_EP93XX_UART3
}, &ep93xx_uart_data
);
288 static struct resource ep93xx_rtc_resource
[] = {
289 DEFINE_RES_MEM(EP93XX_RTC_PHYS_BASE
, 0x10c),
292 static struct platform_device ep93xx_rtc_device
= {
293 .name
= "ep93xx-rtc",
295 .num_resources
= ARRAY_SIZE(ep93xx_rtc_resource
),
296 .resource
= ep93xx_rtc_resource
,
300 static struct resource ep93xx_ohci_resources
[] = {
301 DEFINE_RES_MEM(EP93XX_USB_PHYS_BASE
, 0x1000),
302 DEFINE_RES_IRQ(IRQ_EP93XX_USB
),
306 static struct platform_device ep93xx_ohci_device
= {
307 .name
= "ep93xx-ohci",
310 .dma_mask
= &ep93xx_ohci_device
.dev
.coherent_dma_mask
,
311 .coherent_dma_mask
= DMA_BIT_MASK(32),
313 .num_resources
= ARRAY_SIZE(ep93xx_ohci_resources
),
314 .resource
= ep93xx_ohci_resources
,
318 /*************************************************************************
319 * EP93xx physmap'ed flash
320 *************************************************************************/
321 static struct physmap_flash_data ep93xx_flash_data
;
323 static struct resource ep93xx_flash_resource
= {
324 .flags
= IORESOURCE_MEM
,
327 static struct platform_device ep93xx_flash
= {
328 .name
= "physmap-flash",
331 .platform_data
= &ep93xx_flash_data
,
334 .resource
= &ep93xx_flash_resource
,
338 * ep93xx_register_flash() - Register the external flash device.
339 * @width: bank width in octets
340 * @start: resource start address
341 * @size: resource size
343 void __init
ep93xx_register_flash(unsigned int width
,
344 resource_size_t start
, resource_size_t size
)
346 ep93xx_flash_data
.width
= width
;
348 ep93xx_flash_resource
.start
= start
;
349 ep93xx_flash_resource
.end
= start
+ size
- 1;
351 platform_device_register(&ep93xx_flash
);
355 /*************************************************************************
356 * EP93xx ethernet peripheral handling
357 *************************************************************************/
358 static struct ep93xx_eth_data ep93xx_eth_data
;
360 static struct resource ep93xx_eth_resource
[] = {
361 DEFINE_RES_MEM(EP93XX_ETHERNET_PHYS_BASE
, 0x10000),
362 DEFINE_RES_IRQ(IRQ_EP93XX_ETHERNET
),
365 static u64 ep93xx_eth_dma_mask
= DMA_BIT_MASK(32);
367 static struct platform_device ep93xx_eth_device
= {
368 .name
= "ep93xx-eth",
371 .platform_data
= &ep93xx_eth_data
,
372 .coherent_dma_mask
= DMA_BIT_MASK(32),
373 .dma_mask
= &ep93xx_eth_dma_mask
,
375 .num_resources
= ARRAY_SIZE(ep93xx_eth_resource
),
376 .resource
= ep93xx_eth_resource
,
380 * ep93xx_register_eth - Register the built-in ethernet platform device.
381 * @data: platform specific ethernet configuration (__initdata)
382 * @copy_addr: flag indicating that the MAC address should be copied
383 * from the IndAd registers (as programmed by the bootloader)
385 void __init
ep93xx_register_eth(struct ep93xx_eth_data
*data
, int copy_addr
)
388 memcpy_fromio(data
->dev_addr
, EP93XX_ETHERNET_BASE
+ 0x50, 6);
390 ep93xx_eth_data
= *data
;
391 platform_device_register(&ep93xx_eth_device
);
395 /*************************************************************************
396 * EP93xx i2c peripheral handling
397 *************************************************************************/
398 static struct i2c_gpio_platform_data ep93xx_i2c_data
;
400 static struct platform_device ep93xx_i2c_device
= {
404 .platform_data
= &ep93xx_i2c_data
,
409 * ep93xx_register_i2c - Register the i2c platform device.
410 * @data: platform specific i2c-gpio configuration (__initdata)
411 * @devices: platform specific i2c bus device information (__initdata)
412 * @num: the number of devices on the i2c bus
414 void __init
ep93xx_register_i2c(struct i2c_gpio_platform_data
*data
,
415 struct i2c_board_info
*devices
, int num
)
418 * Set the EEPROM interface pin drive type control.
419 * Defines the driver type for the EECLK and EEDAT pins as either
420 * open drain, which will require an external pull-up, or a normal
423 if (data
->sda_is_open_drain
&& data
->sda_pin
!= EP93XX_GPIO_LINE_EEDAT
)
424 pr_warning("sda != EEDAT, open drain has no effect\n");
425 if (data
->scl_is_open_drain
&& data
->scl_pin
!= EP93XX_GPIO_LINE_EECLK
)
426 pr_warning("scl != EECLK, open drain has no effect\n");
428 __raw_writel((data
->sda_is_open_drain
<< 1) |
429 (data
->scl_is_open_drain
<< 0),
430 EP93XX_GPIO_EEDRIVE
);
432 ep93xx_i2c_data
= *data
;
433 i2c_register_board_info(0, devices
, num
);
434 platform_device_register(&ep93xx_i2c_device
);
437 /*************************************************************************
438 * EP93xx SPI peripheral handling
439 *************************************************************************/
440 static struct ep93xx_spi_info ep93xx_spi_master_data
;
442 static struct resource ep93xx_spi_resources
[] = {
443 DEFINE_RES_MEM(EP93XX_SPI_PHYS_BASE
, 0x18),
444 DEFINE_RES_IRQ(IRQ_EP93XX_SSP
),
447 static u64 ep93xx_spi_dma_mask
= DMA_BIT_MASK(32);
449 static struct platform_device ep93xx_spi_device
= {
450 .name
= "ep93xx-spi",
453 .platform_data
= &ep93xx_spi_master_data
,
454 .coherent_dma_mask
= DMA_BIT_MASK(32),
455 .dma_mask
= &ep93xx_spi_dma_mask
,
457 .num_resources
= ARRAY_SIZE(ep93xx_spi_resources
),
458 .resource
= ep93xx_spi_resources
,
462 * ep93xx_register_spi() - registers spi platform device
463 * @info: ep93xx board specific spi master info (__initdata)
464 * @devices: SPI devices to register (__initdata)
465 * @num: number of SPI devices to register
467 * This function registers platform device for the EP93xx SPI controller and
468 * also makes sure that SPI pins are muxed so that I2S is not using those pins.
470 void __init
ep93xx_register_spi(struct ep93xx_spi_info
*info
,
471 struct spi_board_info
*devices
, int num
)
474 * When SPI is used, we need to make sure that I2S is muxed off from
477 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2SONSSP
);
479 ep93xx_spi_master_data
= *info
;
480 spi_register_board_info(devices
, num
);
481 platform_device_register(&ep93xx_spi_device
);
484 /*************************************************************************
486 *************************************************************************/
487 static const struct gpio_led ep93xx_led_pins
[] __initconst
= {
489 .name
= "platform:grled",
490 .gpio
= EP93XX_GPIO_LINE_GRLED
,
492 .name
= "platform:rdled",
493 .gpio
= EP93XX_GPIO_LINE_RDLED
,
497 static const struct gpio_led_platform_data ep93xx_led_data __initconst
= {
498 .num_leds
= ARRAY_SIZE(ep93xx_led_pins
),
499 .leds
= ep93xx_led_pins
,
502 /*************************************************************************
503 * EP93xx pwm peripheral handling
504 *************************************************************************/
505 static struct resource ep93xx_pwm0_resource
[] = {
506 DEFINE_RES_MEM(EP93XX_PWM_PHYS_BASE
, 0x10),
509 static struct platform_device ep93xx_pwm0_device
= {
510 .name
= "ep93xx-pwm",
512 .num_resources
= ARRAY_SIZE(ep93xx_pwm0_resource
),
513 .resource
= ep93xx_pwm0_resource
,
516 static struct resource ep93xx_pwm1_resource
[] = {
517 DEFINE_RES_MEM(EP93XX_PWM_PHYS_BASE
+ 0x20, 0x10),
520 static struct platform_device ep93xx_pwm1_device
= {
521 .name
= "ep93xx-pwm",
523 .num_resources
= ARRAY_SIZE(ep93xx_pwm1_resource
),
524 .resource
= ep93xx_pwm1_resource
,
527 void __init
ep93xx_register_pwm(int pwm0
, int pwm1
)
530 platform_device_register(&ep93xx_pwm0_device
);
532 /* NOTE: EP9307 does not have PWMOUT1 (pin EGPIO14) */
534 platform_device_register(&ep93xx_pwm1_device
);
537 int ep93xx_pwm_acquire_gpio(struct platform_device
*pdev
)
543 } else if (pdev
->id
== 1) {
544 err
= gpio_request(EP93XX_GPIO_LINE_EGPIO14
,
545 dev_name(&pdev
->dev
));
548 err
= gpio_direction_output(EP93XX_GPIO_LINE_EGPIO14
, 0);
552 /* PWM 1 output on EGPIO[14] */
553 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_PONG
);
561 gpio_free(EP93XX_GPIO_LINE_EGPIO14
);
564 EXPORT_SYMBOL(ep93xx_pwm_acquire_gpio
);
566 void ep93xx_pwm_release_gpio(struct platform_device
*pdev
)
569 gpio_direction_input(EP93XX_GPIO_LINE_EGPIO14
);
570 gpio_free(EP93XX_GPIO_LINE_EGPIO14
);
572 /* EGPIO[14] used for GPIO */
573 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_PONG
);
576 EXPORT_SYMBOL(ep93xx_pwm_release_gpio
);
579 /*************************************************************************
580 * EP93xx video peripheral handling
581 *************************************************************************/
582 static struct ep93xxfb_mach_info ep93xxfb_data
;
584 static struct resource ep93xx_fb_resource
[] = {
585 DEFINE_RES_MEM(EP93XX_RASTER_PHYS_BASE
, 0x800),
588 static struct platform_device ep93xx_fb_device
= {
592 .platform_data
= &ep93xxfb_data
,
593 .coherent_dma_mask
= DMA_BIT_MASK(32),
594 .dma_mask
= &ep93xx_fb_device
.dev
.coherent_dma_mask
,
596 .num_resources
= ARRAY_SIZE(ep93xx_fb_resource
),
597 .resource
= ep93xx_fb_resource
,
600 /* The backlight use a single register in the framebuffer's register space */
601 #define EP93XX_RASTER_REG_BRIGHTNESS 0x20
603 static struct resource ep93xx_bl_resources
[] = {
604 DEFINE_RES_MEM(EP93XX_RASTER_PHYS_BASE
+
605 EP93XX_RASTER_REG_BRIGHTNESS
, 0x04),
608 static struct platform_device ep93xx_bl_device
= {
611 .num_resources
= ARRAY_SIZE(ep93xx_bl_resources
),
612 .resource
= ep93xx_bl_resources
,
616 * ep93xx_register_fb - Register the framebuffer platform device.
617 * @data: platform specific framebuffer configuration (__initdata)
619 void __init
ep93xx_register_fb(struct ep93xxfb_mach_info
*data
)
621 ep93xxfb_data
= *data
;
622 platform_device_register(&ep93xx_fb_device
);
623 platform_device_register(&ep93xx_bl_device
);
627 /*************************************************************************
628 * EP93xx matrix keypad peripheral handling
629 *************************************************************************/
630 static struct ep93xx_keypad_platform_data ep93xx_keypad_data
;
632 static struct resource ep93xx_keypad_resource
[] = {
633 DEFINE_RES_MEM(EP93XX_KEY_MATRIX_PHYS_BASE
, 0x0c),
634 DEFINE_RES_IRQ(IRQ_EP93XX_KEY
),
637 static struct platform_device ep93xx_keypad_device
= {
638 .name
= "ep93xx-keypad",
641 .platform_data
= &ep93xx_keypad_data
,
643 .num_resources
= ARRAY_SIZE(ep93xx_keypad_resource
),
644 .resource
= ep93xx_keypad_resource
,
648 * ep93xx_register_keypad - Register the keypad platform device.
649 * @data: platform specific keypad configuration (__initdata)
651 void __init
ep93xx_register_keypad(struct ep93xx_keypad_platform_data
*data
)
653 ep93xx_keypad_data
= *data
;
654 platform_device_register(&ep93xx_keypad_device
);
657 int ep93xx_keypad_acquire_gpio(struct platform_device
*pdev
)
662 for (i
= 0; i
< 8; i
++) {
663 err
= gpio_request(EP93XX_GPIO_LINE_C(i
), dev_name(&pdev
->dev
));
666 err
= gpio_request(EP93XX_GPIO_LINE_D(i
), dev_name(&pdev
->dev
));
671 /* Enable the keypad controller; GPIO ports C and D used for keypad */
672 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_KEYS
|
673 EP93XX_SYSCON_DEVCFG_GONK
);
678 gpio_free(EP93XX_GPIO_LINE_C(i
));
680 for (--i
; i
>= 0; --i
) {
681 gpio_free(EP93XX_GPIO_LINE_C(i
));
682 gpio_free(EP93XX_GPIO_LINE_D(i
));
686 EXPORT_SYMBOL(ep93xx_keypad_acquire_gpio
);
688 void ep93xx_keypad_release_gpio(struct platform_device
*pdev
)
692 for (i
= 0; i
< 8; i
++) {
693 gpio_free(EP93XX_GPIO_LINE_C(i
));
694 gpio_free(EP93XX_GPIO_LINE_D(i
));
697 /* Disable the keypad controller; GPIO ports C and D used for GPIO */
698 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_KEYS
|
699 EP93XX_SYSCON_DEVCFG_GONK
);
701 EXPORT_SYMBOL(ep93xx_keypad_release_gpio
);
703 /*************************************************************************
704 * EP93xx I2S audio peripheral handling
705 *************************************************************************/
706 static struct resource ep93xx_i2s_resource
[] = {
707 DEFINE_RES_MEM(EP93XX_I2S_PHYS_BASE
, 0x100),
710 static struct platform_device ep93xx_i2s_device
= {
711 .name
= "ep93xx-i2s",
713 .num_resources
= ARRAY_SIZE(ep93xx_i2s_resource
),
714 .resource
= ep93xx_i2s_resource
,
717 static struct platform_device ep93xx_pcm_device
= {
718 .name
= "ep93xx-pcm-audio",
722 void __init
ep93xx_register_i2s(void)
724 platform_device_register(&ep93xx_i2s_device
);
725 platform_device_register(&ep93xx_pcm_device
);
728 #define EP93XX_SYSCON_DEVCFG_I2S_MASK (EP93XX_SYSCON_DEVCFG_I2SONSSP | \
729 EP93XX_SYSCON_DEVCFG_I2SONAC97)
731 #define EP93XX_I2SCLKDIV_MASK (EP93XX_SYSCON_I2SCLKDIV_ORIDE | \
732 EP93XX_SYSCON_I2SCLKDIV_SPOL)
734 int ep93xx_i2s_acquire(void)
738 ep93xx_devcfg_set_clear(EP93XX_SYSCON_DEVCFG_I2SONAC97
,
739 EP93XX_SYSCON_DEVCFG_I2S_MASK
);
742 * This is potentially racy with the clock api for i2s_mclk, sclk and
743 * lrclk. Since the i2s driver is the only user of those clocks we
744 * rely on it to prevent parallel use of this function and the
745 * clock api for the i2s clocks.
747 val
= __raw_readl(EP93XX_SYSCON_I2SCLKDIV
);
748 val
&= ~EP93XX_I2SCLKDIV_MASK
;
749 val
|= EP93XX_SYSCON_I2SCLKDIV_ORIDE
| EP93XX_SYSCON_I2SCLKDIV_SPOL
;
750 ep93xx_syscon_swlocked_write(val
, EP93XX_SYSCON_I2SCLKDIV
);
754 EXPORT_SYMBOL(ep93xx_i2s_acquire
);
756 void ep93xx_i2s_release(void)
758 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2S_MASK
);
760 EXPORT_SYMBOL(ep93xx_i2s_release
);
762 /*************************************************************************
763 * EP93xx AC97 audio peripheral handling
764 *************************************************************************/
765 static struct resource ep93xx_ac97_resources
[] = {
766 DEFINE_RES_MEM(EP93XX_AAC_PHYS_BASE
, 0xac),
767 DEFINE_RES_IRQ(IRQ_EP93XX_AACINTR
),
770 static struct platform_device ep93xx_ac97_device
= {
771 .name
= "ep93xx-ac97",
773 .num_resources
= ARRAY_SIZE(ep93xx_ac97_resources
),
774 .resource
= ep93xx_ac97_resources
,
777 void __init
ep93xx_register_ac97(void)
780 * Make sure that the AC97 pins are not used by I2S.
782 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2SONAC97
);
784 platform_device_register(&ep93xx_ac97_device
);
785 platform_device_register(&ep93xx_pcm_device
);
788 /*************************************************************************
790 *************************************************************************/
791 static struct resource ep93xx_wdt_resources
[] = {
792 DEFINE_RES_MEM(EP93XX_WATCHDOG_PHYS_BASE
, 0x08),
795 static struct platform_device ep93xx_wdt_device
= {
796 .name
= "ep93xx-wdt",
798 .num_resources
= ARRAY_SIZE(ep93xx_wdt_resources
),
799 .resource
= ep93xx_wdt_resources
,
802 /*************************************************************************
804 *************************************************************************/
805 static struct resource ep93xx_ide_resources
[] = {
806 DEFINE_RES_MEM(EP93XX_IDE_PHYS_BASE
, 0x38),
807 DEFINE_RES_IRQ(IRQ_EP93XX_EXT3
),
810 static struct platform_device ep93xx_ide_device
= {
811 .name
= "ep93xx-ide",
814 .dma_mask
= &ep93xx_ide_device
.dev
.coherent_dma_mask
,
815 .coherent_dma_mask
= DMA_BIT_MASK(32),
817 .num_resources
= ARRAY_SIZE(ep93xx_ide_resources
),
818 .resource
= ep93xx_ide_resources
,
821 void __init
ep93xx_register_ide(void)
823 platform_device_register(&ep93xx_ide_device
);
826 int ep93xx_ide_acquire_gpio(struct platform_device
*pdev
)
831 err
= gpio_request(EP93XX_GPIO_LINE_EGPIO2
, dev_name(&pdev
->dev
));
834 err
= gpio_request(EP93XX_GPIO_LINE_EGPIO15
, dev_name(&pdev
->dev
));
837 for (i
= 2; i
< 8; i
++) {
838 err
= gpio_request(EP93XX_GPIO_LINE_E(i
), dev_name(&pdev
->dev
));
842 for (i
= 4; i
< 8; i
++) {
843 err
= gpio_request(EP93XX_GPIO_LINE_G(i
), dev_name(&pdev
->dev
));
847 for (i
= 0; i
< 8; i
++) {
848 err
= gpio_request(EP93XX_GPIO_LINE_H(i
), dev_name(&pdev
->dev
));
853 /* GPIO ports E[7:2], G[7:4] and H used by IDE */
854 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_EONIDE
|
855 EP93XX_SYSCON_DEVCFG_GONIDE
|
856 EP93XX_SYSCON_DEVCFG_HONIDE
);
860 for (--i
; i
>= 0; --i
)
861 gpio_free(EP93XX_GPIO_LINE_H(i
));
864 for (--i
; i
>= 4; --i
)
865 gpio_free(EP93XX_GPIO_LINE_G(i
));
868 for (--i
; i
>= 2; --i
)
869 gpio_free(EP93XX_GPIO_LINE_E(i
));
870 gpio_free(EP93XX_GPIO_LINE_EGPIO15
);
872 gpio_free(EP93XX_GPIO_LINE_EGPIO2
);
875 EXPORT_SYMBOL(ep93xx_ide_acquire_gpio
);
877 void ep93xx_ide_release_gpio(struct platform_device
*pdev
)
881 for (i
= 2; i
< 8; i
++)
882 gpio_free(EP93XX_GPIO_LINE_E(i
));
883 for (i
= 4; i
< 8; i
++)
884 gpio_free(EP93XX_GPIO_LINE_G(i
));
885 for (i
= 0; i
< 8; i
++)
886 gpio_free(EP93XX_GPIO_LINE_H(i
));
887 gpio_free(EP93XX_GPIO_LINE_EGPIO15
);
888 gpio_free(EP93XX_GPIO_LINE_EGPIO2
);
891 /* GPIO ports E[7:2], G[7:4] and H used by GPIO */
892 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_EONIDE
|
893 EP93XX_SYSCON_DEVCFG_GONIDE
|
894 EP93XX_SYSCON_DEVCFG_HONIDE
);
896 EXPORT_SYMBOL(ep93xx_ide_release_gpio
);
898 void __init
ep93xx_init_devices(void)
900 /* Disallow access to MaverickCrunch initially */
901 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_CPENA
);
903 /* Default all ports to GPIO */
904 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_KEYS
|
905 EP93XX_SYSCON_DEVCFG_GONK
|
906 EP93XX_SYSCON_DEVCFG_EONIDE
|
907 EP93XX_SYSCON_DEVCFG_GONIDE
|
908 EP93XX_SYSCON_DEVCFG_HONIDE
);
910 /* Get the GPIO working early, other devices need it */
911 platform_device_register(&ep93xx_gpio_device
);
913 amba_device_register(&uart1_device
, &iomem_resource
);
914 amba_device_register(&uart2_device
, &iomem_resource
);
915 amba_device_register(&uart3_device
, &iomem_resource
);
917 platform_device_register(&ep93xx_rtc_device
);
918 platform_device_register(&ep93xx_ohci_device
);
919 platform_device_register(&ep93xx_wdt_device
);
921 gpio_led_register_device(-1, &ep93xx_led_data
);
924 void ep93xx_restart(char mode
, const char *cmd
)
927 * Set then clear the SWRST bit to initiate a software reset
929 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_SWRST
);
930 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_SWRST
);
936 void __init
ep93xx_init_late(void)