1 // SPDX-License-Identifier: GPL-2.0
3 * DBAu1300 init and platform device setup.
5 * (c) 2009 Manuel Lauss <manuel.lauss@googlemail.com>
9 #include <linux/dma-mapping.h>
10 #include <linux/gpio.h>
11 #include <linux/gpio_keys.h>
12 #include <linux/init.h>
13 #include <linux/input.h> /* KEY_* codes */
14 #include <linux/i2c.h>
16 #include <linux/leds.h>
17 #include <linux/interrupt.h>
18 #include <linux/ata_platform.h>
19 #include <linux/mmc/host.h>
20 #include <linux/module.h>
21 #include <linux/mtd/mtd.h>
22 #include <linux/mtd/platnand.h>
23 #include <linux/platform_device.h>
24 #include <linux/smsc911x.h>
25 #include <linux/wm97xx.h>
27 #include <asm/mach-au1x00/au1000.h>
28 #include <asm/mach-au1x00/gpio-au1300.h>
29 #include <asm/mach-au1x00/au1100_mmc.h>
30 #include <asm/mach-au1x00/au1200fb.h>
31 #include <asm/mach-au1x00/au1xxx_dbdma.h>
32 #include <asm/mach-au1x00/au1xxx_psc.h>
33 #include <asm/mach-db1x00/bcsr.h>
34 #include <asm/mach-au1x00/prom.h>
38 /* FPGA (external mux) interrupt sources */
39 #define DB1300_FIRST_INT (ALCHEMY_GPIC_INT_LAST + 1)
40 #define DB1300_IDE_INT (DB1300_FIRST_INT + 0)
41 #define DB1300_ETH_INT (DB1300_FIRST_INT + 1)
42 #define DB1300_CF_INT (DB1300_FIRST_INT + 2)
43 #define DB1300_VIDEO_INT (DB1300_FIRST_INT + 4)
44 #define DB1300_HDMI_INT (DB1300_FIRST_INT + 5)
45 #define DB1300_DC_INT (DB1300_FIRST_INT + 6)
46 #define DB1300_FLASH_INT (DB1300_FIRST_INT + 7)
47 #define DB1300_CF_INSERT_INT (DB1300_FIRST_INT + 8)
48 #define DB1300_CF_EJECT_INT (DB1300_FIRST_INT + 9)
49 #define DB1300_AC97_INT (DB1300_FIRST_INT + 10)
50 #define DB1300_AC97_PEN_INT (DB1300_FIRST_INT + 11)
51 #define DB1300_SD1_INSERT_INT (DB1300_FIRST_INT + 12)
52 #define DB1300_SD1_EJECT_INT (DB1300_FIRST_INT + 13)
53 #define DB1300_OTG_VBUS_OC_INT (DB1300_FIRST_INT + 14)
54 #define DB1300_HOST_VBUS_OC_INT (DB1300_FIRST_INT + 15)
55 #define DB1300_LAST_INT (DB1300_FIRST_INT + 15)
58 #define DB1300_ETH_PHYS_ADDR 0x19000000
59 #define DB1300_ETH_PHYS_END 0x197fffff
62 #define DB1300_IDE_PHYS_ADDR 0x18800000
63 #define DB1300_IDE_REG_SHIFT 5
64 #define DB1300_IDE_PHYS_LEN (16 << DB1300_IDE_REG_SHIFT)
67 #define DB1300_NAND_PHYS_ADDR 0x20000000
68 #define DB1300_NAND_PHYS_END 0x20000fff
71 static struct i2c_board_info db1300_i2c_devs
[] __initdata
= {
72 { I2C_BOARD_INFO("wm8731", 0x1b), }, /* I2S audio codec */
73 { I2C_BOARD_INFO("ne1619", 0x2d), }, /* adm1025-compat hwmon */
76 /* multifunction pins to assign to GPIO controller */
77 static int db1300_gpio_pins
[] __initdata
= {
78 AU1300_PIN_LCDPWM0
, AU1300_PIN_PSC2SYNC1
, AU1300_PIN_WAKE1
,
79 AU1300_PIN_WAKE2
, AU1300_PIN_WAKE3
, AU1300_PIN_FG3AUX
,
84 /* multifunction pins to assign to device functions */
85 static int db1300_dev_pins
[] __initdata
= {
86 /* wake-from-str pins 0-3 */
88 /* external clock sources for PSC0 */
90 /* 8bit MMC interface on SD0: 6-9 */
91 AU1300_PIN_SD0DAT4
, AU1300_PIN_SD0DAT5
, AU1300_PIN_SD0DAT6
,
93 /* UART1 pins: 11-18 */
94 AU1300_PIN_U1RI
, AU1300_PIN_U1DCD
, AU1300_PIN_U1DSR
,
95 AU1300_PIN_U1CTS
, AU1300_PIN_U1RTS
, AU1300_PIN_U1DTR
,
96 AU1300_PIN_U1RX
, AU1300_PIN_U1TX
,
97 /* UART0 pins: 19-24 */
98 AU1300_PIN_U0RI
, AU1300_PIN_U0DCD
, AU1300_PIN_U0DSR
,
99 AU1300_PIN_U0CTS
, AU1300_PIN_U0RTS
, AU1300_PIN_U0DTR
,
101 AU1300_PIN_U2RX
, AU1300_PIN_U2TX
,
103 AU1300_PIN_U3RX
, AU1300_PIN_U3TX
,
104 /* LCD controller PWMs, ext pixclock: 30-31 */
105 AU1300_PIN_LCDPWM1
, AU1300_PIN_LCDCLKIN
,
106 /* SD1 interface: 32-37 */
107 AU1300_PIN_SD1DAT0
, AU1300_PIN_SD1DAT1
, AU1300_PIN_SD1DAT2
,
108 AU1300_PIN_SD1DAT3
, AU1300_PIN_SD1CMD
, AU1300_PIN_SD1CLK
,
109 /* SD2 interface: 38-43 */
110 AU1300_PIN_SD2DAT0
, AU1300_PIN_SD2DAT1
, AU1300_PIN_SD2DAT2
,
111 AU1300_PIN_SD2DAT3
, AU1300_PIN_SD2CMD
, AU1300_PIN_SD2CLK
,
112 /* PSC0/1 clocks: 44-45 */
113 AU1300_PIN_PSC0CLK
, AU1300_PIN_PSC1CLK
,
114 /* PSCs: 46-49/50-53/54-57/58-61 */
115 AU1300_PIN_PSC0SYNC0
, AU1300_PIN_PSC0SYNC1
, AU1300_PIN_PSC0D0
,
117 AU1300_PIN_PSC1SYNC0
, AU1300_PIN_PSC1SYNC1
, AU1300_PIN_PSC1D0
,
119 AU1300_PIN_PSC2SYNC0
, AU1300_PIN_PSC2D0
,
121 AU1300_PIN_PSC3SYNC0
, AU1300_PIN_PSC3SYNC1
, AU1300_PIN_PSC3D0
,
123 /* PCMCIA interface: 62-70 */
124 AU1300_PIN_PCE2
, AU1300_PIN_PCE1
, AU1300_PIN_PIOS16
,
125 AU1300_PIN_PIOR
, AU1300_PIN_PWE
, AU1300_PIN_PWAIT
,
126 AU1300_PIN_PREG
, AU1300_PIN_POE
, AU1300_PIN_PIOW
,
127 /* camera interface H/V sync inputs: 71-72 */
128 AU1300_PIN_CIMLS
, AU1300_PIN_CIMFS
,
129 /* PSC2/3 clocks: 73-74 */
130 AU1300_PIN_PSC2CLK
, AU1300_PIN_PSC3CLK
,
134 static void __init
db1300_gpio_config(void)
138 i
= &db1300_dev_pins
[0];
140 au1300_pinfunc_to_dev(*i
++);
142 i
= &db1300_gpio_pins
[0];
144 au1300_gpio_direction_input(*i
++);/* implies pin_to_gpio */
146 au1300_set_dbdma_gpio(1, AU1300_PIN_FG3AUX
);
149 /**********************************************************************/
151 static u64 au1300_all_dmamask
= DMA_BIT_MASK(32);
153 static void au1300_nand_cmd_ctrl(struct nand_chip
*this, int cmd
,
156 unsigned long ioaddr
= (unsigned long)this->legacy
.IO_ADDR_W
;
158 ioaddr
&= 0xffffff00;
160 if (ctrl
& NAND_CLE
) {
161 ioaddr
+= MEM_STNAND_CMD
;
162 } else if (ctrl
& NAND_ALE
) {
163 ioaddr
+= MEM_STNAND_ADDR
;
165 /* assume we want to r/w real data by default */
166 ioaddr
+= MEM_STNAND_DATA
;
168 this->legacy
.IO_ADDR_R
= this->legacy
.IO_ADDR_W
= (void __iomem
*)ioaddr
;
169 if (cmd
!= NAND_CMD_NONE
) {
170 __raw_writeb(cmd
, this->legacy
.IO_ADDR_W
);
175 static int au1300_nand_device_ready(struct nand_chip
*this)
177 return alchemy_rdsmem(AU1000_MEM_STSTAT
) & 1;
180 static struct mtd_partition db1300_nand_parts
[] = {
184 .size
= 8 * 1024 * 1024,
188 .offset
= MTDPART_OFS_APPEND
,
189 .size
= MTDPART_SIZ_FULL
193 struct platform_nand_data db1300_nand_platdata
= {
197 .nr_partitions
= ARRAY_SIZE(db1300_nand_parts
),
198 .partitions
= db1300_nand_parts
,
202 .dev_ready
= au1300_nand_device_ready
,
203 .cmd_ctrl
= au1300_nand_cmd_ctrl
,
207 static struct resource db1300_nand_res
[] = {
209 .start
= DB1300_NAND_PHYS_ADDR
,
210 .end
= DB1300_NAND_PHYS_ADDR
+ 0xff,
211 .flags
= IORESOURCE_MEM
,
215 static struct platform_device db1300_nand_dev
= {
217 .num_resources
= ARRAY_SIZE(db1300_nand_res
),
218 .resource
= db1300_nand_res
,
221 .platform_data
= &db1300_nand_platdata
,
225 /**********************************************************************/
227 static struct resource db1300_eth_res
[] = {
229 .start
= DB1300_ETH_PHYS_ADDR
,
230 .end
= DB1300_ETH_PHYS_END
,
231 .flags
= IORESOURCE_MEM
,
234 .start
= DB1300_ETH_INT
,
235 .end
= DB1300_ETH_INT
,
236 .flags
= IORESOURCE_IRQ
,
240 static struct smsc911x_platform_config db1300_eth_config
= {
241 .phy_interface
= PHY_INTERFACE_MODE_MII
,
242 .irq_polarity
= SMSC911X_IRQ_POLARITY_ACTIVE_LOW
,
243 .irq_type
= SMSC911X_IRQ_TYPE_PUSH_PULL
,
244 .flags
= SMSC911X_USE_32BIT
,
247 static struct platform_device db1300_eth_dev
= {
250 .num_resources
= ARRAY_SIZE(db1300_eth_res
),
251 .resource
= db1300_eth_res
,
253 .platform_data
= &db1300_eth_config
,
257 /**********************************************************************/
259 static struct resource au1300_psc1_res
[] = {
261 .start
= AU1300_PSC1_PHYS_ADDR
,
262 .end
= AU1300_PSC1_PHYS_ADDR
+ 0x0fff,
263 .flags
= IORESOURCE_MEM
,
266 .start
= AU1300_PSC1_INT
,
267 .end
= AU1300_PSC1_INT
,
268 .flags
= IORESOURCE_IRQ
,
271 .start
= AU1300_DSCR_CMD0_PSC1_TX
,
272 .end
= AU1300_DSCR_CMD0_PSC1_TX
,
273 .flags
= IORESOURCE_DMA
,
276 .start
= AU1300_DSCR_CMD0_PSC1_RX
,
277 .end
= AU1300_DSCR_CMD0_PSC1_RX
,
278 .flags
= IORESOURCE_DMA
,
282 static struct platform_device db1300_ac97_dev
= {
283 .name
= "au1xpsc_ac97",
284 .id
= 1, /* PSC ID. match with AC97 codec ID! */
285 .num_resources
= ARRAY_SIZE(au1300_psc1_res
),
286 .resource
= au1300_psc1_res
,
289 /**********************************************************************/
291 static struct resource au1300_psc2_res
[] = {
293 .start
= AU1300_PSC2_PHYS_ADDR
,
294 .end
= AU1300_PSC2_PHYS_ADDR
+ 0x0fff,
295 .flags
= IORESOURCE_MEM
,
298 .start
= AU1300_PSC2_INT
,
299 .end
= AU1300_PSC2_INT
,
300 .flags
= IORESOURCE_IRQ
,
303 .start
= AU1300_DSCR_CMD0_PSC2_TX
,
304 .end
= AU1300_DSCR_CMD0_PSC2_TX
,
305 .flags
= IORESOURCE_DMA
,
308 .start
= AU1300_DSCR_CMD0_PSC2_RX
,
309 .end
= AU1300_DSCR_CMD0_PSC2_RX
,
310 .flags
= IORESOURCE_DMA
,
314 static struct platform_device db1300_i2s_dev
= {
315 .name
= "au1xpsc_i2s",
316 .id
= 2, /* PSC ID */
317 .num_resources
= ARRAY_SIZE(au1300_psc2_res
),
318 .resource
= au1300_psc2_res
,
321 /**********************************************************************/
323 static struct resource au1300_psc3_res
[] = {
325 .start
= AU1300_PSC3_PHYS_ADDR
,
326 .end
= AU1300_PSC3_PHYS_ADDR
+ 0x0fff,
327 .flags
= IORESOURCE_MEM
,
330 .start
= AU1300_PSC3_INT
,
331 .end
= AU1300_PSC3_INT
,
332 .flags
= IORESOURCE_IRQ
,
335 .start
= AU1300_DSCR_CMD0_PSC3_TX
,
336 .end
= AU1300_DSCR_CMD0_PSC3_TX
,
337 .flags
= IORESOURCE_DMA
,
340 .start
= AU1300_DSCR_CMD0_PSC3_RX
,
341 .end
= AU1300_DSCR_CMD0_PSC3_RX
,
342 .flags
= IORESOURCE_DMA
,
346 static struct platform_device db1300_i2c_dev
= {
347 .name
= "au1xpsc_smbus",
348 .id
= 0, /* bus number */
349 .num_resources
= ARRAY_SIZE(au1300_psc3_res
),
350 .resource
= au1300_psc3_res
,
353 /**********************************************************************/
355 /* proper key assignments when facing the LCD panel. For key assignments
356 * according to the schematics swap up with down and left with right.
357 * I chose to use it to emulate the arrow keys of a keyboard.
359 static struct gpio_keys_button db1300_5waysw_arrowkeys
[] = {
362 .gpio
= AU1300_PIN_LCDPWM0
,
364 .debounce_interval
= 1,
366 .desc
= "5waysw-down",
370 .gpio
= AU1300_PIN_PSC2SYNC1
,
372 .debounce_interval
= 1,
378 .gpio
= AU1300_PIN_WAKE3
,
380 .debounce_interval
= 1,
382 .desc
= "5waysw-right",
386 .gpio
= AU1300_PIN_WAKE2
,
388 .debounce_interval
= 1,
390 .desc
= "5waysw-left",
394 .gpio
= AU1300_PIN_WAKE1
,
396 .debounce_interval
= 1,
398 .desc
= "5waysw-push",
402 static struct gpio_keys_platform_data db1300_5waysw_data
= {
403 .buttons
= db1300_5waysw_arrowkeys
,
404 .nbuttons
= ARRAY_SIZE(db1300_5waysw_arrowkeys
),
406 .name
= "db1300-5wayswitch",
409 static struct platform_device db1300_5waysw_dev
= {
412 .platform_data
= &db1300_5waysw_data
,
416 /**********************************************************************/
418 static struct pata_platform_info db1300_ide_info
= {
419 .ioport_shift
= DB1300_IDE_REG_SHIFT
,
422 #define IDE_ALT_START (14 << DB1300_IDE_REG_SHIFT)
423 static struct resource db1300_ide_res
[] = {
425 .start
= DB1300_IDE_PHYS_ADDR
,
426 .end
= DB1300_IDE_PHYS_ADDR
+ IDE_ALT_START
- 1,
427 .flags
= IORESOURCE_MEM
,
430 .start
= DB1300_IDE_PHYS_ADDR
+ IDE_ALT_START
,
431 .end
= DB1300_IDE_PHYS_ADDR
+ DB1300_IDE_PHYS_LEN
- 1,
432 .flags
= IORESOURCE_MEM
,
435 .start
= DB1300_IDE_INT
,
436 .end
= DB1300_IDE_INT
,
437 .flags
= IORESOURCE_IRQ
,
441 static struct platform_device db1300_ide_dev
= {
443 .dma_mask
= &au1300_all_dmamask
,
444 .coherent_dma_mask
= DMA_BIT_MASK(32),
445 .platform_data
= &db1300_ide_info
,
447 .name
= "pata_platform",
448 .resource
= db1300_ide_res
,
449 .num_resources
= ARRAY_SIZE(db1300_ide_res
),
452 /**********************************************************************/
454 static irqreturn_t
db1300_mmc_cd(int irq
, void *ptr
)
456 disable_irq_nosync(irq
);
457 return IRQ_WAKE_THREAD
;
460 static irqreturn_t
db1300_mmc_cdfn(int irq
, void *ptr
)
462 void (*mmc_cd
)(struct mmc_host
*, unsigned long);
464 /* link against CONFIG_MMC=m. We can only be called once MMC core has
465 * initialized the controller, so symbol_get() should always succeed.
467 mmc_cd
= symbol_get(mmc_detect_change
);
468 mmc_cd(ptr
, msecs_to_jiffies(200));
469 symbol_put(mmc_detect_change
);
471 msleep(100); /* debounce */
472 if (irq
== DB1300_SD1_INSERT_INT
)
473 enable_irq(DB1300_SD1_EJECT_INT
);
475 enable_irq(DB1300_SD1_INSERT_INT
);
480 static int db1300_mmc_card_readonly(void *mmc_host
)
482 /* it uses SD1 interface, but the DB1200's SD0 bit in the CPLD */
483 return bcsr_read(BCSR_STATUS
) & BCSR_STATUS_SD0WP
;
486 static int db1300_mmc_card_inserted(void *mmc_host
)
488 return bcsr_read(BCSR_SIGSTAT
) & (1 << 12); /* insertion irq signal */
491 static int db1300_mmc_cd_setup(void *mmc_host
, int en
)
496 ret
= request_threaded_irq(DB1300_SD1_INSERT_INT
, db1300_mmc_cd
,
497 db1300_mmc_cdfn
, 0, "sd_insert", mmc_host
);
501 ret
= request_threaded_irq(DB1300_SD1_EJECT_INT
, db1300_mmc_cd
,
502 db1300_mmc_cdfn
, 0, "sd_eject", mmc_host
);
504 free_irq(DB1300_SD1_INSERT_INT
, mmc_host
);
508 if (db1300_mmc_card_inserted(mmc_host
))
509 enable_irq(DB1300_SD1_EJECT_INT
);
511 enable_irq(DB1300_SD1_INSERT_INT
);
514 free_irq(DB1300_SD1_INSERT_INT
, mmc_host
);
515 free_irq(DB1300_SD1_EJECT_INT
, mmc_host
);
522 static void db1300_mmcled_set(struct led_classdev
*led
,
523 enum led_brightness brightness
)
525 if (brightness
!= LED_OFF
)
526 bcsr_mod(BCSR_LEDS
, BCSR_LEDS_LED0
, 0);
528 bcsr_mod(BCSR_LEDS
, 0, BCSR_LEDS_LED0
);
531 static struct led_classdev db1300_mmc_led
= {
532 .brightness_set
= db1300_mmcled_set
,
535 struct au1xmmc_platform_data db1300_sd1_platdata
= {
536 .cd_setup
= db1300_mmc_cd_setup
,
537 .card_inserted
= db1300_mmc_card_inserted
,
538 .card_readonly
= db1300_mmc_card_readonly
,
539 .led
= &db1300_mmc_led
,
542 static struct resource au1300_sd1_res
[] = {
544 .start
= AU1300_SD1_PHYS_ADDR
,
545 .end
= AU1300_SD1_PHYS_ADDR
,
546 .flags
= IORESOURCE_MEM
,
549 .start
= AU1300_SD1_INT
,
550 .end
= AU1300_SD1_INT
,
551 .flags
= IORESOURCE_IRQ
,
554 .start
= AU1300_DSCR_CMD0_SDMS_TX1
,
555 .end
= AU1300_DSCR_CMD0_SDMS_TX1
,
556 .flags
= IORESOURCE_DMA
,
559 .start
= AU1300_DSCR_CMD0_SDMS_RX1
,
560 .end
= AU1300_DSCR_CMD0_SDMS_RX1
,
561 .flags
= IORESOURCE_DMA
,
565 static struct platform_device db1300_sd1_dev
= {
567 .dma_mask
= &au1300_all_dmamask
,
568 .coherent_dma_mask
= DMA_BIT_MASK(32),
569 .platform_data
= &db1300_sd1_platdata
,
571 .name
= "au1xxx-mmc",
573 .resource
= au1300_sd1_res
,
574 .num_resources
= ARRAY_SIZE(au1300_sd1_res
),
577 /**********************************************************************/
579 static int db1300_movinand_inserted(void *mmc_host
)
581 return 0; /* disable for now, it doesn't work yet */
584 static int db1300_movinand_readonly(void *mmc_host
)
589 static void db1300_movinand_led_set(struct led_classdev
*led
,
590 enum led_brightness brightness
)
592 if (brightness
!= LED_OFF
)
593 bcsr_mod(BCSR_LEDS
, BCSR_LEDS_LED1
, 0);
595 bcsr_mod(BCSR_LEDS
, 0, BCSR_LEDS_LED1
);
598 static struct led_classdev db1300_movinand_led
= {
599 .brightness_set
= db1300_movinand_led_set
,
602 struct au1xmmc_platform_data db1300_sd0_platdata
= {
603 .card_inserted
= db1300_movinand_inserted
,
604 .card_readonly
= db1300_movinand_readonly
,
605 .led
= &db1300_movinand_led
,
606 .mask_host_caps
= MMC_CAP_NEEDS_POLL
,
609 static struct resource au1300_sd0_res
[] = {
611 .start
= AU1100_SD0_PHYS_ADDR
,
612 .end
= AU1100_SD0_PHYS_ADDR
,
613 .flags
= IORESOURCE_MEM
,
616 .start
= AU1300_SD0_INT
,
617 .end
= AU1300_SD0_INT
,
618 .flags
= IORESOURCE_IRQ
,
621 .start
= AU1300_DSCR_CMD0_SDMS_TX0
,
622 .end
= AU1300_DSCR_CMD0_SDMS_TX0
,
623 .flags
= IORESOURCE_DMA
,
626 .start
= AU1300_DSCR_CMD0_SDMS_RX0
,
627 .end
= AU1300_DSCR_CMD0_SDMS_RX0
,
628 .flags
= IORESOURCE_DMA
,
632 static struct platform_device db1300_sd0_dev
= {
634 .dma_mask
= &au1300_all_dmamask
,
635 .coherent_dma_mask
= DMA_BIT_MASK(32),
636 .platform_data
= &db1300_sd0_platdata
,
638 .name
= "au1xxx-mmc",
640 .resource
= au1300_sd0_res
,
641 .num_resources
= ARRAY_SIZE(au1300_sd0_res
),
644 /**********************************************************************/
646 static struct platform_device db1300_wm9715_dev
= {
647 .name
= "wm9712-codec",
648 .id
= 1, /* ID of PSC for AC97 audio, see asoc glue! */
651 static struct platform_device db1300_ac97dma_dev
= {
652 .name
= "au1xpsc-pcm",
653 .id
= 1, /* PSC ID */
656 static struct platform_device db1300_i2sdma_dev
= {
657 .name
= "au1xpsc-pcm",
658 .id
= 2, /* PSC ID */
661 static struct platform_device db1300_sndac97_dev
= {
662 .name
= "db1300-ac97",
664 .dma_mask
= &au1300_all_dmamask
,
665 .coherent_dma_mask
= DMA_BIT_MASK(32),
669 static struct platform_device db1300_sndi2s_dev
= {
670 .name
= "db1300-i2s",
672 .dma_mask
= &au1300_all_dmamask
,
673 .coherent_dma_mask
= DMA_BIT_MASK(32),
677 /**********************************************************************/
679 static int db1300fb_panel_index(void)
681 return 9; /* DB1300_800x480 */
684 static int db1300fb_panel_init(void)
686 /* Apply power (Vee/Vdd logic is inverted on Panel DB1300_800x480) */
687 bcsr_mod(BCSR_BOARD
, BCSR_BOARD_LCDVEE
| BCSR_BOARD_LCDVDD
,
692 static int db1300fb_panel_shutdown(void)
694 /* Remove power (Vee/Vdd logic is inverted on Panel DB1300_800x480) */
695 bcsr_mod(BCSR_BOARD
, BCSR_BOARD_LCDBL
,
696 BCSR_BOARD_LCDVEE
| BCSR_BOARD_LCDVDD
);
700 static struct au1200fb_platdata db1300fb_pd
= {
701 .panel_index
= db1300fb_panel_index
,
702 .panel_init
= db1300fb_panel_init
,
703 .panel_shutdown
= db1300fb_panel_shutdown
,
706 static struct resource au1300_lcd_res
[] = {
708 .start
= AU1200_LCD_PHYS_ADDR
,
709 .end
= AU1200_LCD_PHYS_ADDR
+ 0x800 - 1,
710 .flags
= IORESOURCE_MEM
,
713 .start
= AU1300_LCD_INT
,
714 .end
= AU1300_LCD_INT
,
715 .flags
= IORESOURCE_IRQ
,
720 static struct platform_device db1300_lcd_dev
= {
721 .name
= "au1200-lcd",
724 .dma_mask
= &au1300_all_dmamask
,
725 .coherent_dma_mask
= DMA_BIT_MASK(32),
726 .platform_data
= &db1300fb_pd
,
728 .num_resources
= ARRAY_SIZE(au1300_lcd_res
),
729 .resource
= au1300_lcd_res
,
732 /**********************************************************************/
734 #if IS_ENABLED(CONFIG_TOUCHSCREEN_WM97XX)
735 static void db1300_wm97xx_irqen(struct wm97xx
*wm
, int enable
)
738 enable_irq(DB1300_AC97_PEN_INT
);
740 disable_irq_nosync(DB1300_AC97_PEN_INT
);
743 static struct wm97xx_mach_ops db1300_wm97xx_ops
= {
744 .irq_enable
= db1300_wm97xx_irqen
,
745 .irq_gpio
= WM97XX_GPIO_3
,
748 static int db1300_wm97xx_probe(struct platform_device
*pdev
)
750 struct wm97xx
*wm
= platform_get_drvdata(pdev
);
752 /* external pendown indicator */
753 wm97xx_config_gpio(wm
, WM97XX_GPIO_13
, WM97XX_GPIO_IN
,
754 WM97XX_GPIO_POL_LOW
, WM97XX_GPIO_STICKY
,
757 /* internal "virtual" pendown gpio */
758 wm97xx_config_gpio(wm
, WM97XX_GPIO_3
, WM97XX_GPIO_OUT
,
759 WM97XX_GPIO_POL_LOW
, WM97XX_GPIO_NOTSTICKY
,
762 wm
->pen_irq
= DB1300_AC97_PEN_INT
;
764 return wm97xx_register_mach_ops(wm
, &db1300_wm97xx_ops
);
767 static int db1300_wm97xx_probe(struct platform_device
*pdev
)
773 static struct platform_driver db1300_wm97xx_driver
= {
774 .driver
.name
= "wm97xx-touch",
775 .driver
.owner
= THIS_MODULE
,
776 .probe
= db1300_wm97xx_probe
,
779 /**********************************************************************/
781 static struct platform_device
*db1300_dev
[] __initdata
= {
799 int __init
db1300_dev_setup(void)
801 int swapped
, cpldirq
;
804 /* setup CPLD IRQ muxer */
805 cpldirq
= au1300_gpio_to_irq(AU1300_PIN_EXTCLK1
);
806 irq_set_irq_type(cpldirq
, IRQ_TYPE_LEVEL_HIGH
);
807 bcsr_init_irq(DB1300_FIRST_INT
, DB1300_LAST_INT
, cpldirq
);
809 /* insert/eject IRQs: one always triggers so don't enable them
810 * when doing request_irq() on them. DB1200 has this bug too.
812 irq_set_status_flags(DB1300_SD1_INSERT_INT
, IRQ_NOAUTOEN
);
813 irq_set_status_flags(DB1300_SD1_EJECT_INT
, IRQ_NOAUTOEN
);
814 irq_set_status_flags(DB1300_CF_INSERT_INT
, IRQ_NOAUTOEN
);
815 irq_set_status_flags(DB1300_CF_EJECT_INT
, IRQ_NOAUTOEN
);
820 prom_get_ethernet_addr(&db1300_eth_config
.mac
[0]);
822 i2c_register_board_info(0, db1300_i2c_devs
,
823 ARRAY_SIZE(db1300_i2c_devs
));
825 if (platform_driver_register(&db1300_wm97xx_driver
))
826 pr_warn("DB1300: failed to init touch pen irq support!\n");
828 /* Audio PSC clock is supplied by codecs (PSC1, 2) */
829 __raw_writel(PSC_SEL_CLK_SERCLK
,
830 (void __iomem
*)KSEG1ADDR(AU1300_PSC1_PHYS_ADDR
) + PSC_SEL_OFFSET
);
832 __raw_writel(PSC_SEL_CLK_SERCLK
,
833 (void __iomem
*)KSEG1ADDR(AU1300_PSC2_PHYS_ADDR
) + PSC_SEL_OFFSET
);
835 /* I2C driver wants 50MHz, get as close as possible */
836 c
= clk_get(NULL
, "psc3_intclk");
838 clk_set_rate(c
, 50000000);
839 clk_prepare_enable(c
);
842 __raw_writel(PSC_SEL_CLK_INTCLK
,
843 (void __iomem
*)KSEG1ADDR(AU1300_PSC3_PHYS_ADDR
) + PSC_SEL_OFFSET
);
846 /* enable power to USB ports */
847 bcsr_mod(BCSR_RESETS
, 0, BCSR_RESETS_USBHPWR
| BCSR_RESETS_OTGPWR
);
849 /* although it is socket #0, it uses the CPLD bits which previous boards
850 * have used for socket #1.
852 db1x_register_pcmcia_socket(
853 AU1000_PCMCIA_ATTR_PHYS_ADDR
,
854 AU1000_PCMCIA_ATTR_PHYS_ADDR
+ 0x00400000 - 1,
855 AU1000_PCMCIA_MEM_PHYS_ADDR
,
856 AU1000_PCMCIA_MEM_PHYS_ADDR
+ 0x00400000 - 1,
857 AU1000_PCMCIA_IO_PHYS_ADDR
,
858 AU1000_PCMCIA_IO_PHYS_ADDR
+ 0x00010000 - 1,
859 DB1300_CF_INT
, DB1300_CF_INSERT_INT
, 0, DB1300_CF_EJECT_INT
, 1);
861 swapped
= bcsr_read(BCSR_STATUS
) & BCSR_STATUS_DB1200_SWAPBOOT
;
862 db1x_register_norflash(64 << 20, 2, swapped
);
864 return platform_add_devices(db1300_dev
, ARRAY_SIZE(db1300_dev
));
868 int __init
db1300_board_setup(void)
870 unsigned short whoami
;
872 bcsr_init(DB1300_BCSR_PHYS_ADDR
,
873 DB1300_BCSR_PHYS_ADDR
+ DB1300_BCSR_HEXLED_OFS
);
875 whoami
= bcsr_read(BCSR_WHOAMI
);
876 if (BCSR_WHOAMI_BOARD(whoami
) != BCSR_WHOAMI_DB1300
)
879 db1300_gpio_config();
881 printk(KERN_INFO
"NetLogic DBAu1300 Development Platform.\n\t"
882 "BoardID %d CPLD Rev %d DaughtercardID %d\n",
883 BCSR_WHOAMI_BOARD(whoami
), BCSR_WHOAMI_CPLD(whoami
),
884 BCSR_WHOAMI_DCID(whoami
));
886 /* enable UARTs, YAMON only enables #2 */
887 alchemy_uart_enable(AU1300_UART0_PHYS_ADDR
);
888 alchemy_uart_enable(AU1300_UART1_PHYS_ADDR
);
889 alchemy_uart_enable(AU1300_UART3_PHYS_ADDR
);