mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00

i.MX8MQ is new SOC of NXP's i.MX8M family based on A53. It can provide industry-leading audio, voice and video processing for applications that scale from consumer home audio to industrial building automation and mobile computers this patchset add the basic supoort to boot up the 4 X A53. more feature will be added later. Signed-off-by: Bai Ping <ping.bai@nxp.com>
23 lines
441 B
C
23 lines
441 B
C
/*
|
|
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef IMX_UART_H
|
|
#define IMX_UART_H
|
|
|
|
#include <console.h>
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
typedef struct {
|
|
console_t console;
|
|
uintptr_t base;
|
|
} console_uart_t;
|
|
|
|
int console_uart_register(uintptr_t baseaddr, uint32_t clock, uint32_t baud,
|
|
console_uart_t *console);
|
|
#endif /*__ASSEMBLY__*/
|
|
|
|
#endif /* IMX_UART_H */
|