mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians/u-boot-atmel
First set of u-boot-atmel fixes for 2020.07 cycle This set includes just two small commits that fix a build warning and add a missing serial node.
This commit is contained in:
@@ -746,6 +746,14 @@
|
|||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
uart4: serial@fc00c000 {
|
||||||
|
compatible = "atmel,at91sam9260-usart";
|
||||||
|
reg = <0xfc00c000 0x100>;
|
||||||
|
clocks = <&uart4_clk>;
|
||||||
|
clock-names = "usart";
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
i2c1: i2c@fc028000 {
|
i2c1: i2c@fc028000 {
|
||||||
compatible = "atmel,sama5d2-i2c";
|
compatible = "atmel,sama5d2-i2c";
|
||||||
reg = <0xfc028000 0x100>;
|
reg = <0xfc028000 0x100>;
|
||||||
|
@@ -20,10 +20,12 @@ extern void at91_pda_detect(void);
|
|||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
|
#ifdef CONFIG_CMD_USB
|
||||||
static void board_usb_hw_init(void)
|
static void board_usb_hw_init(void)
|
||||||
{
|
{
|
||||||
atmel_pio4_set_pio_output(AT91_PIO_PORTA, 27, 1);
|
atmel_pio4_set_pio_output(AT91_PIO_PORTA, 27, 1);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_BOARD_LATE_INIT
|
#ifdef CONFIG_BOARD_LATE_INIT
|
||||||
int board_late_init(void)
|
int board_late_init(void)
|
||||||
|
@@ -76,10 +76,12 @@ int board_late_init(void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_CMD_USB
|
||||||
static void board_usb_hw_init(void)
|
static void board_usb_hw_init(void)
|
||||||
{
|
{
|
||||||
atmel_pio4_set_pio_output(AT91_PIO_PORTB, 12, ATMEL_PIO_PUEN_MASK);
|
atmel_pio4_set_pio_output(AT91_PIO_PORTB, 12, ATMEL_PIO_PUEN_MASK);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_DEBUG_UART_BOARD_INIT
|
#ifdef CONFIG_DEBUG_UART_BOARD_INIT
|
||||||
static void board_uart0_hw_init(void)
|
static void board_uart0_hw_init(void)
|
||||||
|
@@ -20,10 +20,12 @@ extern void at91_pda_detect(void);
|
|||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
|
#ifdef CONFIG_CMD_USB
|
||||||
static void board_usb_hw_init(void)
|
static void board_usb_hw_init(void)
|
||||||
{
|
{
|
||||||
atmel_pio4_set_pio_output(AT91_PIO_PORTB, 10, 1);
|
atmel_pio4_set_pio_output(AT91_PIO_PORTB, 10, 1);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_BOARD_LATE_INIT
|
#ifdef CONFIG_BOARD_LATE_INIT
|
||||||
int board_late_init(void)
|
int board_late_init(void)
|
||||||
|
Reference in New Issue
Block a user