cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

pinmux-sh7734.c (766B)


      1// SPDX-License-Identifier: GPL-2.0
      2/*
      3 * SH7734 processor support - PFC hardware block
      4 *
      5 * Copyright (C) 2012  Renesas Solutions Corp.
      6 * Copyright (C) 2012  Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
      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
     14static struct resource sh7734_pfc_resources[] = {
     15	[0] = { /* PFC */
     16		.start	= 0xFFFC0000,
     17		.end	= 0xFFFC011C,
     18		.flags	= IORESOURCE_MEM,
     19	},
     20	[1] = { /* GPIO */
     21		.start	= 0xFFC40000,
     22		.end	= 0xFFC4502B,
     23		.flags	= IORESOURCE_MEM,
     24	}
     25};
     26
     27static int __init plat_pinmux_setup(void)
     28{
     29	return sh_pfc_register("pfc-sh7734", sh7734_pfc_resources,
     30			       ARRAY_SIZE(sh7734_pfc_resources));
     31}
     32arch_initcall(plat_pinmux_setup);