pinmux_defs.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Pinmux configurations for the DAxxx SoCs
  3. *
  4. * Copyright (C) 2011 OMICRON electronics GmbH
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20. #ifndef __ASM_ARCH_PINMUX_DEFS_H
  21. #define __ASM_ARCH_PINMUX_DEFS_H
  22. #include <asm/arch/davinci_misc.h>
  23. #include <config.h>
  24. /* SPI0 pin muxer settings */
  25. extern const struct pinmux_config spi0_pins_base[3];
  26. extern const struct pinmux_config spi0_pins_scs0[1];
  27. extern const struct pinmux_config spi0_pins_ena[1];
  28. /* SPI1 pin muxer settings */
  29. extern const struct pinmux_config spi1_pins_base[3];
  30. extern const struct pinmux_config spi1_pins_scs0[1];
  31. /* UART pin muxer settings */
  32. extern const struct pinmux_config uart0_pins_txrx[2];
  33. extern const struct pinmux_config uart1_pins_txrx[2];
  34. extern const struct pinmux_config uart2_pins_txrx[2];
  35. extern const struct pinmux_config uart2_pins_rtscts[2];
  36. /* EMAC pin muxer settings*/
  37. extern const struct pinmux_config emac_pins_rmii[7];
  38. extern const struct pinmux_config emac_pins_rmii_clk_source[1];
  39. extern const struct pinmux_config emac_pins_mii[15];
  40. extern const struct pinmux_config emac_pins_mdio[2];
  41. /* I2C pin muxer settings */
  42. extern const struct pinmux_config i2c0_pins[2];
  43. extern const struct pinmux_config i2c1_pins[2];
  44. /* EMIFA pin muxer settings */
  45. extern const struct pinmux_config emifa_pins[40];
  46. extern const struct pinmux_config emifa_pins_cs0[1];
  47. extern const struct pinmux_config emifa_pins_cs2[1];
  48. extern const struct pinmux_config emifa_pins_cs3[1];
  49. extern const struct pinmux_config emifa_pins_cs4[1];
  50. extern const struct pinmux_config emifa_pins_nand[12];
  51. extern const struct pinmux_config emifa_pins_nor[43];
  52. /* USB pin mux setting */
  53. extern const struct pinmux_config usb_pins[1];
  54. /* MMC pin muxer settings */
  55. extern const struct pinmux_config mmc0_pins_8bit[10];
  56. extern const struct pinmux_config mmc0_pins[6];
  57. #endif