audmux-v1.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright 2009 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
  3. *
  4. * Initial development of this code was funded by
  5. * Phytec Messtechnik GmbH, http://www.phytec.de
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. */
  17. #include <linux/module.h>
  18. #include <linux/err.h>
  19. #include <linux/io.h>
  20. #include <linux/clk.h>
  21. #include <mach/audmux.h>
  22. #include <mach/hardware.h>
  23. static void __iomem *audmux_base;
  24. static unsigned char port_mapping[] = {
  25. 0x0, 0x4, 0x8, 0x10, 0x14, 0x1c,
  26. };
  27. int mxc_audmux_v1_configure_port(unsigned int port, unsigned int pcr)
  28. {
  29. if (!audmux_base) {
  30. printk("%s: not configured\n", __func__);
  31. return -ENOSYS;
  32. }
  33. if (port >= ARRAY_SIZE(port_mapping))
  34. return -EINVAL;
  35. writel(pcr, audmux_base + port_mapping[port]);
  36. return 0;
  37. }
  38. EXPORT_SYMBOL_GPL(mxc_audmux_v1_configure_port);
  39. static int mxc_audmux_v1_init(void)
  40. {
  41. #ifdef CONFIG_MACH_MX21
  42. if (cpu_is_mx21())
  43. audmux_base = MX21_IO_ADDRESS(MX21_AUDMUX_BASE_ADDR);
  44. else
  45. #endif
  46. #ifdef CONFIG_MACH_MX27
  47. if (cpu_is_mx27())
  48. audmux_base = MX27_IO_ADDRESS(MX27_AUDMUX_BASE_ADDR);
  49. else
  50. #endif
  51. (void)0;
  52. return 0;
  53. }
  54. postcore_initcall(mxc_audmux_v1_init);