1 /* SPDX-License-Identifier: GPL-2.0-only */
4 #include <amdblocks/acpimmio.h>
5 #include <amdblocks/aoac.h>
6 #include <soc/aoac_defs.h>
7 #include <soc/southbridge.h>
10 #define FCH_AOAC_UART_FOR_CONSOLE \
11 (CONFIG_UART_FOR_CONSOLE == 0 ? FCH_AOAC_DEV_UART0 \
12 : CONFIG_UART_FOR_CONSOLE == 1 ? FCH_AOAC_DEV_UART1 \
13 : CONFIG_UART_FOR_CONSOLE == 2 ? FCH_AOAC_DEV_UART2 \
14 : CONFIG_UART_FOR_CONSOLE == 3 ? FCH_AOAC_DEV_UART3 \
15 : CONFIG_UART_FOR_CONSOLE == 4 ? FCH_AOAC_DEV_UART4 \
17 #if CONFIG(AMD_SOC_CONSOLE_UART) && FCH_AOAC_UART_FOR_CONSOLE == -1
18 # error Unsupported UART_FOR_CONSOLE chosen
22 * Table of devices that need their AOAC registers enabled and waited
23 * upon (usually about .55 milliseconds). Instead of individual delays
24 * waiting for each device to become available, a single delay will be
25 * executed. The console UART is handled separately from this table.
27 * TODO: Find out which I2C controllers we really need to enable here.
29 static const unsigned int aoac_devs
[] = {
38 void wait_for_aoac_enabled(unsigned int dev
)
40 while (!is_aoac_device_enabled(dev
))
44 void enable_aoac_devices(void)
48 for (i
= 0; i
< ARRAY_SIZE(aoac_devs
); i
++)
49 power_on_aoac_device(aoac_devs
[i
]);
51 if (CONFIG(AMD_SOC_CONSOLE_UART
))
52 power_on_aoac_device(FCH_AOAC_UART_FOR_CONSOLE
);
54 /* Wait for AOAC devices to indicate power and clock OK */
55 for (i
= 0; i
< ARRAY_SIZE(aoac_devs
); i
++)
56 wait_for_aoac_enabled(aoac_devs
[i
]);
58 if (CONFIG(AMD_SOC_CONSOLE_UART
))
59 wait_for_aoac_enabled(FCH_AOAC_UART_FOR_CONSOLE
);