blob: beaf0d601a3c6ef3ad08ba17a06b7a5e5001236f [file] [log] [blame]
Christian Riesch588c6782011-11-28 23:46:17 +00001/*
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
21#ifndef __ASM_ARCH_PINMUX_DEFS_H
22#define __ASM_ARCH_PINMUX_DEFS_H
23
24#include <asm/arch/davinci_misc.h>
Vishwanathrao Badarkhe, Manish213c0eb2013-05-29 21:55:11 +000025#include <config.h>
Christian Riesch588c6782011-11-28 23:46:17 +000026
Vishwanathrao Badarkhe, Manish213c0eb2013-05-29 21:55:11 +000027/* SPI0 pin muxer settings */
28extern const struct pinmux_config spi0_pins_base[3];
29extern const struct pinmux_config spi0_pins_scs0[1];
30extern const struct pinmux_config spi0_pins_ena[1];
31
32/* SPI1 pin muxer settings */
Christian Riesch588c6782011-11-28 23:46:17 +000033extern const struct pinmux_config spi1_pins_base[3];
34extern const struct pinmux_config spi1_pins_scs0[1];
35
36/* UART pin muxer settings */
Mikhail Kshevetskiy32435c72012-07-09 08:52:42 +000037extern const struct pinmux_config uart0_pins_txrx[2];
Heiko Schocherc8f2b6b2011-11-29 02:33:44 +000038extern const struct pinmux_config uart1_pins_txrx[2];
Christian Riesch588c6782011-11-28 23:46:17 +000039extern const struct pinmux_config uart2_pins_txrx[2];
40extern const struct pinmux_config uart2_pins_rtscts[2];
41
42/* EMAC pin muxer settings*/
43extern const struct pinmux_config emac_pins_rmii[7];
Vishwanathrao Badarkhe, Manish213c0eb2013-05-29 21:55:11 +000044extern const struct pinmux_config emac_pins_rmii_clk_source[1];
Christian Riesch588c6782011-11-28 23:46:17 +000045extern const struct pinmux_config emac_pins_mii[15];
46extern const struct pinmux_config emac_pins_mdio[2];
47
48/* I2C pin muxer settings */
49extern const struct pinmux_config i2c0_pins[2];
50extern const struct pinmux_config i2c1_pins[2];
51
52/* EMIFA pin muxer settings */
Vishwanathrao Badarkhe, Manish213c0eb2013-05-29 21:55:11 +000053extern const struct pinmux_config emifa_pins[40];
54extern const struct pinmux_config emifa_pins_cs0[1];
Christian Riesch588c6782011-11-28 23:46:17 +000055extern const struct pinmux_config emifa_pins_cs2[1];
56extern const struct pinmux_config emifa_pins_cs3[1];
57extern const struct pinmux_config emifa_pins_cs4[1];
58extern const struct pinmux_config emifa_pins_nand[12];
59extern const struct pinmux_config emifa_pins_nor[43];
60
Vishwanathrao Badarkhe, Manish213c0eb2013-05-29 21:55:11 +000061/* USB pin mux setting */
62extern const struct pinmux_config usb_pins[1];
63
Lad, Prabhakar16787da2012-06-24 21:35:15 +000064/* MMC pin muxer settings */
Vishwanathrao Badarkhe, Manish213c0eb2013-05-29 21:55:11 +000065extern const struct pinmux_config mmc0_pins_8bit[10];
Lad, Prabhakar16787da2012-06-24 21:35:15 +000066extern const struct pinmux_config mmc0_pins[6];
67
Christian Riesch588c6782011-11-28 23:46:17 +000068#endif