upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
760 B
35 lines
760 B
8 years ago
|
/*
|
||
|
* GXBB clock tree IDs
|
||
|
*/
|
||
|
|
||
|
#ifndef __GXBB_CLKC_H
|
||
|
#define __GXBB_CLKC_H
|
||
|
|
||
|
#define CLKID_CPUCLK 1
|
||
|
#define CLKID_HDMI_PLL 2
|
||
|
#define CLKID_FCLK_DIV2 4
|
||
|
#define CLKID_FCLK_DIV3 5
|
||
|
#define CLKID_FCLK_DIV4 6
|
||
|
#define CLKID_CLK81 12
|
||
|
#define CLKID_MPLL2 15
|
||
|
#define CLKID_SPI 34
|
||
|
#define CLKID_I2C 22
|
||
|
#define CLKID_SAR_ADC 23
|
||
|
#define CLKID_ETH 36
|
||
|
#define CLKID_USB0 50
|
||
|
#define CLKID_USB1 51
|
||
|
#define CLKID_USB 55
|
||
|
#define CLKID_HDMI_PCLK 63
|
||
|
#define CLKID_USB1_DDR_BRIDGE 64
|
||
|
#define CLKID_USB0_DDR_BRIDGE 65
|
||
|
#define CLKID_SANA 69
|
||
|
#define CLKID_GCLK_VENCI_INT0 77
|
||
|
#define CLKID_AO_I2C 93
|
||
|
#define CLKID_SD_EMMC_A 94
|
||
|
#define CLKID_SD_EMMC_B 95
|
||
|
#define CLKID_SD_EMMC_C 96
|
||
|
#define CLKID_SAR_ADC_CLK 97
|
||
|
#define CLKID_SAR_ADC_SEL 98
|
||
|
|
||
|
#endif /* __GXBB_CLKC_H */
|