27dd65ac9a
Register the PCMCIA driver on all boards supported by it, get rid of now-unused pcmcia macros in the board headers (and subsequently empty pb1100/pb1500 ones). Signed-off-by: Manuel Lauss <manuel.lauss@gmail.com> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
42 lines
1.4 KiB
C
42 lines
1.4 KiB
C
/*
|
|
* Pb1500 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 <asm/mach-au1x00/au1000.h>
|
|
|
|
#include "../platform.h"
|
|
|
|
static int __init pb1500_dev_init(void)
|
|
{
|
|
/* PCMCIA. single socket, identical to Pb1500 */
|
|
db1x_register_pcmcia_socket(PCMCIA_ATTR_PSEUDO_PHYS,
|
|
PCMCIA_ATTR_PSEUDO_PHYS + 0x00040000 - 1,
|
|
PCMCIA_MEM_PSEUDO_PHYS,
|
|
PCMCIA_MEM_PSEUDO_PHYS + 0x00040000 - 1,
|
|
PCMCIA_IO_PSEUDO_PHYS,
|
|
PCMCIA_IO_PSEUDO_PHYS + 0x00001000 - 1,
|
|
AU1000_GPIO_11, /* card */
|
|
AU1000_GPIO_9, /* insert */
|
|
/*AU1000_GPIO_10*/0, /* stschg */
|
|
0, /* eject */
|
|
0); /* id */
|
|
return 0;
|
|
}
|
|
device_initcall(pb1500_dev_init);
|