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-sh7786.c (683B)


      1// SPDX-License-Identifier: GPL-2.0
      2/*
      3 * SH7786 Pinmux
      4 *
      5 * Copyright (C) 2008, 2009  Renesas Solutions Corp.
      6 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
      7 *
      8 *  Based on SH7785 pinmux
      9 *
     10 *  Copyright (C) 2008  Magnus Damm
     11 */
     12
     13#include <linux/bug.h>
     14#include <linux/init.h>
     15#include <linux/kernel.h>
     16#include <linux/ioport.h>
     17#include <cpu/pfc.h>
     18
     19static struct resource sh7786_pfc_resources[] = {
     20	[0] = {
     21		.start	= 0xffcc0000,
     22		.end	= 0xffcc008f,
     23		.flags	= IORESOURCE_MEM,
     24	},
     25};
     26
     27static int __init plat_pinmux_setup(void)
     28{
     29	return sh_pfc_register("pfc-sh7786", sh7786_pfc_resources,
     30			       ARRAY_SIZE(sh7786_pfc_resources));
     31}
     32arch_initcall(plat_pinmux_setup);