blob: 4f5bafb8c2e84363c24891a2d3a0add2d95fb594 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +01002/*
3 * (C) Copyright 2007-2008
Stelian Pop5ee0c7f2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +01005 * Lead Tech Design <www.leadtechdesign.com>
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +01006 */
7
Xu, Hong16c092b2011-08-01 03:56:32 +00008#include <asm/io.h>
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +01009#include <asm/arch/at91_common.h>
Wenyou Yang57b7f292016-02-03 10:16:49 +080010#include <asm/arch/clk.h>
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +010011#include <asm/arch/gpio.h>
Xu, Hong16c092b2011-08-01 03:56:32 +000012
13/*
14 * if CONFIG_AT91_GPIO_PULLUP ist set, keep pullups on on all
15 * peripheral pins. Good to have if hardware is soldered optionally
16 * or in case of SPI no slave is selected. Avoid lines to float
17 * needlessly. Use a short local PUP define.
18 *
19 * Due to errata "TXD floats when CTS is inactive" pullups are always
20 * on for TXD pins.
21 */
22#ifdef CONFIG_AT91_GPIO_PULLUP
23# define PUP CONFIG_AT91_GPIO_PULLUP
24#else
25# define PUP 0
26#endif
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +010027
28void at91_serial0_hw_init(void)
29{
Jens Scharsigb49d15c2010-02-03 22:46:46 +010030 at91_set_a_periph(AT91_PIO_PORTA, 6, 1); /* TXD0 */
Xu, Hong16c092b2011-08-01 03:56:32 +000031 at91_set_a_periph(AT91_PIO_PORTA, 7, PUP); /* RXD0 */
Wenyou Yang57b7f292016-02-03 10:16:49 +080032 at91_periph_clk_enable(ATMEL_ID_USART0);
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +010033}
34
35void at91_serial1_hw_init(void)
36{
Jens Scharsigb49d15c2010-02-03 22:46:46 +010037 at91_set_a_periph(AT91_PIO_PORTA, 11, 1); /* TXD1 */
Xu, Hong16c092b2011-08-01 03:56:32 +000038 at91_set_a_periph(AT91_PIO_PORTA, 12, PUP); /* RXD1 */
Wenyou Yang57b7f292016-02-03 10:16:49 +080039 at91_periph_clk_enable(ATMEL_ID_USART1);
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +010040}
41
42void at91_serial2_hw_init(void)
43{
Jens Scharsigb49d15c2010-02-03 22:46:46 +010044 at91_set_a_periph(AT91_PIO_PORTA, 13, 1); /* TXD2 */
Xu, Hong16c092b2011-08-01 03:56:32 +000045 at91_set_a_periph(AT91_PIO_PORTA, 14, PUP); /* RXD2 */
Wenyou Yang57b7f292016-02-03 10:16:49 +080046 at91_periph_clk_enable(ATMEL_ID_USART2);
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +010047}
48
Xu, Hong16c092b2011-08-01 03:56:32 +000049void at91_seriald_hw_init(void)
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +010050{
Xu, Hong16c092b2011-08-01 03:56:32 +000051 at91_set_a_periph(AT91_PIO_PORTA, 21, PUP); /* DRXD */
Jens Scharsigb49d15c2010-02-03 22:46:46 +010052 at91_set_a_periph(AT91_PIO_PORTA, 22, 1); /* DTXD */
Wenyou Yang57b7f292016-02-03 10:16:49 +080053 at91_periph_clk_enable(ATMEL_ID_SYS);
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +010054}
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020055
Tuomas Tynkkynen1b725202017-10-10 21:59:42 +030056#ifdef CONFIG_ATMEL_SPI
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020057void at91_spi0_hw_init(unsigned long cs_mask)
58{
Xu, Hong16c092b2011-08-01 03:56:32 +000059 at91_set_a_periph(AT91_PIO_PORTA, 25, PUP); /* SPI0_MISO */
60 at91_set_a_periph(AT91_PIO_PORTA, 26, PUP); /* SPI0_MOSI */
61 at91_set_a_periph(AT91_PIO_PORTA, 27, PUP); /* SPI0_SPCK */
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020062
Wenyou Yang57b7f292016-02-03 10:16:49 +080063 at91_periph_clk_enable(ATMEL_ID_SPI);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020064
65 if (cs_mask & (1 << 0)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +010066 at91_set_a_periph(AT91_PIO_PORTA, 28, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020067 }
68 if (cs_mask & (1 << 1)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +010069 at91_set_b_periph(AT91_PIO_PORTB, 7, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020070 }
71 if (cs_mask & (1 << 2)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +010072 at91_set_a_periph(AT91_PIO_PORTD, 8, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020073 }
74 if (cs_mask & (1 << 3)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +010075 at91_set_b_periph(AT91_PIO_PORTD, 9, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020076 }
77 if (cs_mask & (1 << 4)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +010078 at91_set_pio_output(AT91_PIO_PORTA, 28, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020079 }
80 if (cs_mask & (1 << 5)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +010081 at91_set_pio_output(AT91_PIO_PORTB, 7, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020082 }
83 if (cs_mask & (1 << 6)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +010084 at91_set_pio_output(AT91_PIO_PORTD, 8, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020085 }
86 if (cs_mask & (1 << 7)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +010087 at91_set_pio_output(AT91_PIO_PORTD, 9, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020088 }
89}
90#endif
Wu, Joshb12259b2015-02-02 17:51:00 +080091
92#ifdef CONFIG_GENERIC_ATMEL_MCI
93void at91_mci_hw_init(void)
94{
Wu, Joshb12259b2015-02-02 17:51:00 +080095 at91_set_a_periph(AT91_PIO_PORTA, 2, 0); /* MCI CLK */
96 at91_set_a_periph(AT91_PIO_PORTA, 1, 0); /* MCI CDA */
97 at91_set_a_periph(AT91_PIO_PORTA, 0, 0); /* MCI DA0 */
98 at91_set_a_periph(AT91_PIO_PORTA, 3, 0); /* MCI DA1 */
99 at91_set_a_periph(AT91_PIO_PORTA, 4, 0); /* MCI DA2 */
100 at91_set_a_periph(AT91_PIO_PORTA, 5, 0); /* MCI DA3 */
101
Wenyou Yang57b7f292016-02-03 10:16:49 +0800102 at91_periph_clk_enable(ATMEL_ID_MCI);
Wu, Joshb12259b2015-02-02 17:51:00 +0800103}
104#endif