-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 182019 b: refs/heads/master c: 0273b4e h: refs/heads/master i: 182017: 6087753 182015: 2aa4647 v: v3
- Loading branch information
Manuel Lauss
authored and
Ralf Baechle
committed
Feb 27, 2010
1 parent
dcebe5f
commit 47dbb0f
Showing
8 changed files
with
434 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 27dd65ac9afabc8e67ab73f7c2f575eddbb47167 | ||
refs/heads/master: 0273b4efccd3bc2b2ef5ea9778e71d8efbbb7ac7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
# Makefile for MyCable XXS1500 board. | ||
# | ||
|
||
lib-y := init.o board_setup.o | ||
lib-y := init.o board_setup.o platform.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* 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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.