Path: blob/master/arch/sh/kernel/cpu/sh4a/pinmux-sh7786.c
26498 views
// SPDX-License-Identifier: GPL-2.01/*2* SH7786 Pinmux3*4* Copyright (C) 2008, 2009 Renesas Solutions Corp.5* Kuninori Morimoto <[email protected]>6*7* Based on SH7785 pinmux8*9* Copyright (C) 2008 Magnus Damm10*/1112#include <linux/bug.h>13#include <linux/init.h>14#include <linux/kernel.h>15#include <linux/ioport.h>16#include <cpu/pfc.h>1718static struct resource sh7786_pfc_resources[] = {19[0] = {20.start = 0xffcc0000,21.end = 0xffcc008f,22.flags = IORESOURCE_MEM,23},24};2526static int __init plat_pinmux_setup(void)27{28return sh_pfc_register("pfc-sh7786", sh7786_pfc_resources,29ARRAY_SIZE(sh7786_pfc_resources));30}31arch_initcall(plat_pinmux_setup);323334