You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Merge branch 'for-linus' of master.kernel.org:/home/rmk/linux-2.6-arm
* 'for-linus' of master.kernel.org:/home/rmk/linux-2.6-arm: (241 commits) [ARM] 5171/1: ep93xx: fix compilation of modules using clocks [ARM] 5133/2: at91sam9g20 defconfig file [ARM] 5130/4: Support for the at91sam9g20 [ARM] 5160/1: IOP3XX: gpio/gpiolib support [ARM] at91: Fix NAND FLASH timings for at91sam9x evaluation kits. [ARM] 5084/1: zylonite: Register AC97 device [ARM] 5085/2: PXA: Move AC97 over to the new central device declaration model [ARM] 5120/1: pxa: correct platform driver names for PXA25x and PXA27x UDC drivers [ARM] 5147/1: pxaficp_ir: drop pxa_gpio_mode calls, as pin setting [ARM] 5145/1: PXA2xx: provide api to control IrDA pins state [ARM] 5144/1: pxaficp_ir: cleanup includes [ARM] pxa: remove pxa_set_cken() [ARM] pxa: allow clk aliases [ARM] Feroceon: don't disable BPU on boot [ARM] Orion: LED support for HP mv2120 [ARM] Orion: add RD88F5181L-FXO support [ARM] Orion: add RD88F5181L-GE support [ARM] Orion: add Netgear WNR854T support [ARM] s3c2410_defconfig: update for current build [ARM] Acer n30: Minor style and indentation fixes. ...
This commit is contained in:
+13
-12
@@ -38,19 +38,19 @@
|
||||
#define CF_BASE 0xfffe2800
|
||||
|
||||
/* status; read after IRQ */
|
||||
#define CF_STATUS_REG __REG16(CF_BASE + 0x00)
|
||||
#define CF_STATUS (CF_BASE + 0x00)
|
||||
# define CF_STATUS_BAD_READ (1 << 2)
|
||||
# define CF_STATUS_BAD_WRITE (1 << 1)
|
||||
# define CF_STATUS_CARD_DETECT (1 << 0)
|
||||
|
||||
/* which chipselect (CS0..CS3) is used for CF (active low) */
|
||||
#define CF_CFG_REG __REG16(CF_BASE + 0x02)
|
||||
#define CF_CFG (CF_BASE + 0x02)
|
||||
|
||||
/* card reset */
|
||||
#define CF_CONTROL_REG __REG16(CF_BASE + 0x04)
|
||||
#define CF_CONTROL (CF_BASE + 0x04)
|
||||
# define CF_CONTROL_RESET (1 << 0)
|
||||
|
||||
#define omap_cf_present() (!(CF_STATUS_REG & CF_STATUS_CARD_DETECT))
|
||||
#define omap_cf_present() (!(omap_readw(CF_STATUS) & CF_STATUS_CARD_DETECT))
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
@@ -139,11 +139,11 @@ omap_cf_set_socket(struct pcmcia_socket *sock, struct socket_state_t *s)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
control = CF_CONTROL_REG;
|
||||
control = omap_readw(CF_CONTROL);
|
||||
if (s->flags & SS_RESET)
|
||||
CF_CONTROL_REG = CF_CONTROL_RESET;
|
||||
omap_writew(CF_CONTROL_RESET, CF_CONTROL);
|
||||
else
|
||||
CF_CONTROL_REG = 0;
|
||||
omap_writew(0, CF_CONTROL);
|
||||
|
||||
pr_debug("%s: Vcc %d, io_irq %d, flags %04x csc %04x\n",
|
||||
driver_name, s->Vcc, s->io_irq, s->flags, s->csc_mask);
|
||||
@@ -270,7 +270,7 @@ static int __init omap_cf_probe(struct platform_device *pdev)
|
||||
omap_cfg_reg(V10_1610_CF_IREQ);
|
||||
omap_cfg_reg(W10_1610_CF_RESET);
|
||||
|
||||
CF_CFG_REG = ~(1 << seg);
|
||||
omap_writew(~(1 << seg), CF_CFG);
|
||||
|
||||
pr_info("%s: cs%d on irq %d\n", driver_name, seg, irq);
|
||||
|
||||
@@ -279,14 +279,15 @@ static int __init omap_cf_probe(struct platform_device *pdev)
|
||||
* CF/PCMCIA variants...
|
||||
*/
|
||||
pr_debug("%s: cs%d, previous ccs %08x acs %08x\n", driver_name,
|
||||
seg, EMIFS_CCS(seg), EMIFS_ACS(seg));
|
||||
EMIFS_CCS(seg) = 0x0004a1b3; /* synch mode 4 etc */
|
||||
EMIFS_ACS(seg) = 0x00000000; /* OE hold/setup */
|
||||
seg, omap_readl(EMIFS_CCS(seg)), omap_readl(EMIFS_ACS(seg)));
|
||||
omap_writel(0x0004a1b3, EMIFS_CCS(seg)); /* synch mode 4 etc */
|
||||
omap_writel(0x00000000, EMIFS_ACS(seg)); /* OE hold/setup */
|
||||
|
||||
/* CF uses armxor_ck, which is "always" available */
|
||||
|
||||
pr_debug("%s: sts %04x cfg %04x control %04x %s\n", driver_name,
|
||||
CF_STATUS_REG, CF_CFG_REG, CF_CONTROL_REG,
|
||||
omap_readw(CF_STATUS), omap_readw(CF_CFG),
|
||||
omap_readw(CF_CONTROL),
|
||||
omap_cf_present() ? "present" : "(not present)");
|
||||
|
||||
cf->socket.owner = THIS_MODULE;
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
|
||||
#include <pcmcia/ss.h>
|
||||
#include <asm/hardware.h>
|
||||
#include <asm/mach-types.h>
|
||||
|
||||
#include <asm/arch/pxa-regs.h>
|
||||
#include <asm/arch/pxa2xx-gpio.h>
|
||||
@@ -130,7 +131,7 @@ static void cmx270_pcmcia_socket_suspend(struct soc_pcmcia_socket *skt)
|
||||
}
|
||||
|
||||
|
||||
static struct pcmcia_low_level cmx270_pcmcia_ops = {
|
||||
static struct pcmcia_low_level cmx270_pcmcia_ops __initdata = {
|
||||
.owner = THIS_MODULE,
|
||||
.hw_init = cmx270_pcmcia_hw_init,
|
||||
.hw_shutdown = cmx270_pcmcia_shutdown,
|
||||
@@ -147,15 +148,21 @@ static int __init cmx270_pcmcia_init(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
if (!machine_is_armcore())
|
||||
return -ENODEV;
|
||||
|
||||
cmx270_pcmcia_device = platform_device_alloc("pxa2xx-pcmcia", -1);
|
||||
|
||||
if (!cmx270_pcmcia_device)
|
||||
return -ENOMEM;
|
||||
|
||||
cmx270_pcmcia_device->dev.platform_data = &cmx270_pcmcia_ops;
|
||||
ret = platform_device_add_data(cmx270_pcmcia_device, &cmx270_pcmcia_ops,
|
||||
sizeof(cmx270_pcmcia_ops));
|
||||
|
||||
printk(KERN_INFO "Registering cm-x270 PCMCIA interface.\n");
|
||||
ret = platform_device_add(cmx270_pcmcia_device);
|
||||
if (ret == 0) {
|
||||
printk(KERN_INFO "Registering cm-x270 PCMCIA interface.\n");
|
||||
ret = platform_device_add(cmx270_pcmcia_device);
|
||||
}
|
||||
|
||||
if (ret)
|
||||
platform_device_put(cmx270_pcmcia_device);
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
#include <pcmcia/ss.h>
|
||||
|
||||
#include <asm/hardware.h>
|
||||
#include <asm/mach-types.h>
|
||||
#include <asm/irq.h>
|
||||
|
||||
#include <asm/arch/pxa-regs.h>
|
||||
@@ -136,7 +137,7 @@ static void mst_pcmcia_socket_suspend(struct soc_pcmcia_socket *skt)
|
||||
{
|
||||
}
|
||||
|
||||
static struct pcmcia_low_level mst_pcmcia_ops = {
|
||||
static struct pcmcia_low_level mst_pcmcia_ops __initdata = {
|
||||
.owner = THIS_MODULE,
|
||||
.hw_init = mst_pcmcia_hw_init,
|
||||
.hw_shutdown = mst_pcmcia_hw_shutdown,
|
||||
@@ -153,13 +154,17 @@ static int __init mst_pcmcia_init(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
if (!machine_is_mainstone())
|
||||
return -ENODEV;
|
||||
|
||||
mst_pcmcia_device = platform_device_alloc("pxa2xx-pcmcia", -1);
|
||||
if (!mst_pcmcia_device)
|
||||
return -ENOMEM;
|
||||
|
||||
mst_pcmcia_device->dev.platform_data = &mst_pcmcia_ops;
|
||||
|
||||
ret = platform_device_add(mst_pcmcia_device);
|
||||
ret = platform_device_add_data(mst_pcmcia_device, &mst_pcmcia_ops,
|
||||
sizeof(mst_pcmcia_ops));
|
||||
if (ret == 0)
|
||||
ret = platform_device_add(mst_pcmcia_device);
|
||||
|
||||
if (ret)
|
||||
platform_device_put(mst_pcmcia_device);
|
||||
|
||||
@@ -222,7 +222,7 @@ static void sharpsl_pcmcia_socket_suspend(struct soc_pcmcia_socket *skt)
|
||||
sharpsl_pcmcia_init_reset(skt);
|
||||
}
|
||||
|
||||
static struct pcmcia_low_level sharpsl_pcmcia_ops = {
|
||||
static struct pcmcia_low_level sharpsl_pcmcia_ops __initdata = {
|
||||
.owner = THIS_MODULE,
|
||||
.hw_init = sharpsl_pcmcia_hw_init,
|
||||
.hw_shutdown = sharpsl_pcmcia_hw_shutdown,
|
||||
@@ -261,10 +261,12 @@ static int __init sharpsl_pcmcia_init(void)
|
||||
if (!sharpsl_pcmcia_device)
|
||||
return -ENOMEM;
|
||||
|
||||
sharpsl_pcmcia_device->dev.platform_data = &sharpsl_pcmcia_ops;
|
||||
sharpsl_pcmcia_device->dev.parent = platform_scoop_config->devs[0].dev;
|
||||
|
||||
ret = platform_device_add(sharpsl_pcmcia_device);
|
||||
ret = platform_device_add_data(sharpsl_pcmcia_device,
|
||||
&sharpsl_pcmcia_ops, sizeof(sharpsl_pcmcia_ops));
|
||||
if (ret == 0) {
|
||||
sharpsl_pcmcia_device->dev.parent = platform_scoop_config->devs[0].dev;
|
||||
ret = platform_device_add(sharpsl_pcmcia_device);
|
||||
}
|
||||
|
||||
if (ret)
|
||||
platform_device_put(sharpsl_pcmcia_device);
|
||||
|
||||
Reference in New Issue
Block a user