pm.c 2.8 KB
Newer Older
1 2 3 4 5 6 7 8
/*
 * Copyright 2008 Cavium Networks
 *
 * This file is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License, Version 2, as
 * published by the Free Software Foundation.
 */

9 10
#include <linux/init.h>
#include <linux/module.h>
11
#include <linux/io.h>
12
#include <linux/delay.h>
A
Arun Sharma 已提交
13
#include <linux/atomic.h>
14
#include <mach/cns3xxx.h>
15
#include <mach/pm.h>
16
#include "core.h"
17 18 19

void cns3xxx_pwr_clk_en(unsigned int block)
{
20 21 22 23
	u32 reg = __raw_readl(PM_CLK_GATE_REG);

	reg |= (block & PM_CLK_GATE_REG_MASK);
	__raw_writel(reg, PM_CLK_GATE_REG);
24
}
25 26 27 28 29 30 31 32 33 34
EXPORT_SYMBOL(cns3xxx_pwr_clk_en);

void cns3xxx_pwr_clk_dis(unsigned int block)
{
	u32 reg = __raw_readl(PM_CLK_GATE_REG);

	reg &= ~(block & PM_CLK_GATE_REG_MASK);
	__raw_writel(reg, PM_CLK_GATE_REG);
}
EXPORT_SYMBOL(cns3xxx_pwr_clk_dis);
35 36 37

void cns3xxx_pwr_power_up(unsigned int block)
{
38 39 40 41
	u32 reg = __raw_readl(PM_PLL_HM_PD_CTRL_REG);

	reg &= ~(block & CNS3XXX_PWR_PLL_ALL);
	__raw_writel(reg, PM_PLL_HM_PD_CTRL_REG);
42 43 44 45

	/* Wait for 300us for the PLL output clock locked. */
	udelay(300);
};
46
EXPORT_SYMBOL(cns3xxx_pwr_power_up);
47 48 49

void cns3xxx_pwr_power_down(unsigned int block)
{
50 51
	u32 reg = __raw_readl(PM_PLL_HM_PD_CTRL_REG);

52
	/* write '1' to power down */
53 54
	reg |= (block & CNS3XXX_PWR_PLL_ALL);
	__raw_writel(reg, PM_PLL_HM_PD_CTRL_REG);
55
};
56
EXPORT_SYMBOL(cns3xxx_pwr_power_down);
57 58 59

static void cns3xxx_pwr_soft_rst_force(unsigned int block)
{
60 61
	u32 reg = __raw_readl(PM_SOFT_RST_REG);

62 63 64 65 66
	/*
	 * bit 0, 28, 29 => program low to reset,
	 * the other else program low and then high
	 */
	if (block & 0x30000001) {
67
		reg &= ~(block & PM_SOFT_RST_REG_MASK);
68
	} else {
69
		reg &= ~(block & PM_SOFT_RST_REG_MASK);
70
		__raw_writel(reg, PM_SOFT_RST_REG);
71
		reg |= (block & PM_SOFT_RST_REG_MASK);
72
	}
73 74

	__raw_writel(reg, PM_SOFT_RST_REG);
75
}
76
EXPORT_SYMBOL(cns3xxx_pwr_soft_rst_force);
77 78 79 80 81 82 83 84 85 86 87 88 89

void cns3xxx_pwr_soft_rst(unsigned int block)
{
	static unsigned int soft_reset;

	if (soft_reset & block) {
		/* SPI/I2C/GPIO use the same block, reset once. */
		return;
	} else {
		soft_reset |= block;
	}
	cns3xxx_pwr_soft_rst_force(block);
}
90
EXPORT_SYMBOL(cns3xxx_pwr_soft_rst);
91

92
void cns3xxx_restart(char mode, const char *cmd)
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
{
	/*
	 * To reset, we hit the on-board reset register
	 * in the system FPGA.
	 */
	cns3xxx_pwr_soft_rst(CNS3XXX_PWR_SOFTWARE_RST(GLOBAL));
}

/*
 * cns3xxx_cpu_clock - return CPU/L2 clock
 *  aclk: cpu clock/2
 *  hclk: cpu clock/4
 *  pclk: cpu clock/8
 */
int cns3xxx_cpu_clock(void)
{
109
	u32 reg = __raw_readl(PM_CLK_CTRL_REG);
110 111 112 113
	int cpu;
	int cpu_sel;
	int div_sel;

114 115
	cpu_sel = (reg >> PM_CLK_CTRL_REG_OFFSET_PLL_CPU_SEL) & 0xf;
	div_sel = (reg >> PM_CLK_CTRL_REG_OFFSET_CPU_CLK_DIV) & 0x3;
116 117 118 119 120

	cpu = (300 + ((cpu_sel / 3) * 100) + ((cpu_sel % 3) * 33)) >> div_sel;

	return cpu;
}
121
EXPORT_SYMBOL(cns3xxx_cpu_clock);
122 123 124

atomic_t usb_pwr_ref = ATOMIC_INIT(0);
EXPORT_SYMBOL(usb_pwr_ref);