-
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: 256676 b: refs/heads/master c: 8d7cf83 h: refs/heads/master v: v3
- Loading branch information
Shawn Guo
authored and
Grant Likely
committed
Jun 6, 2011
1 parent
87d908c
commit 7f6df7f
Showing
8 changed files
with
192 additions
and
95 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: 7b2fa5702059a03c11f934224724b2f712a749ce | ||
refs/heads/master: 8d7cf8370d5fb75a3265408dceb1d6173eebfafd |
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 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,53 @@ | ||
/* | ||
* Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved. | ||
* | ||
* This program is free software; you can redistribute it and/or modify it under | ||
* the terms of the GNU General Public License version 2 as published by the | ||
* Free Software Foundation. | ||
*/ | ||
#include <linux/compiler.h> | ||
#include <linux/err.h> | ||
#include <linux/init.h> | ||
|
||
#include <mach/mx23.h> | ||
#include <mach/mx28.h> | ||
#include <mach/devices-common.h> | ||
|
||
struct platform_device *__init mxs_add_gpio( | ||
int id, resource_size_t iobase, int irq) | ||
{ | ||
struct resource res[] = { | ||
{ | ||
.start = iobase, | ||
.end = iobase + SZ_8K - 1, | ||
.flags = IORESOURCE_MEM, | ||
}, { | ||
.start = irq, | ||
.end = irq, | ||
.flags = IORESOURCE_IRQ, | ||
}, | ||
}; | ||
|
||
return platform_device_register_resndata(&mxs_apbh_bus, | ||
"gpio-mxs", id, res, ARRAY_SIZE(res), NULL, 0); | ||
} | ||
|
||
static int __init mxs_add_mxs_gpio(void) | ||
{ | ||
if (cpu_is_mx23()) { | ||
mxs_add_gpio(0, MX23_PINCTRL_BASE_ADDR, MX23_INT_GPIO0); | ||
mxs_add_gpio(1, MX23_PINCTRL_BASE_ADDR, MX23_INT_GPIO1); | ||
mxs_add_gpio(2, MX23_PINCTRL_BASE_ADDR, MX23_INT_GPIO2); | ||
} | ||
|
||
if (cpu_is_mx28()) { | ||
mxs_add_gpio(0, MX28_PINCTRL_BASE_ADDR, MX28_INT_GPIO0); | ||
mxs_add_gpio(1, MX28_PINCTRL_BASE_ADDR, MX28_INT_GPIO1); | ||
mxs_add_gpio(2, MX28_PINCTRL_BASE_ADDR, MX28_INT_GPIO2); | ||
mxs_add_gpio(3, MX28_PINCTRL_BASE_ADDR, MX28_INT_GPIO3); | ||
mxs_add_gpio(4, MX28_PINCTRL_BASE_ADDR, MX28_INT_GPIO4); | ||
} | ||
|
||
return 0; | ||
} | ||
postcore_initcall(mxs_add_mxs_gpio); |
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 |
---|---|---|
|
@@ -41,5 +41,4 @@ void __init mx23_map_io(void) | |
void __init mx23_init_irq(void) | ||
{ | ||
icoll_init_irq(); | ||
mx23_register_gpios(); | ||
} |
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 |
---|---|---|
|
@@ -41,5 +41,4 @@ void __init mx28_map_io(void) | |
void __init mx28_init_irq(void) | ||
{ | ||
icoll_init_irq(); | ||
mx28_register_gpios(); | ||
} |
Oops, something went wrong.