/* * (C) Copyright 2009 ST-Ericsson * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */ #include #include #include #include #include /* PLLs for clock management registers */ enum { GATED = 0, PLLSOC0, /* pllsw = 001, ffs() = 1 */ PLLSOC1, /* pllsw = 010, ffs() = 2 */ PLLDDR, /* pllsw = 100, ffs() = 3 */ PLLARM, }; static struct pll_freq_regs { int idx; /* index fror pll_name and pll_khz arrays */ uint32_t addr; } pll_freq_regs[] = { {PLLSOC0, PRCM_PLLSOC0_FREQ_REG}, {PLLSOC1, PRCM_PLLSOC1_FREQ_REG}, {PLLDDR, PRCM_PLLDDR_FREQ_REG}, {PLLARM, PRCM_PLLARM_FREQ_REG}, {0, 0}, }; static const char *pll_name[5] = {"GATED", "SOC0", "SOC1", "DDR", "ARM"}; static uint32_t pll_khz[5]; /* use ffs(pllsw(reg)) as index for 0..3 */ static struct clk_mgt_regs { uint32_t addr; uint32_t val; const char *descr; } clk_mgt_regs[] = { /* register content taken from bootrom settings */ {PRCM_ARMCLKFIX_MGT_REG, 0x0120, "ARMCLKFIX"}, /* ena, SOC0/0, ??? */ {PRCM_ACLK_MGT_REG, 0x0125, "ACLK"}, /* ena, SOC0/5, 160 MHz */ {PRCM_SVAMMDSPCLK_MGT_REG, 0x1122, "SVA"}, /* ena, SOC0/2, 400 MHz */ {PRCM_SIAMMDSPCLK_MGT_REG, 0x0022, "SIA"}, /* dis, SOC0/2, 400 MHz */ {PRCM_SAAMMDSPCLK_MGT_REG, 0x0822, "SAA"}, /* dis, SOC0/4, 200 MHz */ {PRCM_SGACLK_MGT_REG, 0x0024, "SGA"}, /* dis, SOC0/4, 200 MHz */ {PRCM_UARTCLK_MGT_REG, 0x0300, "UART"}, /* ena, GATED, CLK38 */ {PRCM_MSPCLK_MGT_REG, 0x0200, "MSP"}, /* dis, GATED, CLK38 */ {PRCM_I2CCLK_MGT_REG, 0x0130, "I2C"}, /* ena, SOC0/16, 50 MHz */ {PRCM_SDMMCCLK_MGT_REG, 0x0130, "SDMMC"}, /* ena, SOC0/16, 50 MHz */ {PRCM_PER1CLK_MGT_REG, 0x126, "PER1"}, /* ena, SOC0/6, 133 MHz */ {PRCM_PER2CLK_MGT_REG, 0x126, "PER2"}, /* ena, SOC0/6, 133 MHz */ {PRCM_PER3CLK_MGT_REG, 0x126, "PER3"}, /* ena, SOC0/6, 133 MHz */ {PRCM_PER5CLK_MGT_REG, 0x126, "PER5"}, /* ena, SOC0/6, 133 MHz */ {PRCM_PER6CLK_MGT_REG, 0x126, "PER6"}, /* ena, SOC0/6, 133 MHz */ {PRCM_PER7CLK_MGT_REG, 0x128, "PER7"}, /* ena, SOC0/8, 100 MHz */ {PRCM_DMACLK_MGT_REG, 0x125, "DMA"}, /* ena, SOC0/5, 160 MHz */ {PRCM_B2R2CLK_MGT_REG, 0x025, "B2R2"}, /* dis, SOC0/5, 160 MHz */ {0, 0, NULL}, }; struct clkrst { unsigned int pcken; unsigned int pckdis; unsigned int kcken; unsigned int kckdis; }; static unsigned int clkrst_base[] = { U8500_CLKRST1_BASE, U8500_CLKRST2_BASE, U8500_CLKRST3_BASE, 0, U8500_CLKRST5_BASE, U8500_CLKRST6_BASE, U8500_CLKRST7_BASE, /* ED only */ }; /* Turn on peripheral clock at PRCC level */ static void clock_enable(int periph, int cluster, int kern) { struct clkrst *clkrst = (struct clkrst *) clkrst_base[periph - 1]; if (kern != -1) writel(1 << kern, &clkrst->kcken); if (cluster != -1) writel(1 << cluster, &clkrst->pcken); } /* Legacy function to allow drivers to enable their clock */ void u8500_clock_enable(int periph, int cluster, int kern) { clock_enable(periph, cluster, kern); } /* Main clock init function. Called from arch_cpu_init() */ void db8500_clocks_init(void) { /* * Enable all clocks. This is u-boot, we can enable it all. There is no * powersave in u-boot. */ clock_enable(1, 9, -1); /* GPIO0 */ if (u8500_is_earlydrop()) clock_enable(2, 12, -1); /* GPIO1 */ else clock_enable(2, 11, -1); /* GPIO1 */ clock_enable(3, 8, -1); /* GPIO2 */ clock_enable(5, 1, -1); /* GPIO3 */ clock_enable(3, 6, 6); /* UART2 */ clock_enable(3, 3, 3); /* I2C0 */ clock_enable(1, 5, 5); /* SDI0 */ clock_enable(2, 4, 2); /* SDI4 */ if (u8500_is_earlydrop()) clock_enable(7, 2, -1); /* MTU0 */ else if (cpu_is_u8500v1()) clock_enable(6, 7, -1); /* MTU0 */ else if (cpu_is_u8500v2()) clock_enable(6, 6, -1); /* MTU0 */ if (!u8500_is_earlydrop()) clock_enable(3, 4, 4); /* SDI2 */ /* * Enabling clocks for all devices which are AMBA devices in the * kernel. Otherwise they will not get probe()'d because the * peripheral ID register will not be powered. */ /* XXX: some of these differ between ED/V1 */ clock_enable(1, 1, 1); /* UART1 */ clock_enable(1, 0, 0); /* UART0 */ clock_enable(3, 2, 2); /* SSP1 */ clock_enable(3, 1, 1); /* SSP0 */ clock_enable(2, 8, -1); /* SPI0 */ clock_enable(2, 5, 3); /* MSP2 */ } /* * get_pll_freq_khz - return PLL frequency in kHz */ static uint32_t get_pll_freq_khz(uint32_t inclk_khz, uint32_t freq_reg) { uint32_t idf, ldf, odf, seldiv, phi; /* * PLLOUTCLK = PHI = (INCLK*LDF)/(2*ODF*IDF) if SELDIV2=0 * PLLOUTCLK = PHI = (INCLK*LDF)/(4*ODF*IDF) if SELDIV2=1 * where: * IDF=R(2:0) (when R=000, IDF=1d) * LDF = 2*D(7:0) (D must be greater than or equal to 6) * ODF = N(5:0) (when N=000000, 0DF=1d) */ idf = (freq_reg & 0x70000) >> 16; ldf = (freq_reg & 0xff) * 2; odf = (freq_reg & 0x3f00) >> 8; seldiv = (freq_reg & 0x01000000) >> 24; phi = (inclk_khz * ldf) / (2 * odf * idf); if (seldiv) phi = phi/2; return phi; } u32 db8500_clock_cpu_khz(void) { u32 reg, phi; reg = readl(PRCM_ARM_CHGCLKREQ_REG); if (reg & 1) return 0; /* External clock */ reg = readl(PRCM_PLLARM_FREQ_REG); phi = get_pll_freq_khz(38400, reg); return phi; } int do_clkinfo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) { uint32_t inclk_khz; uint32_t reg, phi; uint32_t clk_khz; unsigned int clk_sel; struct clk_mgt_regs *clks = clk_mgt_regs; struct pll_freq_regs *plls = pll_freq_regs; /* Parameters are not used */ (void) cmdtp; (void) flag; (void) argc; (void) argv; /* * Go through list of PLLs. * Initialise pll out frequency array (pll_khz) and print frequency. */ inclk_khz = 38400; /* 38.4 MHz */ while (plls->addr) { reg = readl(plls->addr); phi = get_pll_freq_khz(inclk_khz, reg); pll_khz[plls->idx] = phi; printf("%s PLL out frequency: %d.%d Mhz\n", pll_name[plls->idx], phi/1000, phi % 1000); plls++; } /* check ARM clock source */ reg = readl(PRCM_ARM_CHGCLKREQ_REG); printf("A9 running on "); if (reg & 1) printf("external clock"); else printf("ARM PLL"); printf("\n"); /* go through list of clk_mgt_reg */ printf("\n%19s %9s %7s %9s enabled\n", "name(addr)", "value", "PLL", "CLK[MHz]"); while (clks->addr) { reg = readl(clks->addr); /* convert bit position into array index */ clk_sel = ffs((reg >> 5) & 0x7); /* PLLSW[2:0] */ printf("%9s(%08x): %08x", clks->descr, clks->addr, reg); printf(", %6s", pll_name[clk_sel]); if (reg & 0x200) clk_khz = 38400; /* CLK38 is set */ else if ((reg & 0x1f) == 0) /* ARMCLKFIX_MGT is 0x120, e.g. div = 0 ! */ clk_khz = 0; else clk_khz = pll_khz[clk_sel] / (reg & 0x1f); printf(", %4d.%03d", clk_khz / 1000, clk_khz % 1000); printf(", %s\n", (reg & 0x100) ? "ena" : "dis"); clks++; } return 0; } U_BOOT_CMD( clkinfo, 1, 1, do_clkinfo, "print clock info", "" );