2 * (C) Copyright 2009 Faraday Technology
3 * Po-Yu Chuang <ratbert@faraday-tech.com>
5 * Copyright (C) 2010 Andes Technology Corporation
6 * Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com>
7 * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 #include <faraday/ftpmu010.h>
28 static struct ftpmu010 *pmu = (struct ftpmu010 *)CONFIG_FTPMU010_BASE;
30 void ftpmu010_32768osc_enable(void)
34 /* enable the 32768Hz oscillator */
35 oscc = readl(&pmu->OSCC);
36 oscc &= ~(FTPMU010_OSCC_OSCL_OFF | FTPMU010_OSCC_OSCL_TRI);
37 writel(oscc, &pmu->OSCC);
39 /* wait until ready */
40 while (!(readl(&pmu->OSCC) & FTPMU010_OSCC_OSCL_STABLE))
43 /* select 32768Hz oscillator */
44 oscc = readl(&pmu->OSCC);
45 oscc |= FTPMU010_OSCC_OSCL_RTCLSEL;
46 writel(oscc, &pmu->OSCC);
49 void ftpmu010_dlldis_disable(void)
53 pdllcr0 = readl(&pmu->PDLLCR0);
54 pdllcr0 |= FTPMU010_PDLLCR0_DLLDIS;
55 writel(pdllcr0, &pmu->PDLLCR0);
58 void ftpmu010_sdram_clk_disable(unsigned int cr0)
62 pdllcr0 = readl(&pmu->PDLLCR0);
63 pdllcr0 |= FTPMU010_PDLLCR0_HCLKOUTDIS(cr0);
64 writel(pdllcr0, &pmu->PDLLCR0);