Skip to content

Commit

Permalink
arm: rockchip: remove setting for rk timer
Browse files Browse the repository at this point in the history
Change-Id: I74200f86a5fe3cc023282b7b0e452826554dd102
Signed-off-by: Xu Jianqun <jay.xu@rock-chips.com>
  • Loading branch information
jayxurockchip authored and rkhuangtao committed Apr 7, 2017
1 parent 86a5c36 commit 54b2fd9
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions arch/arm/mach-rockchip/rockchip.c
Expand Up @@ -37,24 +37,6 @@ static void __init rockchip_timer_init(void)
{
if (of_machine_is_compatible("rockchip,rk3288")) {
struct regmap *grf;
void __iomem *reg_base;

/*
* Most/all uboot versions for rk3288 don't enable timer7
* which is needed for the architected timer to work.
* So make sure it is running during early boot.
*/
reg_base = ioremap(RK3288_TIMER6_7_PHYS, SZ_16K);
if (reg_base) {
writel(0, reg_base + 0x30);
writel(0xffffffff, reg_base + 0x20);
writel(0xffffffff, reg_base + 0x24);
writel(1, reg_base + 0x30);
dsb();
iounmap(reg_base);
} else {
pr_err("rockchip: could not map timer7 registers\n");
}

/*
* Disable auto jtag/sdmmc switching that causes issues
Expand Down

0 comments on commit 54b2fd9

Please sign in to comment.