summaryrefslogtreecommitdiffstats
path: root/drivers/clocksource/Kconfig
blob: 7b04663d2e738a1502cf896ae24f784d9caef253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
menu "Clocksource"

config ARCH_HAS_IMX_GPT
       bool

config AMBA_SP804
	bool
	depends on ARM_AMBA

config ARM_SMP_TWD
	bool
	depends on ARM && CPU_V7

config CLOCKSOURCE_BCM283X
	bool
	depends on ARCH_BCM283X

config CLOCKSOURCE_CLPS711X
	bool
	depends on ARCH_CLPS711X

config CLOCKSOURCE_DIGIC
	bool
	depends on ARCH_DIGIC

config CLOCKSOURCE_DUMMY_RATE
	int
	prompt "dummy clocksource rate"
	default 1000
	help
	  When porting barebox to a new SoC there might be a case
	  of broken or absent clocksource. This causes barebox serial
	  console to be non functional.
	  To solve the problem barebox has built-in software-only clocksource.
	  The software-only clocksource is used only if no hardware clocksource
	  is registered. This can help if initialization order is wrong so that
	  the time functions are used before the real clocksource was initialized.
	      WARNING!!! Built-in software-only clocksource doesn't provide correct timing.
	  The option CONFIG_CLOCKSOURCE_DUMMY_RATE is used to adjust this clocksource.
	  The bigger rate valuest makes clocksource "faster".

config CLOCKSOURCE_EFI
	bool "Generic EFI Driver"
	depends on EFI_BOOTUP

config CLOCKSOURCE_EFI_X86
	bool "EFI X86 HW driver"
	depends on EFI_BOOTUP && X86

config CLOCKSOURCE_MVEBU
	bool
	depends on ARCH_MVEBU

config CLOCKSOURCE_NOMADIK
	bool
	depends on ARM

config CLOCKSOURCE_ORION
	bool
	depends on ARCH_MVEBU

config CLOCKSOURCE_UEMD
	bool
	depends on ARCH_UEMD

config CLOCKSOURCE_ROCKCHIP
	bool
	depends on ARCH_ROCKCHIP

config CLOCKSOURCE_ATMEL_PIT
       bool
       depends on SOC_AT91SAM9 || SOC_SAMA5

config CLOCKSOURCE_ARMV8_TIMER
	bool
	default y
	depends on ARM && CPU_64v8

config CLOCKSOURCE_ARM_GLOBAL_TIMER
	bool
	depends on ARM && CPU_V7
config CLOCKSOURCE_IMX_GPT
	def_bool y
	depends on ARCH_HAS_IMX_GPT

config CLOCKSOURCE_DW_APB_TIMER
	bool "DW APB timer driver"
	help
	  Enables the support for the dw_apb timer.

config CLOCKSOURCE_TI_DM
	bool

config CLOCKSOURCE_TI_32K
	bool

endmenu