diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-01-12 23:29:30 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-01-14 15:00:26 +0000 |
commit | 0ad97332e4febd75dbbe8e397334227ad7060573 (patch) | |
tree | f07dd9ac254970a7b746046632180c81d699090c /src/soc/amd/common/block/include | |
parent | e7382991ab449dacb762e515b0b3524754ffef9c (diff) |
soc/amd/piasso/uart: move get_uart_base prototype to common code header
This will result in less code duplication when the common AMD SoC UART
support gets used for more AMD SoCs.
Change-Id: Id1786f32324de3e3947d792c599e2019705c5a85
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49373
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/common/block/include')
-rw-r--r-- | src/soc/amd/common/block/include/amdblocks/uart.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/uart.h b/src/soc/amd/common/block/include/amdblocks/uart.h new file mode 100644 index 0000000000..95d73237f7 --- /dev/null +++ b/src/soc/amd/common/block/include/amdblocks/uart.h @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#ifndef AMD_BLOCK_UART_H +#define AMD_BLOCK_UART_H + +#include <types.h> + +uintptr_t get_uart_base(unsigned int idx); /* get MMIO base address of FCH UART */ + +#endif /* AMD_BLOCK_UART_H */ |