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.
53 lines
1.2 KiB
53 lines
1.2 KiB
/*
|
|
* Copyright (C) ST-Ericsson SA 2009
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_CLOCK
|
|
#define __ASM_ARCH_CLOCK
|
|
|
|
struct prcmu {
|
|
unsigned int armclkfix_mgt;
|
|
unsigned int armclk_mgt;
|
|
unsigned int svammdspclk_mgt;
|
|
unsigned int siammdspclk_mgt;
|
|
unsigned int reserved;
|
|
unsigned int sgaclk_mgt;
|
|
unsigned int uartclk_mgt;
|
|
unsigned int msp02clk_mgt;
|
|
unsigned int i2cclk_mgt;
|
|
unsigned int sdmmcclk_mgt;
|
|
unsigned int slimclk_mgt;
|
|
unsigned int per1clk_mgt;
|
|
unsigned int per2clk_mgt;
|
|
unsigned int per3clk_mgt;
|
|
unsigned int per5clk_mgt;
|
|
unsigned int per6clk_mgt;
|
|
unsigned int per7clk_mgt;
|
|
unsigned int lcdclk_mgt;
|
|
unsigned int reserved1;
|
|
unsigned int bmlclk_mgt;
|
|
unsigned int hsitxclk_mgt;
|
|
unsigned int hsirxclk_mgt;
|
|
unsigned int hdmiclk_mgt;
|
|
unsigned int apeatclk_mgt;
|
|
unsigned int apetraceclk_mgt;
|
|
unsigned int mcdeclk_mgt;
|
|
unsigned int ipi2cclk_mgt;
|
|
unsigned int dsialtclk_mgt;
|
|
unsigned int spare2clk_mgt;
|
|
unsigned int dmaclk_mgt;
|
|
unsigned int b2r2clk_mgt;
|
|
unsigned int tvclk_mgt;
|
|
unsigned int unused[82];
|
|
unsigned int tcr;
|
|
unsigned int unused1[23];
|
|
unsigned int ape_softrst;
|
|
};
|
|
|
|
extern void u8500_clock_enable(int periph, int kern, int cluster);
|
|
|
|
void db8500_clocks_init(void);
|
|
|
|
#endif /* __ASM_ARCH_CLOCK */
|
|
|