Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/sh/kernel/cpu/sh2a/pinmux-sh7264.c
26495 views
1
// SPDX-License-Identifier: GPL-2.0
2
/*
3
* SH7264 Pinmux
4
*
5
* Copyright (C) 2012 Renesas Electronics Europe Ltd
6
*/
7
8
#include <linux/bug.h>
9
#include <linux/init.h>
10
#include <linux/kernel.h>
11
#include <linux/ioport.h>
12
#include <cpu/pfc.h>
13
14
static struct resource sh7264_pfc_resources[] = {
15
[0] = {
16
.start = 0xfffe3800,
17
.end = 0xfffe393f,
18
.flags = IORESOURCE_MEM,
19
},
20
};
21
22
static int __init plat_pinmux_setup(void)
23
{
24
return sh_pfc_register("pfc-sh7264", sh7264_pfc_resources,
25
ARRAY_SIZE(sh7264_pfc_resources));
26
}
27
arch_initcall(plat_pinmux_setup);
28
29