mirror of
https://github.com/torvalds/linux.git
synced 2024-12-20 10:01:56 +00:00
0273b4efcc
Rewritten XXS1500 PCMCIA socket driver, standalone (doesn't depend on au1000_generic.c) and added carddetect IRQ support. Signed-off-by: Manuel Lauss <manuel.lauss@gmail.com> Cc: Florian Fainelli <florian@openwrt.org> Cc: Linux-PCMCIA <linux-pcmcia@lists.infradead.org> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
64 lines
1.8 KiB
C
64 lines
1.8 KiB
C
/*
|
|
* XXS1500 board platform device registration
|
|
*
|
|
* Copyright (C) 2009 Manuel Lauss
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <asm/mach-au1x00/au1000.h>
|
|
|
|
static struct resource xxs1500_pcmcia_res[] = {
|
|
{
|
|
.name = "pseudo-io",
|
|
.flags = IORESOURCE_MEM,
|
|
.start = PCMCIA_IO_PSEUDO_PHYS,
|
|
.end = PCMCIA_IO_PSEUDO_PHYS + 0x00040000 - 1,
|
|
},
|
|
{
|
|
.name = "pseudo-attr",
|
|
.flags = IORESOURCE_MEM,
|
|
.start = PCMCIA_ATTR_PSEUDO_PHYS,
|
|
.end = PCMCIA_ATTR_PSEUDO_PHYS + 0x00040000 - 1,
|
|
},
|
|
{
|
|
.name = "pseudo-mem",
|
|
.flags = IORESOURCE_MEM,
|
|
.start = PCMCIA_IO_PSEUDO_PHYS,
|
|
.end = PCMCIA_IO_PSEUDO_PHYS + 0x00040000 - 1,
|
|
},
|
|
};
|
|
|
|
static struct platform_device xxs1500_pcmcia_dev = {
|
|
.name = "xxs1500_pcmcia",
|
|
.id = -1,
|
|
.num_resources = ARRAY_SIZE(xxs1500_pcmcia_res),
|
|
.resource = xxs1500_pcmcia_res,
|
|
};
|
|
|
|
static struct platform_device *xxs1500_devs[] __initdata = {
|
|
&xxs1500_pcmcia_dev,
|
|
};
|
|
|
|
static int __init xxs1500_dev_init(void)
|
|
{
|
|
return platform_add_devices(xxs1500_devs,
|
|
ARRAY_SIZE(xxs1500_devs));
|
|
}
|
|
device_initcall(xxs1500_dev_init);
|