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>
37 #include <mach/hardware.h>
39 #include <mach/ep93xx_keypad.h>
40 #include <mach/ep93xx_spi.h>
42 #include <asm/mach/map.h>
43 #include <asm/mach/time.h>
45 #include <asm/hardware/vic.h>
48 /*************************************************************************
49 * Static I/O mappings that are needed for all EP93xx platforms
50 *************************************************************************/
51 static struct map_desc ep93xx_io_desc
[] __initdata
= {
53 .virtual = EP93XX_AHB_VIRT_BASE
,
54 .pfn
= __phys_to_pfn(EP93XX_AHB_PHYS_BASE
),
55 .length
= EP93XX_AHB_SIZE
,
58 .virtual = EP93XX_APB_VIRT_BASE
,
59 .pfn
= __phys_to_pfn(EP93XX_APB_PHYS_BASE
),
60 .length
= EP93XX_APB_SIZE
,
65 void __init
ep93xx_map_io(void)
67 iotable_init(ep93xx_io_desc
, ARRAY_SIZE(ep93xx_io_desc
));
71 /*************************************************************************
72 * Timer handling for EP93xx
73 *************************************************************************
74 * The ep93xx has four internal timers. Timers 1, 2 (both 16 bit) and
75 * 3 (32 bit) count down at 508 kHz, are self-reloading, and can generate
76 * an interrupt on underflow. Timer 4 (40 bit) counts down at 983.04 kHz,
77 * is free-running, and can't generate interrupts.
79 * The 508 kHz timers are ideal for use for the timer interrupt, as the
80 * most common values of HZ divide 508 kHz nicely. We pick one of the 16
81 * bit timers (timer 1) since we don't need more than 16 bits of reload
82 * value as long as HZ >= 8.
84 * The higher clock rate of timer 4 makes it a better choice than the
85 * other timers for use in gettimeoffset(), while the fact that it can't
86 * generate interrupts means we don't have to worry about not being able
87 * to use this timer for something else. We also use timer 4 for keeping
88 * track of lost jiffies.
90 #define EP93XX_TIMER_REG(x) (EP93XX_TIMER_BASE + (x))
91 #define EP93XX_TIMER1_LOAD EP93XX_TIMER_REG(0x00)
92 #define EP93XX_TIMER1_VALUE EP93XX_TIMER_REG(0x04)
93 #define EP93XX_TIMER1_CONTROL EP93XX_TIMER_REG(0x08)
94 #define EP93XX_TIMER123_CONTROL_ENABLE (1 << 7)
95 #define EP93XX_TIMER123_CONTROL_MODE (1 << 6)
96 #define EP93XX_TIMER123_CONTROL_CLKSEL (1 << 3)
97 #define EP93XX_TIMER1_CLEAR EP93XX_TIMER_REG(0x0c)
98 #define EP93XX_TIMER2_LOAD EP93XX_TIMER_REG(0x20)
99 #define EP93XX_TIMER2_VALUE EP93XX_TIMER_REG(0x24)
100 #define EP93XX_TIMER2_CONTROL EP93XX_TIMER_REG(0x28)
101 #define EP93XX_TIMER2_CLEAR EP93XX_TIMER_REG(0x2c)
102 #define EP93XX_TIMER4_VALUE_LOW EP93XX_TIMER_REG(0x60)
103 #define EP93XX_TIMER4_VALUE_HIGH EP93XX_TIMER_REG(0x64)
104 #define EP93XX_TIMER4_VALUE_HIGH_ENABLE (1 << 8)
105 #define EP93XX_TIMER3_LOAD EP93XX_TIMER_REG(0x80)
106 #define EP93XX_TIMER3_VALUE EP93XX_TIMER_REG(0x84)
107 #define EP93XX_TIMER3_CONTROL EP93XX_TIMER_REG(0x88)
108 #define EP93XX_TIMER3_CLEAR EP93XX_TIMER_REG(0x8c)
110 #define EP93XX_TIMER123_CLOCK 508469
111 #define EP93XX_TIMER4_CLOCK 983040
113 #define TIMER1_RELOAD ((EP93XX_TIMER123_CLOCK / HZ) - 1)
114 #define TIMER4_TICKS_PER_JIFFY DIV_ROUND_CLOSEST(CLOCK_TICK_RATE, HZ)
116 static unsigned int last_jiffy_time
;
118 static irqreturn_t
ep93xx_timer_interrupt(int irq
, void *dev_id
)
120 /* Writing any value clears the timer interrupt */
121 __raw_writel(1, EP93XX_TIMER1_CLEAR
);
123 /* Recover lost jiffies */
125 (__raw_readl(EP93XX_TIMER4_VALUE_LOW
) - last_jiffy_time
)
126 >= TIMER4_TICKS_PER_JIFFY
) {
127 last_jiffy_time
+= TIMER4_TICKS_PER_JIFFY
;
134 static struct irqaction ep93xx_timer_irq
= {
135 .name
= "ep93xx timer",
136 .flags
= IRQF_DISABLED
| IRQF_TIMER
| IRQF_IRQPOLL
,
137 .handler
= ep93xx_timer_interrupt
,
140 static void __init
ep93xx_timer_init(void)
142 u32 tmode
= EP93XX_TIMER123_CONTROL_MODE
|
143 EP93XX_TIMER123_CONTROL_CLKSEL
;
145 /* Enable periodic HZ timer. */
146 __raw_writel(tmode
, EP93XX_TIMER1_CONTROL
);
147 __raw_writel(TIMER1_RELOAD
, EP93XX_TIMER1_LOAD
);
148 __raw_writel(tmode
| EP93XX_TIMER123_CONTROL_ENABLE
,
149 EP93XX_TIMER1_CONTROL
);
151 /* Enable lost jiffy timer. */
152 __raw_writel(EP93XX_TIMER4_VALUE_HIGH_ENABLE
,
153 EP93XX_TIMER4_VALUE_HIGH
);
155 setup_irq(IRQ_EP93XX_TIMER1
, &ep93xx_timer_irq
);
158 static unsigned long ep93xx_gettimeoffset(void)
162 offset
= __raw_readl(EP93XX_TIMER4_VALUE_LOW
) - last_jiffy_time
;
164 /* Calculate (1000000 / 983040) * offset. */
165 return offset
+ (53 * offset
/ 3072);
168 struct sys_timer ep93xx_timer
= {
169 .init
= ep93xx_timer_init
,
170 .offset
= ep93xx_gettimeoffset
,
174 /*************************************************************************
175 * EP93xx IRQ handling
176 *************************************************************************/
177 extern void ep93xx_gpio_init_irq(void);
179 void __init
ep93xx_init_irq(void)
181 vic_init(EP93XX_VIC1_BASE
, 0, EP93XX_VIC1_VALID_IRQ_MASK
, 0);
182 vic_init(EP93XX_VIC2_BASE
, 32, EP93XX_VIC2_VALID_IRQ_MASK
, 0);
184 ep93xx_gpio_init_irq();
188 /*************************************************************************
189 * EP93xx System Controller Software Locked register handling
190 *************************************************************************/
193 * syscon_swlock prevents anything else from writing to the syscon
194 * block while a software locked register is being written.
196 static DEFINE_SPINLOCK(syscon_swlock
);
198 void ep93xx_syscon_swlocked_write(unsigned int val
, void __iomem
*reg
)
202 spin_lock_irqsave(&syscon_swlock
, flags
);
204 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK
);
205 __raw_writel(val
, reg
);
207 spin_unlock_irqrestore(&syscon_swlock
, flags
);
209 EXPORT_SYMBOL(ep93xx_syscon_swlocked_write
);
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
);
226 EXPORT_SYMBOL(ep93xx_devcfg_set_clear
);
229 * ep93xx_chip_revision() - returns the EP93xx chip revision
231 * See <mach/platform.h> for more information.
233 unsigned int ep93xx_chip_revision(void)
237 v
= __raw_readl(EP93XX_SYSCON_SYSCFG
);
238 v
&= EP93XX_SYSCON_SYSCFG_REV_MASK
;
239 v
>>= EP93XX_SYSCON_SYSCFG_REV_SHIFT
;
243 /*************************************************************************
244 * EP93xx peripheral handling
245 *************************************************************************/
246 #define EP93XX_UART_MCR_OFFSET (0x0100)
248 static void ep93xx_uart_set_mctrl(struct amba_device
*dev
,
249 void __iomem
*base
, unsigned int mctrl
)
254 if (!(mctrl
& TIOCM_RTS
))
256 if (!(mctrl
& TIOCM_DTR
))
259 __raw_writel(mcr
, base
+ EP93XX_UART_MCR_OFFSET
);
262 static struct amba_pl010_data ep93xx_uart_data
= {
263 .set_mctrl
= ep93xx_uart_set_mctrl
,
266 static struct amba_device uart1_device
= {
268 .init_name
= "apb:uart1",
269 .platform_data
= &ep93xx_uart_data
,
272 .start
= EP93XX_UART1_PHYS_BASE
,
273 .end
= EP93XX_UART1_PHYS_BASE
+ 0x0fff,
274 .flags
= IORESOURCE_MEM
,
276 .irq
= { IRQ_EP93XX_UART1
, NO_IRQ
},
277 .periphid
= 0x00041010,
280 static struct amba_device uart2_device
= {
282 .init_name
= "apb:uart2",
283 .platform_data
= &ep93xx_uart_data
,
286 .start
= EP93XX_UART2_PHYS_BASE
,
287 .end
= EP93XX_UART2_PHYS_BASE
+ 0x0fff,
288 .flags
= IORESOURCE_MEM
,
290 .irq
= { IRQ_EP93XX_UART2
, NO_IRQ
},
291 .periphid
= 0x00041010,
294 static struct amba_device uart3_device
= {
296 .init_name
= "apb:uart3",
297 .platform_data
= &ep93xx_uart_data
,
300 .start
= EP93XX_UART3_PHYS_BASE
,
301 .end
= EP93XX_UART3_PHYS_BASE
+ 0x0fff,
302 .flags
= IORESOURCE_MEM
,
304 .irq
= { IRQ_EP93XX_UART3
, NO_IRQ
},
305 .periphid
= 0x00041010,
309 static struct resource ep93xx_rtc_resource
[] = {
311 .start
= EP93XX_RTC_PHYS_BASE
,
312 .end
= EP93XX_RTC_PHYS_BASE
+ 0x10c - 1,
313 .flags
= IORESOURCE_MEM
,
317 static struct platform_device ep93xx_rtc_device
= {
318 .name
= "ep93xx-rtc",
320 .num_resources
= ARRAY_SIZE(ep93xx_rtc_resource
),
321 .resource
= ep93xx_rtc_resource
,
325 static struct resource ep93xx_ohci_resources
[] = {
327 .start
= EP93XX_USB_PHYS_BASE
,
328 .end
= EP93XX_USB_PHYS_BASE
+ 0x0fff,
329 .flags
= IORESOURCE_MEM
,
332 .start
= IRQ_EP93XX_USB
,
333 .end
= IRQ_EP93XX_USB
,
334 .flags
= IORESOURCE_IRQ
,
339 static struct platform_device ep93xx_ohci_device
= {
340 .name
= "ep93xx-ohci",
343 .dma_mask
= &ep93xx_ohci_device
.dev
.coherent_dma_mask
,
344 .coherent_dma_mask
= DMA_BIT_MASK(32),
346 .num_resources
= ARRAY_SIZE(ep93xx_ohci_resources
),
347 .resource
= ep93xx_ohci_resources
,
351 /*************************************************************************
352 * EP93xx physmap'ed flash
353 *************************************************************************/
354 static struct physmap_flash_data ep93xx_flash_data
;
356 static struct resource ep93xx_flash_resource
= {
357 .flags
= IORESOURCE_MEM
,
360 static struct platform_device ep93xx_flash
= {
361 .name
= "physmap-flash",
364 .platform_data
= &ep93xx_flash_data
,
367 .resource
= &ep93xx_flash_resource
,
371 * ep93xx_register_flash() - Register the external flash device.
372 * @width: bank width in octets
373 * @start: resource start address
374 * @size: resource size
376 void __init
ep93xx_register_flash(unsigned int width
,
377 resource_size_t start
, resource_size_t size
)
379 ep93xx_flash_data
.width
= width
;
381 ep93xx_flash_resource
.start
= start
;
382 ep93xx_flash_resource
.end
= start
+ size
- 1;
384 platform_device_register(&ep93xx_flash
);
388 /*************************************************************************
389 * EP93xx ethernet peripheral handling
390 *************************************************************************/
391 static struct ep93xx_eth_data ep93xx_eth_data
;
393 static struct resource ep93xx_eth_resource
[] = {
395 .start
= EP93XX_ETHERNET_PHYS_BASE
,
396 .end
= EP93XX_ETHERNET_PHYS_BASE
+ 0xffff,
397 .flags
= IORESOURCE_MEM
,
399 .start
= IRQ_EP93XX_ETHERNET
,
400 .end
= IRQ_EP93XX_ETHERNET
,
401 .flags
= IORESOURCE_IRQ
,
405 static struct platform_device ep93xx_eth_device
= {
406 .name
= "ep93xx-eth",
409 .platform_data
= &ep93xx_eth_data
,
411 .num_resources
= ARRAY_SIZE(ep93xx_eth_resource
),
412 .resource
= ep93xx_eth_resource
,
416 * ep93xx_register_eth - Register the built-in ethernet platform device.
417 * @data: platform specific ethernet configuration (__initdata)
418 * @copy_addr: flag indicating that the MAC address should be copied
419 * from the IndAd registers (as programmed by the bootloader)
421 void __init
ep93xx_register_eth(struct ep93xx_eth_data
*data
, int copy_addr
)
424 memcpy_fromio(data
->dev_addr
, EP93XX_ETHERNET_BASE
+ 0x50, 6);
426 ep93xx_eth_data
= *data
;
427 platform_device_register(&ep93xx_eth_device
);
431 /*************************************************************************
432 * EP93xx i2c peripheral handling
433 *************************************************************************/
434 static struct i2c_gpio_platform_data ep93xx_i2c_data
;
436 static struct platform_device ep93xx_i2c_device
= {
440 .platform_data
= &ep93xx_i2c_data
,
445 * ep93xx_register_i2c - Register the i2c platform device.
446 * @data: platform specific i2c-gpio configuration (__initdata)
447 * @devices: platform specific i2c bus device information (__initdata)
448 * @num: the number of devices on the i2c bus
450 void __init
ep93xx_register_i2c(struct i2c_gpio_platform_data
*data
,
451 struct i2c_board_info
*devices
, int num
)
454 * Set the EEPROM interface pin drive type control.
455 * Defines the driver type for the EECLK and EEDAT pins as either
456 * open drain, which will require an external pull-up, or a normal
459 if (data
->sda_is_open_drain
&& data
->sda_pin
!= EP93XX_GPIO_LINE_EEDAT
)
460 pr_warning("sda != EEDAT, open drain has no effect\n");
461 if (data
->scl_is_open_drain
&& data
->scl_pin
!= EP93XX_GPIO_LINE_EECLK
)
462 pr_warning("scl != EECLK, open drain has no effect\n");
464 __raw_writel((data
->sda_is_open_drain
<< 1) |
465 (data
->scl_is_open_drain
<< 0),
466 EP93XX_GPIO_EEDRIVE
);
468 ep93xx_i2c_data
= *data
;
469 i2c_register_board_info(0, devices
, num
);
470 platform_device_register(&ep93xx_i2c_device
);
473 /*************************************************************************
474 * EP93xx SPI peripheral handling
475 *************************************************************************/
476 static struct ep93xx_spi_info ep93xx_spi_master_data
;
478 static struct resource ep93xx_spi_resources
[] = {
480 .start
= EP93XX_SPI_PHYS_BASE
,
481 .end
= EP93XX_SPI_PHYS_BASE
+ 0x18 - 1,
482 .flags
= IORESOURCE_MEM
,
485 .start
= IRQ_EP93XX_SSP
,
486 .end
= IRQ_EP93XX_SSP
,
487 .flags
= IORESOURCE_IRQ
,
491 static struct platform_device ep93xx_spi_device
= {
492 .name
= "ep93xx-spi",
495 .platform_data
= &ep93xx_spi_master_data
,
497 .num_resources
= ARRAY_SIZE(ep93xx_spi_resources
),
498 .resource
= ep93xx_spi_resources
,
502 * ep93xx_register_spi() - registers spi platform device
503 * @info: ep93xx board specific spi master info (__initdata)
504 * @devices: SPI devices to register (__initdata)
505 * @num: number of SPI devices to register
507 * This function registers platform device for the EP93xx SPI controller and
508 * also makes sure that SPI pins are muxed so that I2S is not using those pins.
510 void __init
ep93xx_register_spi(struct ep93xx_spi_info
*info
,
511 struct spi_board_info
*devices
, int num
)
514 * When SPI is used, we need to make sure that I2S is muxed off from
517 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2SONSSP
);
519 ep93xx_spi_master_data
= *info
;
520 spi_register_board_info(devices
, num
);
521 platform_device_register(&ep93xx_spi_device
);
524 /*************************************************************************
526 *************************************************************************/
527 static struct gpio_led ep93xx_led_pins
[] = {
529 .name
= "platform:grled",
530 .gpio
= EP93XX_GPIO_LINE_GRLED
,
532 .name
= "platform:rdled",
533 .gpio
= EP93XX_GPIO_LINE_RDLED
,
537 static struct gpio_led_platform_data ep93xx_led_data
= {
538 .num_leds
= ARRAY_SIZE(ep93xx_led_pins
),
539 .leds
= ep93xx_led_pins
,
542 static struct platform_device ep93xx_leds
= {
546 .platform_data
= &ep93xx_led_data
,
551 /*************************************************************************
552 * EP93xx pwm peripheral handling
553 *************************************************************************/
554 static struct resource ep93xx_pwm0_resource
[] = {
556 .start
= EP93XX_PWM_PHYS_BASE
,
557 .end
= EP93XX_PWM_PHYS_BASE
+ 0x10 - 1,
558 .flags
= IORESOURCE_MEM
,
562 static struct platform_device ep93xx_pwm0_device
= {
563 .name
= "ep93xx-pwm",
565 .num_resources
= ARRAY_SIZE(ep93xx_pwm0_resource
),
566 .resource
= ep93xx_pwm0_resource
,
569 static struct resource ep93xx_pwm1_resource
[] = {
571 .start
= EP93XX_PWM_PHYS_BASE
+ 0x20,
572 .end
= EP93XX_PWM_PHYS_BASE
+ 0x30 - 1,
573 .flags
= IORESOURCE_MEM
,
577 static struct platform_device ep93xx_pwm1_device
= {
578 .name
= "ep93xx-pwm",
580 .num_resources
= ARRAY_SIZE(ep93xx_pwm1_resource
),
581 .resource
= ep93xx_pwm1_resource
,
584 void __init
ep93xx_register_pwm(int pwm0
, int pwm1
)
587 platform_device_register(&ep93xx_pwm0_device
);
589 /* NOTE: EP9307 does not have PWMOUT1 (pin EGPIO14) */
591 platform_device_register(&ep93xx_pwm1_device
);
594 int ep93xx_pwm_acquire_gpio(struct platform_device
*pdev
)
600 } else if (pdev
->id
== 1) {
601 err
= gpio_request(EP93XX_GPIO_LINE_EGPIO14
,
602 dev_name(&pdev
->dev
));
605 err
= gpio_direction_output(EP93XX_GPIO_LINE_EGPIO14
, 0);
609 /* PWM 1 output on EGPIO[14] */
610 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_PONG
);
618 gpio_free(EP93XX_GPIO_LINE_EGPIO14
);
621 EXPORT_SYMBOL(ep93xx_pwm_acquire_gpio
);
623 void ep93xx_pwm_release_gpio(struct platform_device
*pdev
)
626 gpio_direction_input(EP93XX_GPIO_LINE_EGPIO14
);
627 gpio_free(EP93XX_GPIO_LINE_EGPIO14
);
629 /* EGPIO[14] used for GPIO */
630 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_PONG
);
633 EXPORT_SYMBOL(ep93xx_pwm_release_gpio
);
636 /*************************************************************************
637 * EP93xx video peripheral handling
638 *************************************************************************/
639 static struct ep93xxfb_mach_info ep93xxfb_data
;
641 static struct resource ep93xx_fb_resource
[] = {
643 .start
= EP93XX_RASTER_PHYS_BASE
,
644 .end
= EP93XX_RASTER_PHYS_BASE
+ 0x800 - 1,
645 .flags
= IORESOURCE_MEM
,
649 static struct platform_device ep93xx_fb_device
= {
653 .platform_data
= &ep93xxfb_data
,
654 .coherent_dma_mask
= DMA_BIT_MASK(32),
655 .dma_mask
= &ep93xx_fb_device
.dev
.coherent_dma_mask
,
657 .num_resources
= ARRAY_SIZE(ep93xx_fb_resource
),
658 .resource
= ep93xx_fb_resource
,
661 static struct platform_device ep93xx_bl_device
= {
667 * ep93xx_register_fb - Register the framebuffer platform device.
668 * @data: platform specific framebuffer configuration (__initdata)
670 void __init
ep93xx_register_fb(struct ep93xxfb_mach_info
*data
)
672 ep93xxfb_data
= *data
;
673 platform_device_register(&ep93xx_fb_device
);
674 platform_device_register(&ep93xx_bl_device
);
678 /*************************************************************************
679 * EP93xx matrix keypad peripheral handling
680 *************************************************************************/
681 static struct ep93xx_keypad_platform_data ep93xx_keypad_data
;
683 static struct resource ep93xx_keypad_resource
[] = {
685 .start
= EP93XX_KEY_MATRIX_PHYS_BASE
,
686 .end
= EP93XX_KEY_MATRIX_PHYS_BASE
+ 0x0c - 1,
687 .flags
= IORESOURCE_MEM
,
689 .start
= IRQ_EP93XX_KEY
,
690 .end
= IRQ_EP93XX_KEY
,
691 .flags
= IORESOURCE_IRQ
,
695 static struct platform_device ep93xx_keypad_device
= {
696 .name
= "ep93xx-keypad",
699 .platform_data
= &ep93xx_keypad_data
,
701 .num_resources
= ARRAY_SIZE(ep93xx_keypad_resource
),
702 .resource
= ep93xx_keypad_resource
,
706 * ep93xx_register_keypad - Register the keypad platform device.
707 * @data: platform specific keypad configuration (__initdata)
709 void __init
ep93xx_register_keypad(struct ep93xx_keypad_platform_data
*data
)
711 ep93xx_keypad_data
= *data
;
712 platform_device_register(&ep93xx_keypad_device
);
715 int ep93xx_keypad_acquire_gpio(struct platform_device
*pdev
)
720 for (i
= 0; i
< 8; i
++) {
721 err
= gpio_request(EP93XX_GPIO_LINE_C(i
), dev_name(&pdev
->dev
));
724 err
= gpio_request(EP93XX_GPIO_LINE_D(i
), dev_name(&pdev
->dev
));
729 /* Enable the keypad controller; GPIO ports C and D used for keypad */
730 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_KEYS
|
731 EP93XX_SYSCON_DEVCFG_GONK
);
736 gpio_free(EP93XX_GPIO_LINE_C(i
));
738 for ( ; i
>= 0; --i
) {
739 gpio_free(EP93XX_GPIO_LINE_C(i
));
740 gpio_free(EP93XX_GPIO_LINE_D(i
));
744 EXPORT_SYMBOL(ep93xx_keypad_acquire_gpio
);
746 void ep93xx_keypad_release_gpio(struct platform_device
*pdev
)
750 for (i
= 0; i
< 8; i
++) {
751 gpio_free(EP93XX_GPIO_LINE_C(i
));
752 gpio_free(EP93XX_GPIO_LINE_D(i
));
755 /* Disable the keypad controller; GPIO ports C and D used for GPIO */
756 ep93xx_devcfg_set_bits(EP93XX_SYSCON_DEVCFG_KEYS
|
757 EP93XX_SYSCON_DEVCFG_GONK
);
759 EXPORT_SYMBOL(ep93xx_keypad_release_gpio
);
761 /*************************************************************************
762 * EP93xx I2S audio peripheral handling
763 *************************************************************************/
764 static struct resource ep93xx_i2s_resource
[] = {
766 .start
= EP93XX_I2S_PHYS_BASE
,
767 .end
= EP93XX_I2S_PHYS_BASE
+ 0x100 - 1,
768 .flags
= IORESOURCE_MEM
,
772 static struct platform_device ep93xx_i2s_device
= {
773 .name
= "ep93xx-i2s",
775 .num_resources
= ARRAY_SIZE(ep93xx_i2s_resource
),
776 .resource
= ep93xx_i2s_resource
,
779 static struct platform_device ep93xx_pcm_device
= {
780 .name
= "ep93xx-pcm-audio",
784 void __init
ep93xx_register_i2s(void)
786 platform_device_register(&ep93xx_i2s_device
);
787 platform_device_register(&ep93xx_pcm_device
);
790 #define EP93XX_SYSCON_DEVCFG_I2S_MASK (EP93XX_SYSCON_DEVCFG_I2SONSSP | \
791 EP93XX_SYSCON_DEVCFG_I2SONAC97)
793 #define EP93XX_I2SCLKDIV_MASK (EP93XX_SYSCON_I2SCLKDIV_ORIDE | \
794 EP93XX_SYSCON_I2SCLKDIV_SPOL)
796 int ep93xx_i2s_acquire(unsigned i2s_pins
, unsigned i2s_config
)
801 if (i2s_pins
& ~EP93XX_SYSCON_DEVCFG_I2S_MASK
)
803 if (i2s_config
& ~EP93XX_I2SCLKDIV_MASK
)
806 /* Must have only one of I2SONSSP/I2SONAC97 set */
807 if ((i2s_pins
& EP93XX_SYSCON_DEVCFG_I2SONSSP
) ==
808 (i2s_pins
& EP93XX_SYSCON_DEVCFG_I2SONAC97
))
811 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2S_MASK
);
812 ep93xx_devcfg_set_bits(i2s_pins
);
815 * This is potentially racy with the clock api for i2s_mclk, sclk and
816 * lrclk. Since the i2s driver is the only user of those clocks we
817 * rely on it to prevent parallel use of this function and the
818 * clock api for the i2s clocks.
820 val
= __raw_readl(EP93XX_SYSCON_I2SCLKDIV
);
821 val
&= ~EP93XX_I2SCLKDIV_MASK
;
823 ep93xx_syscon_swlocked_write(val
, EP93XX_SYSCON_I2SCLKDIV
);
827 EXPORT_SYMBOL(ep93xx_i2s_acquire
);
829 void ep93xx_i2s_release(void)
831 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2S_MASK
);
833 EXPORT_SYMBOL(ep93xx_i2s_release
);
835 /*************************************************************************
836 * EP93xx AC97 audio peripheral handling
837 *************************************************************************/
838 static struct resource ep93xx_ac97_resources
[] = {
840 .start
= EP93XX_AAC_PHYS_BASE
,
841 .end
= EP93XX_AAC_PHYS_BASE
+ 0xac - 1,
842 .flags
= IORESOURCE_MEM
,
845 .start
= IRQ_EP93XX_AACINTR
,
846 .end
= IRQ_EP93XX_AACINTR
,
847 .flags
= IORESOURCE_IRQ
,
851 static struct platform_device ep93xx_ac97_device
= {
852 .name
= "ep93xx-ac97",
854 .num_resources
= ARRAY_SIZE(ep93xx_ac97_resources
),
855 .resource
= ep93xx_ac97_resources
,
858 void __init
ep93xx_register_ac97(void)
861 * Make sure that the AC97 pins are not used by I2S.
863 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_I2SONAC97
);
865 platform_device_register(&ep93xx_ac97_device
);
866 platform_device_register(&ep93xx_pcm_device
);
869 extern void ep93xx_gpio_init(void);
871 void __init
ep93xx_init_devices(void)
873 /* Disallow access to MaverickCrunch initially */
874 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_CPENA
);
878 amba_device_register(&uart1_device
, &iomem_resource
);
879 amba_device_register(&uart2_device
, &iomem_resource
);
880 amba_device_register(&uart3_device
, &iomem_resource
);
882 platform_device_register(&ep93xx_rtc_device
);
883 platform_device_register(&ep93xx_ohci_device
);
884 platform_device_register(&ep93xx_leds
);