u8500_href.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  1. /*
  2. * Copyright (C) ST-Ericsson SA 2009
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. #include <config.h>
  19. #include <common.h>
  20. #include <malloc.h>
  21. #include <i2c.h>
  22. #include <asm/types.h>
  23. #include <asm/io.h>
  24. #include <asm/errno.h>
  25. #include <asm/arch/clock.h>
  26. #include <asm/arch/gpio.h>
  27. #include <asm/arch/hardware.h>
  28. #include <asm/arch/sys_proto.h>
  29. #include <asm/arch/prcmu.h>
  30. #ifdef CONFIG_MMC
  31. #include "../../../drivers/mmc/arm_pl180_mmci.h"
  32. #endif
  33. #define NOMADIK_PER4_BASE (0x80150000)
  34. #define NOMADIK_BACKUPRAM0_BASE (NOMADIK_PER4_BASE + 0x00000)
  35. #define NOMADIK_BACKUPRAM1_BASE (NOMADIK_PER4_BASE + 0x01000)
  36. /* Power, Reset, Clock Management Unit */
  37. /*
  38. * SVA: Smart Video Accelerator
  39. * SIA: Smart Imaging Accelerator
  40. * SGA: Smart Graphic accelerator
  41. * B2R2: Graphic blitter
  42. */
  43. #define PRCM_ARMCLKFIX_MGT_REG (PRCMU_BASE + 0x000)
  44. #define PRCM_ACLK_MGT_REG (PRCMU_BASE + 0x004)
  45. #define PRCM_SVAMMDSPCLK_MGT_REG (PRCMU_BASE + 0x008)
  46. #define PRCM_SIAMMDSPCLK_MGT_REG (PRCMU_BASE + 0x00C)
  47. #define PRCM_SAAMMDSPCLK_MGT_REG (PRCMU_BASE + 0x010)
  48. #define PRCM_SGACLK_MGT_REG (PRCMU_BASE + 0x014)
  49. #define PRCM_UARTCLK_MGT_REG (PRCMU_BASE + 0x018)
  50. #define PRCM_MSPCLK_MGT_REG (PRCMU_BASE + 0x01C)
  51. #define PRCM_I2CCLK_MGT_REG (PRCMU_BASE + 0x020)
  52. #define PRCM_SDMMCCLK_MGT_REG (PRCMU_BASE + 0x024)
  53. #define PRCM_SLIMCLK_MGT_REG (PRCMU_BASE + 0x028)
  54. #define PRCM_PER1CLK_MGT_REG (PRCMU_BASE + 0x02C)
  55. #define PRCM_PER2CLK_MGT_REG (PRCMU_BASE + 0x030)
  56. #define PRCM_PER3CLK_MGT_REG (PRCMU_BASE + 0x034)
  57. #define PRCM_PER5CLK_MGT_REG (PRCMU_BASE + 0x038)
  58. #define PRCM_PER6CLK_MGT_REG (PRCMU_BASE + 0x03C)
  59. #define PRCM_PER7CLK_MGT_REG (PRCMU_BASE + 0x040)
  60. #define PRCM_DMACLK_MGT_REG (PRCMU_BASE + 0x074)
  61. #define PRCM_B2R2CLK_MGT_REG (PRCMU_BASE + 0x078)
  62. #define PRCM_PLLSOC0_FREQ_REG (PRCMU_BASE + 0x080)
  63. #define PRCM_PLLSOC1_FREQ_REG (PRCMU_BASE + 0x084)
  64. #define PRCM_PLLARM_FREQ_REG (PRCMU_BASE + 0x088)
  65. #define PRCM_PLLDDR_FREQ_REG (PRCMU_BASE + 0x08C)
  66. #define PRCM_ARM_CHGCLKREQ_REG (PRCMU_BASE + 0x114)
  67. #define PRCM_TCR (PRCMU_BASE + 0x1C8)
  68. /*
  69. * Memory controller register
  70. */
  71. #define DMC_BASE_ADDR 0x80156000
  72. #define DMC_CTL_97 (DMC_BASE_ADDR + 0x184)
  73. int board_id; /* set in board_late_init() */
  74. /* PLLs for clock management registers */
  75. enum {
  76. GATED = 0,
  77. PLLSOC0, /* pllsw = 001, ffs() = 1 */
  78. PLLSOC1, /* pllsw = 010, ffs() = 2 */
  79. PLLDDR, /* pllsw = 100, ffs() = 3 */
  80. PLLARM,
  81. };
  82. static struct pll_freq_regs {
  83. int idx; /* index fror pll_name and pll_khz arrays */
  84. uint32_t addr;
  85. } pll_freq_regs[] = {
  86. {PLLSOC0, PRCM_PLLSOC0_FREQ_REG},
  87. {PLLSOC1, PRCM_PLLSOC1_FREQ_REG},
  88. {PLLDDR, PRCM_PLLDDR_FREQ_REG},
  89. {PLLARM, PRCM_PLLARM_FREQ_REG},
  90. {0, 0},
  91. };
  92. static const char *pll_name[5] = {"GATED", "SOC0", "SOC1", "DDR", "ARM"};
  93. static uint32_t pll_khz[5]; /* use ffs(pllsw(reg)) as index for 0..3 */
  94. static struct clk_mgt_regs {
  95. uint32_t addr;
  96. uint32_t val;
  97. const char *descr;
  98. } clk_mgt_regs[] = {
  99. /* register content taken from bootrom settings */
  100. {PRCM_ARMCLKFIX_MGT_REG, 0x0120, "ARMCLKFIX"}, /* ena, SOC0/0, ??? */
  101. {PRCM_ACLK_MGT_REG, 0x0125, "ACLK"}, /* ena, SOC0/5, 160 MHz */
  102. {PRCM_SVAMMDSPCLK_MGT_REG, 0x1122, "SVA"}, /* ena, SOC0/2, 400 MHz */
  103. {PRCM_SIAMMDSPCLK_MGT_REG, 0x0022, "SIA"}, /* dis, SOC0/2, 400 MHz */
  104. {PRCM_SAAMMDSPCLK_MGT_REG, 0x0822, "SAA"}, /* dis, SOC0/4, 200 MHz */
  105. {PRCM_SGACLK_MGT_REG, 0x0024, "SGA"}, /* dis, SOC0/4, 200 MHz */
  106. {PRCM_UARTCLK_MGT_REG, 0x0300, "UART"}, /* ena, GATED, CLK38 */
  107. {PRCM_MSPCLK_MGT_REG, 0x0200, "MSP"}, /* dis, GATED, CLK38 */
  108. {PRCM_I2CCLK_MGT_REG, 0x0130, "I2C"}, /* ena, SOC0/16, 50 MHz */
  109. {PRCM_SDMMCCLK_MGT_REG, 0x0130, "SDMMC"}, /* ena, SOC0/16, 50 MHz */
  110. {PRCM_PER1CLK_MGT_REG, 0x126, "PER1"}, /* ena, SOC0/6, 133 MHz */
  111. {PRCM_PER2CLK_MGT_REG, 0x126, "PER2"}, /* ena, SOC0/6, 133 MHz */
  112. {PRCM_PER3CLK_MGT_REG, 0x126, "PER3"}, /* ena, SOC0/6, 133 MHz */
  113. {PRCM_PER5CLK_MGT_REG, 0x126, "PER5"}, /* ena, SOC0/6, 133 MHz */
  114. {PRCM_PER6CLK_MGT_REG, 0x126, "PER6"}, /* ena, SOC0/6, 133 MHz */
  115. {PRCM_PER7CLK_MGT_REG, 0x128, "PER7"}, /* ena, SOC0/8, 100 MHz */
  116. {PRCM_DMACLK_MGT_REG, 0x125, "DMA"}, /* ena, SOC0/5, 160 MHz */
  117. {PRCM_B2R2CLK_MGT_REG, 0x025, "B2R2"}, /* dis, SOC0/5, 160 MHz */
  118. {0, 0, NULL},
  119. };
  120. static void init_regs(void);
  121. DECLARE_GLOBAL_DATA_PTR;
  122. #if defined(CONFIG_SHOW_BOOT_PROGRESS)
  123. void show_boot_progress(int progress)
  124. {
  125. printf("Boot reached stage %d\n", progress);
  126. }
  127. #endif
  128. /*
  129. * Miscellaneous platform dependent initialisations
  130. */
  131. int board_early_init_f(void)
  132. {
  133. init_regs();
  134. return 0;
  135. }
  136. int board_init(void)
  137. {
  138. uint32_t unused_cols_rows;
  139. unsigned int nrows;
  140. unsigned int ncols;
  141. gd->bd->bi_arch_number = 0x1A4;
  142. gd->bd->bi_boot_params = 0x00000100;
  143. gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
  144. /*
  145. * Assumption: 2 CS active, both CS have same layout.
  146. * 15 rows max, 11 cols max (controller spec).
  147. * memory chip has 8 banks, I/O width 32 bit.
  148. * The correct way would be to read MR#8: I/O width and density,
  149. * but this requires locking against the PRCMU firmware.
  150. * Simplified approach:
  151. * Read number of unused rows and columns from mem controller.
  152. * size = nCS x 2^(rows+cols) x nbanks x buswidth_bytes
  153. */
  154. unused_cols_rows = readl(DMC_CTL_97);
  155. nrows = 15 - (unused_cols_rows & 0x07);
  156. ncols = 11 - ((unused_cols_rows & 0x0700) >> 8);
  157. gd->bd->bi_dram[0].size = 2 * (1 << (nrows + ncols)) * 8 * 4;
  158. icache_enable();
  159. return 0;
  160. }
  161. int dram_init(void)
  162. {
  163. gd->ram_size = PHYS_SDRAM_SIZE_1;
  164. return 0;
  165. }
  166. unsigned int addr_vall_arr[] = {
  167. 0x8011F000, 0x0000FFFF, /* Clocks for HSI TODO: Enable reqd only */
  168. 0x8011F008, 0x00001CFF, /* Clocks for HSI TODO: Enable reqd only */
  169. 0x8000F000, 0x00007FFF, /* Clocks for I2C TODO: Enable reqd only */
  170. 0x8000F008, 0x00007FFF, /* Clocks for I2C TODO: Enable reqd only */
  171. 0x80157020, 0x00000150, /* I2C 48MHz clock */
  172. 0x8012F000, 0x00007FFF, /* Clocks for SD TODO: Enable reqd only */
  173. 0x8012F008, 0x00007FFF, /* Clocks for SD TODO: Enable reqd only */
  174. 0xA03DF000, 0x0000000D, /* Clock for MTU Timers */
  175. 0x8011E00C, 0x00000000, /* GPIO ALT FUNC for EMMC */
  176. 0x8011E004, 0x0000FFE0, /* GPIO ALT FUNC for EMMC */
  177. 0x8011E020, 0x0000FFE0, /* GPIO ALT FUNC for EMMC */
  178. 0x8011E024, 0x00000000, /* GPIO ALT FUNC for EMMC */
  179. 0x8012E000, 0x20000000, /* GPIO ALT FUNC for UART */
  180. 0x8012E00C, 0x00000000, /* GPIO ALT FUNC for SD */
  181. 0x8012E004, 0x0FFC0000, /* GPIO ALT FUNC for SD */
  182. 0x8012E020, 0x60000000, /* GPIO ALT FUNC for SD */
  183. 0x8012E024, 0x60000000, /* GPIO ALT FUNC for SD */
  184. 0x801571E4, 0x0000000C, /* PRCMU settings for B2R2,
  185. PRCM_APE_RESETN_SET_REG */
  186. 0x80157024, 0x00000130, /* PRCMU settings for EMMC/SD */
  187. 0xA03FF000, 0x00000003, /* USB */
  188. 0xA03FF008, 0x00000001, /* USB */
  189. 0xA03FE00C, 0x00000000, /* USB */
  190. 0xA03FE020, 0x00000FFF, /* USB */
  191. 0xA03FE024, 0x00000000 /* USB */
  192. };
  193. #ifdef CONFIG_BOARD_LATE_INIT
  194. /*
  195. * called after all initialisation were done, but before the generic
  196. * mmc_initialize().
  197. */
  198. int board_late_init(void)
  199. {
  200. uchar byte;
  201. /*
  202. * Determine and set board_id environment variable
  203. * 0: mop500, 1: href500
  204. * Above boards have different GPIO expander chips which we can
  205. * distinguish by the chip id.
  206. *
  207. * The board_id environment variable is needed for the Linux bootargs.
  208. */
  209. (void) i2c_set_bus_num(0);
  210. (void) i2c_read(CONFIG_SYS_I2C_GPIOE_ADDR, 0x80, 1, &byte, 1);
  211. if (byte == 0x01) {
  212. board_id = 0;
  213. setenv("board_id", "0");
  214. } else {
  215. board_id = 1;
  216. setenv("board_id", "1");
  217. }
  218. #ifdef CONFIG_MMC
  219. u8500_mmc_power_init();
  220. /*
  221. * config extended GPIO pins for level shifter and
  222. * SDMMC_ENABLE
  223. */
  224. if (board_id == 0) {
  225. /* MOP500 */
  226. byte = 0x0c;
  227. (void) i2c_write(CONFIG_SYS_I2C_GPIOE_ADDR, 0x89, 1, &byte, 1);
  228. (void) i2c_write(CONFIG_SYS_I2C_GPIOE_ADDR, 0x83, 1, &byte, 1);
  229. } else {
  230. /* HREF */
  231. /* set the direction of GPIO KPY9 and KPY10 */
  232. byte = 0x06;
  233. (void) i2c_write(CONFIG_SYS_I2C_GPIOE_ADDR, 0xC8, 1, &byte, 1);
  234. /* must be a multibyte access */
  235. (void) i2c_write(CONFIG_SYS_I2C_GPIOE_ADDR, 0xC4, 1,
  236. (uchar []) {0x06, 0x06}, 2);
  237. }
  238. #endif /* CONFIG_MMC */
  239. /*
  240. * Create a memargs variable which points uses either the memargs256 or
  241. * memargs512 environment variable, depending on the memory size.
  242. * memargs is used to build the bootargs, memargs256 and memargs512 are
  243. * stored in the environment.
  244. */
  245. if (gd->bd->bi_dram[0].size == 0x10000000) {
  246. setenv("memargs", "setenv bootargs ${bootargs} ${memargs256}");
  247. setenv("mem", "256M");
  248. } else {
  249. setenv("memargs", "setenv bootargs ${bootargs} ${memargs512}");
  250. setenv("mem", "512M");
  251. }
  252. return 0;
  253. }
  254. #endif /* CONFIG_BOARD_LATE_INIT */
  255. static void early_gpio_setup(struct gpio_register *gpio_reg, u32 bits)
  256. {
  257. writel(readl(&gpio_reg->gpio_dats) | bits, &gpio_reg->gpio_dats);
  258. writel(readl(&gpio_reg->gpio_pdis) & ~bits, &gpio_reg->gpio_pdis);
  259. }
  260. static void init_regs(void)
  261. {
  262. /* FIXME Remove magic register array settings for ED also */
  263. struct prcmu *prcmu = (struct prcmu *) U8500_PRCMU_BASE;
  264. /* Enable timers */
  265. writel(1 << 17, &prcmu->tcr);
  266. u8500_prcmu_enable(&prcmu->per1clk_mgt);
  267. u8500_prcmu_enable(&prcmu->per2clk_mgt);
  268. u8500_prcmu_enable(&prcmu->per3clk_mgt);
  269. u8500_prcmu_enable(&prcmu->per5clk_mgt);
  270. u8500_prcmu_enable(&prcmu->per6clk_mgt);
  271. u8500_prcmu_enable(&prcmu->per7clk_mgt);
  272. u8500_prcmu_enable(&prcmu->uartclk_mgt);
  273. u8500_prcmu_enable(&prcmu->i2cclk_mgt);
  274. u8500_prcmu_enable(&prcmu->sdmmcclk_mgt);
  275. u8500_clock_enable(1, 9, -1); /* GPIO0 */
  276. u8500_clock_enable(2, 11, -1); /* GPIO1 */
  277. u8500_clock_enable(3, 8, -1); /* GPIO2 */
  278. u8500_clock_enable(5, 1, -1); /* GPIO3 */
  279. u8500_clock_enable(3, 6, 6); /* UART2 */
  280. gpio_altfuncenable(GPIO_ALT_I2C_0, "I2C0");
  281. u8500_clock_enable(3, 3, 3); /* I2C0 */
  282. early_gpio_setup((struct gpio_register *)U8500_GPIO_0_BASE, 0x60000000);
  283. gpio_altfuncenable(GPIO_ALT_UART_2, "UART2");
  284. early_gpio_setup((struct gpio_register *)U8500_GPIO_6_BASE, 0x0000ffe0);
  285. gpio_altfuncenable(GPIO_ALT_EMMC, "EMMC");
  286. early_gpio_setup((struct gpio_register *)U8500_GPIO_0_BASE, 0x0000ffe0);
  287. gpio_altfuncenable(GPIO_ALT_SD_CARD0, "SDCARD");
  288. u8500_clock_enable(1, 5, 5); /* SDI0 */
  289. u8500_clock_enable(2, 4, 2); /* SDI4 */
  290. u8500_clock_enable(6, 7, -1); /* MTU0 */
  291. u8500_clock_enable(3, 4, 4); /* SDI2 */
  292. early_gpio_setup((struct gpio_register *)U8500_GPIO_4_BASE, 0x000007ff);
  293. gpio_altfuncenable(GPIO_ALT_POP_EMMC, "EMMC");
  294. /*
  295. * Enabling clocks for all devices which are AMBA devices in the
  296. * kernel. Otherwise they will not get probe()'d because the
  297. * peripheral ID register will not be powered.
  298. */
  299. /* XXX: some of these differ between ED/V1 */
  300. u8500_clock_enable(1, 1, 1); /* UART1 */
  301. u8500_clock_enable(1, 0, 0); /* UART0 */
  302. u8500_clock_enable(3, 2, 2); /* SSP1 */
  303. u8500_clock_enable(3, 1, 1); /* SSP0 */
  304. u8500_clock_enable(2, 8, -1); /* SPI0 */
  305. u8500_clock_enable(2, 5, 3); /* MSP2 */
  306. }
  307. #ifdef CONFIG_MMC
  308. static int u8500_mmci_board_init(void)
  309. {
  310. enum gpio_error error;
  311. struct gpio_register *gpio_base_address;
  312. gpio_base_address = (void *)(U8500_GPIO_0_BASE);
  313. gpio_base_address->gpio_dats |= 0xFFC0000;
  314. gpio_base_address->gpio_pdis &= ~0xFFC0000;
  315. /* save the GPIO0 AFSELA register */
  316. error = gpio_altfuncenable(GPIO_ALT_SD_CARD0, "MMC");
  317. if (error != GPIO_OK) {
  318. printf("u8500_mmci_board_init() gpio_altfuncenable failed\n");
  319. return -ENODEV;
  320. }
  321. return 0;
  322. }
  323. int board_mmc_init(bd_t *bd)
  324. {
  325. struct pl180_mmc_host *host;
  326. if (u8500_mmci_board_init())
  327. return -ENODEV;
  328. host = malloc(sizeof(struct pl180_mmc_host));
  329. if (!host)
  330. return -ENOMEM;
  331. memset(host, 0, sizeof(*host));
  332. strcpy(host->name, "MMC");
  333. host->base = (struct sdi_registers *)CONFIG_ARM_PL180_MMCI_BASE;
  334. host->pwr_init = INIT_PWR;
  335. host->clkdiv_init = SDI_CLKCR_CLKDIV_INIT_V1 | SDI_CLKCR_CLKEN;
  336. host->voltages = VOLTAGE_WINDOW_MMC;
  337. host->caps = 0;
  338. host->clock_in = ARM_MCLK;
  339. host->clock_min = ARM_MCLK / (2 * (SDI_CLKCR_CLKDIV_INIT_V1 + 1));
  340. host->clock_max = CONFIG_ARM_PL180_MMCI_CLOCK_FREQ;
  341. return arm_pl180_mmci_init(host);
  342. }
  343. #endif
  344. /*
  345. * get_pll_freq_khz - return PLL frequency in kHz
  346. */
  347. static uint32_t get_pll_freq_khz(uint32_t inclk_khz, uint32_t freq_reg)
  348. {
  349. uint32_t idf, ldf, odf, seldiv, phi;
  350. /*
  351. * PLLOUTCLK = PHI = (INCLK*LDF)/(2*ODF*IDF) if SELDIV2=0
  352. * PLLOUTCLK = PHI = (INCLK*LDF)/(4*ODF*IDF) if SELDIV2=1
  353. * where:
  354. * IDF=R(2:0) (when R=000, IDF=1d)
  355. * LDF = 2*D(7:0) (D must be greater than or equal to 6)
  356. * ODF = N(5:0) (when N=000000, 0DF=1d)
  357. */
  358. idf = (freq_reg & 0x70000) >> 16;
  359. ldf = (freq_reg & 0xff) * 2;
  360. odf = (freq_reg & 0x3f00) >> 8;
  361. seldiv = (freq_reg & 0x01000000) >> 24;
  362. phi = (inclk_khz * ldf) / (2 * odf * idf);
  363. if (seldiv)
  364. phi = phi/2;
  365. return phi;
  366. }
  367. int do_clkinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  368. {
  369. uint32_t inclk_khz;
  370. uint32_t reg, phi;
  371. uint32_t clk_khz;
  372. unsigned int clk_sel;
  373. struct clk_mgt_regs *clks = clk_mgt_regs;
  374. struct pll_freq_regs *plls = pll_freq_regs;
  375. /*
  376. * Go through list of PLLs.
  377. * Initialise pll out frequency array (pll_khz) and print frequency.
  378. */
  379. inclk_khz = 38400; /* 38.4 MHz */
  380. while (plls->addr) {
  381. reg = readl(plls->addr);
  382. phi = get_pll_freq_khz(inclk_khz, reg);
  383. pll_khz[plls->idx] = phi;
  384. printf("%s PLL out frequency: %d.%d Mhz\n",
  385. pll_name[plls->idx], phi/1000, phi % 1000);
  386. plls++;
  387. }
  388. /* check ARM clock source */
  389. reg = readl(PRCM_ARM_CHGCLKREQ_REG);
  390. printf("A9 running on %s\n",
  391. (reg & 1) ? "external clock" : "ARM PLL");
  392. /* go through list of clk_mgt_reg */
  393. printf("\n%19s %9s %7s %9s enabled\n",
  394. "name(addr)", "value", "PLL", "CLK[MHz]");
  395. while (clks->addr) {
  396. reg = readl(clks->addr);
  397. /* convert bit position into array index */
  398. clk_sel = ffs((reg >> 5) & 0x7); /* PLLSW[2:0] */
  399. if (reg & 0x200)
  400. clk_khz = 38400; /* CLK38 is set */
  401. else if ((reg & 0x1f) == 0)
  402. /* ARMCLKFIX_MGT is 0x120, e.g. div = 0 ! */
  403. clk_khz = 0;
  404. else
  405. clk_khz = pll_khz[clk_sel] / (reg & 0x1f);
  406. printf("%9s(%08x): %08x, %6s, %4d.%03d, %s\n",
  407. clks->descr, clks->addr, reg, pll_name[clk_sel],
  408. clk_khz / 1000, clk_khz % 1000,
  409. (reg & 0x100) ? "ena" : "dis");
  410. clks++;
  411. }
  412. return 0;
  413. }
  414. U_BOOT_CMD(
  415. clkinfo, 1, 1, do_clkinfo,
  416. "print clock info",
  417. ""
  418. );