Kyle Swenson | 8d8f654 | 2021-03-15 11:02:55 -0600 | [diff] [blame^] | 1 | /* |
| 2 | * SH7785 Pinmux |
| 3 | * |
| 4 | * Copyright (C) 2008 Magnus Damm |
| 5 | * |
| 6 | * This file is subject to the terms and conditions of the GNU General Public |
| 7 | * License. See the file "COPYING" in the main directory of this archive |
| 8 | * for more details. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/bug.h> |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/ioport.h> |
| 15 | #include <cpu/pfc.h> |
| 16 | |
| 17 | static struct resource sh7785_pfc_resources[] = { |
| 18 | [0] = { |
| 19 | .start = 0xffe70000, |
| 20 | .end = 0xffe7008f, |
| 21 | .flags = IORESOURCE_MEM, |
| 22 | }, |
| 23 | }; |
| 24 | |
| 25 | static int __init plat_pinmux_setup(void) |
| 26 | { |
| 27 | return sh_pfc_register("pfc-sh7785", sh7785_pfc_resources, |
| 28 | ARRAY_SIZE(sh7785_pfc_resources)); |
| 29 | } |
| 30 | arch_initcall(plat_pinmux_setup); |