Christian Riesch | 588c678 | 2011-11-28 23:46:17 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Pinmux configurations for the DAxxx SoCs |
| 3 | * |
| 4 | * Copyright (C) 2011 OMICRON electronics GmbH |
| 5 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Christian Riesch | 588c678 | 2011-11-28 23:46:17 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef __ASM_ARCH_PINMUX_DEFS_H |
| 10 | #define __ASM_ARCH_PINMUX_DEFS_H |
| 11 | |
| 12 | #include <asm/arch/davinci_misc.h> |
Vishwanathrao Badarkhe, Manish | 213c0eb | 2013-05-29 21:55:11 +0000 | [diff] [blame] | 13 | #include <config.h> |
Christian Riesch | 588c678 | 2011-11-28 23:46:17 +0000 | [diff] [blame] | 14 | |
Vishwanathrao Badarkhe, Manish | 213c0eb | 2013-05-29 21:55:11 +0000 | [diff] [blame] | 15 | /* SPI0 pin muxer settings */ |
| 16 | extern const struct pinmux_config spi0_pins_base[3]; |
| 17 | extern const struct pinmux_config spi0_pins_scs0[1]; |
| 18 | extern const struct pinmux_config spi0_pins_ena[1]; |
| 19 | |
| 20 | /* SPI1 pin muxer settings */ |
Christian Riesch | 588c678 | 2011-11-28 23:46:17 +0000 | [diff] [blame] | 21 | extern const struct pinmux_config spi1_pins_base[3]; |
| 22 | extern const struct pinmux_config spi1_pins_scs0[1]; |
| 23 | |
| 24 | /* UART pin muxer settings */ |
Mikhail Kshevetskiy | 32435c7 | 2012-07-09 08:52:42 +0000 | [diff] [blame] | 25 | extern const struct pinmux_config uart0_pins_txrx[2]; |
Heiko Schocher | 3a2274f | 2013-08-05 16:00:35 +0200 | [diff] [blame] | 26 | extern const struct pinmux_config uart0_pins_rtscts[2]; |
Heiko Schocher | c8f2b6b | 2011-11-29 02:33:44 +0000 | [diff] [blame] | 27 | extern const struct pinmux_config uart1_pins_txrx[2]; |
Christian Riesch | 588c678 | 2011-11-28 23:46:17 +0000 | [diff] [blame] | 28 | extern const struct pinmux_config uart2_pins_txrx[2]; |
| 29 | extern const struct pinmux_config uart2_pins_rtscts[2]; |
| 30 | |
| 31 | /* EMAC pin muxer settings*/ |
Heiko Schocher | 3a2274f | 2013-08-05 16:00:35 +0200 | [diff] [blame] | 32 | extern const struct pinmux_config emac_pins_rmii[8]; |
Vishwanathrao Badarkhe, Manish | 213c0eb | 2013-05-29 21:55:11 +0000 | [diff] [blame] | 33 | extern const struct pinmux_config emac_pins_rmii_clk_source[1]; |
Christian Riesch | 588c678 | 2011-11-28 23:46:17 +0000 | [diff] [blame] | 34 | extern const struct pinmux_config emac_pins_mii[15]; |
| 35 | extern const struct pinmux_config emac_pins_mdio[2]; |
| 36 | |
| 37 | /* I2C pin muxer settings */ |
| 38 | extern const struct pinmux_config i2c0_pins[2]; |
| 39 | extern const struct pinmux_config i2c1_pins[2]; |
| 40 | |
| 41 | /* EMIFA pin muxer settings */ |
Vishwanathrao Badarkhe, Manish | 213c0eb | 2013-05-29 21:55:11 +0000 | [diff] [blame] | 42 | extern const struct pinmux_config emifa_pins[40]; |
| 43 | extern const struct pinmux_config emifa_pins_cs0[1]; |
Christian Riesch | 588c678 | 2011-11-28 23:46:17 +0000 | [diff] [blame] | 44 | extern const struct pinmux_config emifa_pins_cs2[1]; |
| 45 | extern const struct pinmux_config emifa_pins_cs3[1]; |
| 46 | extern const struct pinmux_config emifa_pins_cs4[1]; |
| 47 | extern const struct pinmux_config emifa_pins_nand[12]; |
| 48 | extern const struct pinmux_config emifa_pins_nor[43]; |
| 49 | |
Vishwanathrao Badarkhe, Manish | 213c0eb | 2013-05-29 21:55:11 +0000 | [diff] [blame] | 50 | /* USB pin mux setting */ |
| 51 | extern const struct pinmux_config usb_pins[1]; |
| 52 | |
Lad, Prabhakar | 16787da | 2012-06-24 21:35:15 +0000 | [diff] [blame] | 53 | /* MMC pin muxer settings */ |
Vishwanathrao Badarkhe, Manish | 213c0eb | 2013-05-29 21:55:11 +0000 | [diff] [blame] | 54 | extern const struct pinmux_config mmc0_pins_8bit[10]; |
Lad, Prabhakar | 16787da | 2012-06-24 21:35:15 +0000 | [diff] [blame] | 55 | extern const struct pinmux_config mmc0_pins[6]; |
| 56 | |
Christian Riesch | 588c678 | 2011-11-28 23:46:17 +0000 | [diff] [blame] | 57 | #endif |