pinmux-sh7724.c 815 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * SH7724 Pinmux
  3. *
  4. * Copyright (C) 2009 Renesas Solutions Corp.
  5. *
  6. * Kuninori Morimoto <morimoto.kuninori@renesas.com>
  7. *
  8. * Based on SH7723 Pinmux
  9. * Copyright (C) 2008 Magnus Damm
  10. *
  11. * This file is subject to the terms and conditions of the GNU General Public
  12. * License. See the file "COPYING" in the main directory of this archive
  13. * for more details.
  14. */
  15. #include <linux/bug.h>
  16. #include <linux/init.h>
  17. #include <linux/kernel.h>
  18. #include <linux/ioport.h>
  19. #include <cpu/pfc.h>
  20. static struct resource sh7724_pfc_resources[] = {
  21. [0] = {
  22. .start = 0xa4050100,
  23. .end = 0xa405016f,
  24. .flags = IORESOURCE_MEM,
  25. },
  26. };
  27. static int __init plat_pinmux_setup(void)
  28. {
  29. return sh_pfc_register("pfc-sh7724", sh7724_pfc_resources,
  30. ARRAY_SIZE(sh7724_pfc_resources));
  31. }
  32. arch_initcall(plat_pinmux_setup);