2 * CNS3xxx common devices
4 * Copyright 2008 Cavium Networks
6 * Copyright 2010 MontaVista Software, LLC.
7 * Anton Vorontsov <avorontsov@mvista.com>
9 * This file 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.
15 #include <linux/init.h>
16 #include <linux/compiler.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/platform_device.h>
19 #include <mach/cns3xxx.h>
20 #include <mach/irqs.h>
27 static struct resource cns3xxx_ahci_resource
[] = {
29 .start
= CNS3XXX_SATA2_BASE
,
30 .end
= CNS3XXX_SATA2_BASE
+ CNS3XXX_SATA2_SIZE
- 1,
31 .flags
= IORESOURCE_MEM
,
34 .start
= IRQ_CNS3XXX_SATA
,
35 .end
= IRQ_CNS3XXX_SATA
,
36 .flags
= IORESOURCE_IRQ
,
40 static u64 cns3xxx_ahci_dmamask
= DMA_BIT_MASK(32);
42 static struct platform_device cns3xxx_ahci_pdev
= {
45 .resource
= cns3xxx_ahci_resource
,
46 .num_resources
= ARRAY_SIZE(cns3xxx_ahci_resource
),
48 .dma_mask
= &cns3xxx_ahci_dmamask
,
49 .coherent_dma_mask
= DMA_BIT_MASK(32),
53 void __init
cns3xxx_ahci_init(void)
57 tmp
= __raw_readl(MISC_SATA_POWER_MODE
);
58 tmp
|= 0x1 << 16; /* Disable SATA PHY 0 from SLUMBER Mode */
59 tmp
|= 0x1 << 17; /* Disable SATA PHY 1 from SLUMBER Mode */
60 __raw_writel(tmp
, MISC_SATA_POWER_MODE
);
63 cns3xxx_pwr_power_up(0x1 << PM_PLL_HM_PD_CTRL_REG_OFFSET_SATA_PHY0
);
64 cns3xxx_pwr_power_up(0x1 << PM_PLL_HM_PD_CTRL_REG_OFFSET_SATA_PHY1
);
66 /* Enable SATA Clock */
67 cns3xxx_pwr_clk_en(0x1 << PM_CLK_GATE_REG_OFFSET_SATA
);
69 /* De-Asscer SATA Reset */
70 cns3xxx_pwr_soft_rst(CNS3XXX_PWR_SOFTWARE_RST(SATA
));
72 platform_device_register(&cns3xxx_ahci_pdev
);
78 static struct resource cns3xxx_sdhci_resources
[] = {
80 .start
= CNS3XXX_SDIO_BASE
,
81 .end
= CNS3XXX_SDIO_BASE
+ SZ_4K
- 1,
82 .flags
= IORESOURCE_MEM
,
85 .start
= IRQ_CNS3XXX_SDIO
,
86 .end
= IRQ_CNS3XXX_SDIO
,
87 .flags
= IORESOURCE_IRQ
,
91 static struct platform_device cns3xxx_sdhci_pdev
= {
92 .name
= "sdhci-cns3xxx",
94 .num_resources
= ARRAY_SIZE(cns3xxx_sdhci_resources
),
95 .resource
= cns3xxx_sdhci_resources
,
98 void __init
cns3xxx_sdhci_init(void)
100 u32 __iomem
*gpioa
= __io(CNS3XXX_MISC_BASE_VIRT
+ 0x0014);
101 u32 gpioa_pins
= __raw_readl(gpioa
);
103 /* MMC/SD pins share with GPIOA */
104 gpioa_pins
|= 0x1fff0004;
105 __raw_writel(gpioa_pins
, gpioa
);
107 cns3xxx_pwr_clk_en(CNS3XXX_PWR_CLK_EN(SDIO
));
108 cns3xxx_pwr_soft_rst(CNS3XXX_PWR_SOFTWARE_RST(SDIO
));
110 platform_device_register(&cns3xxx_sdhci_pdev
);