mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-11 05:42:58 +00:00
1537d38619
Uniformize STMicroelectronics copyrights headers for STV0991 related code. Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
46 lines
915 B
C
46 lines
915 B
C
/*
|
|
* Copyright (C) 2014, STMicroelectronics - All Rights Reserved
|
|
* Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __ASM_ARM_ARCH_PERIPH_H
|
|
#define __ASM_ARM_ARCH_PERIPH_H
|
|
|
|
/*
|
|
* Peripherals required for pinmux configuration. List will
|
|
* grow with support for more devices getting added.
|
|
* Numbering based on interrupt table.
|
|
*
|
|
*/
|
|
enum periph_id {
|
|
UART_GPIOC_30_31 = 0,
|
|
UART_GPIOB_16_17,
|
|
ETH_GPIOB_10_31_C_0_4,
|
|
QSPI_CS_CLK_PAD,
|
|
PERIPH_ID_I2C0,
|
|
PERIPH_ID_I2C1,
|
|
PERIPH_ID_I2C2,
|
|
PERIPH_ID_I2C3,
|
|
PERIPH_ID_I2C4,
|
|
PERIPH_ID_I2C5,
|
|
PERIPH_ID_I2C6,
|
|
PERIPH_ID_I2C7,
|
|
PERIPH_ID_SPI0,
|
|
PERIPH_ID_SPI1,
|
|
PERIPH_ID_SPI2,
|
|
PERIPH_ID_SDMMC0,
|
|
PERIPH_ID_SDMMC1,
|
|
PERIPH_ID_SDMMC2,
|
|
PERIPH_ID_SDMMC3,
|
|
PERIPH_ID_I2S1,
|
|
};
|
|
|
|
enum periph_clock {
|
|
UART_CLOCK_CFG = 0,
|
|
ETH_CLOCK_CFG,
|
|
QSPI_CLOCK_CFG,
|
|
};
|
|
|
|
#endif /* __ASM_ARM_ARCH_PERIPH_H */
|