2 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com/
5 * EXYNOS - PPMU support
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/types.h>
16 #include "exynos_ppmu.h"
18 void exynos_ppmu_reset(void __iomem *ppmu_base)
20 __raw_writel(PPMU_CYCLE_RESET | PPMU_COUNTER_RESET, ppmu_base);
21 __raw_writel(PPMU_ENABLE_CYCLE |
26 ppmu_base + PPMU_CNTENS);
29 void exynos_ppmu_setevent(void __iomem *ppmu_base, unsigned int ch,
32 __raw_writel(evt, ppmu_base + PPMU_BEVTSEL(ch));
35 void exynos_ppmu_start(void __iomem *ppmu_base)
37 __raw_writel(PPMU_ENABLE, ppmu_base);
40 void exynos_ppmu_stop(void __iomem *ppmu_base)
42 __raw_writel(PPMU_DISABLE, ppmu_base);
45 unsigned int exynos_ppmu_read(void __iomem *ppmu_base, unsigned int ch)
49 if (ch == PPMU_PMNCNT3)
50 total = ((__raw_readl(ppmu_base + PMCNT_OFFSET(ch)) << 8) |
51 __raw_readl(ppmu_base + PMCNT_OFFSET(ch + 1)));
53 total = __raw_readl(ppmu_base + PMCNT_OFFSET(ch));