ARM: shmobile: sh7372: Add pin control resources
Add memory resources for the pin control platform device to let the sh-pfc driver ioremap() registers properly instead of evily casting register physical addresses to virtual addresses. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Acked-by: Paul Mundt <lethal@linux-sh.org> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
This commit is contained in:
parent
38e9623e26
commit
3bdd190670
1 changed files with 17 additions and 0 deletions
|
@ -20,7 +20,9 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
#include <linux/bug.h>
|
||||||
#include <linux/init.h>
|
#include <linux/init.h>
|
||||||
|
#include <linux/ioport.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
#include <linux/sh_pfc.h>
|
#include <linux/sh_pfc.h>
|
||||||
|
@ -1658,9 +1660,24 @@ static struct pinmux_info sh7372_pinmux_info = {
|
||||||
.gpio_irq_size = ARRAY_SIZE(pinmux_irqs),
|
.gpio_irq_size = ARRAY_SIZE(pinmux_irqs),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct resource sh7372_pfc_resources[] = {
|
||||||
|
[0] = {
|
||||||
|
.start = 0xe6050000,
|
||||||
|
.end = 0xe6057fff,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
[1] = {
|
||||||
|
.start = 0xe605800c,
|
||||||
|
.end = 0xe6058027,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device sh7372_pfc_device = {
|
static struct platform_device sh7372_pfc_device = {
|
||||||
.name = "sh-pfc",
|
.name = "sh-pfc",
|
||||||
.id = -1,
|
.id = -1,
|
||||||
|
.resource = sh7372_pfc_resources,
|
||||||
|
.num_resources = ARRAY_SIZE(sh7372_pfc_resources),
|
||||||
.dev = {
|
.dev = {
|
||||||
.platform_data = &sh7372_pinmux_info,
|
.platform_data = &sh7372_pinmux_info,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue