Path: blob/master/arch/sh/kernel/cpu/sh4a/pinmux-sh7757.c
26498 views
// SPDX-License-Identifier: GPL-2.01/*2* SH7757 (B0 step) Pinmux3*4* Copyright (C) 2009-2010 Renesas Solutions Corp.5*6* Author : Yoshihiro Shimoda <[email protected]>7*8* Based on SH7723 Pinmux9* 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 sh7757_pfc_resources[] = {19[0] = {20.start = 0xffec0000,21.end = 0xffec008f,22.flags = IORESOURCE_MEM,23},24};2526static int __init plat_pinmux_setup(void)27{28return sh_pfc_register("pfc-sh7757", sh7757_pfc_resources,29ARRAY_SIZE(sh7757_pfc_resources));30}31arch_initcall(plat_pinmux_setup);323334