Home
last modified time | relevance | path

Searched refs:TCON_START (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/u-boot/arch/arm/cpu/armv7/s5p-common/
H A Dpwm.c23 tcon |= TCON_START(pwm_id); in pwm_enable()
37 tcon &= ~TCON_START(pwm_id); in pwm_disable()
/OK3568_Linux_fs/kernel/drivers/clocksource/
H A Dsamsung_pwm_timer.c52 #define TCON_START(chan) (1 << (4 * (chan) + 0)) macro
131 tcon &= ~TCON_START(channel); in samsung_time_stop()
150 tcon &= ~(TCON_START(tcon_chan) | TCON_AUTORELOAD(tcon_chan)); in samsung_time_setup()
173 tcon |= TCON_START(channel); in samsung_time_start()
/OK3568_Linux_fs/u-boot/arch/arm/mach-exynos/include/mach/
H A Dpwm.h26 #define TCON_START(x) (1 << TCON_OFFSET(x)) macro
/OK3568_Linux_fs/u-boot/arch/arm/mach-s5pc1xx/include/mach/
H A Dpwm.h26 #define TCON_START(x) (1 << TCON_OFFSET(x)) macro
/OK3568_Linux_fs/kernel/drivers/pwm/
H A Dpwm-samsung.c50 #define TCON_START(chan) BIT(4 * (chan) + 0) macro
251 tcon &= ~TCON_START(tcon_chan); in pwm_samsung_enable()
256 tcon |= TCON_START(tcon_chan) | TCON_AUTORELOAD(tcon_chan); in pwm_samsung_enable()
/OK3568_Linux_fs/u-boot/drivers/pwm/
H A Dexynos_pwm.c77 mask = TCON_START(channel); in exynos_pwm_set_enable()