mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 04:16:40 +07:00
acc84707d3
This patch moves S5PC100 SoC support to plat-s5p framework. Most periperal support code has been already moved from plat-s5pc1xx to mach-s5pc100. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Ben Dooks <ben-linux@fluff.org>
30 lines
841 B
C
30 lines
841 B
C
/* linux/arch/arm/mach-s5pc100/include/mach/tick.h
|
|
*
|
|
* Copyright 2009 Samsung Electronics Co.
|
|
* Byungho Min <bhmin@samsung.com>
|
|
*
|
|
* S3C64XX - Timer tick support definitions
|
|
*
|
|
* Based on mach-s3c6400/include/mach/tick.h
|
|
*
|
|
* This program 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.
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_TICK_H
|
|
#define __ASM_ARCH_TICK_H __FILE__
|
|
|
|
/* note, the timer interrutps turn up in 2 places, the vic and then
|
|
* the timer block. We take the VIC as the base at the moment.
|
|
*/
|
|
static inline u32 s3c24xx_ostimer_pending(void)
|
|
{
|
|
u32 pend = __raw_readl(VA_VIC0 + VIC_RAW_STATUS);
|
|
return pend & (1 << (IRQ_TIMER4_VIC - S5P_IRQ_VIC0(0)));
|
|
}
|
|
|
|
#define TICK_MAX (0xffffffff)
|
|
|
|
#endif /* __ASM_ARCH_TICK_H */
|