Go to the documentation of this file.
21 #ifndef __MACH_TEGRA_CLOCK_H
22 #define __MACH_TEGRA_CLOCK_H
26 #include <linux/list.h>
30 #define DIV_BUS (1 << 0)
31 #define DIV_U71 (1 << 1)
32 #define DIV_U71_FIXED (1 << 2)
33 #define DIV_2 (1 << 3)
34 #define DIV_U16 (1 << 4)
35 #define PLL_FIXED (1 << 5)
36 #define PLL_HAS_CPCON (1 << 6)
39 #define PERIPH_NO_RESET (1 << 9)
40 #define PERIPH_NO_ENB (1 << 10)
41 #define PERIPH_EMC_ENB (1 << 11)
42 #define PERIPH_MANUAL_RESET (1 << 12)
43 #define PLL_ALT_MISC_REG (1 << 13)
44 #define PLLU (1 << 14)
45 #define PLLX (1 << 15)
46 #define MUX_PWM (1 << 16)
47 #define MUX8 (1 << 17)
48 #define DIV_U71_UART (1 << 18)
49 #define MUX_CLK_OUT (1 << 19)
50 #define PLLM (1 << 20)
51 #define DIV_U71_INT (1 << 21)
52 #define DIV_U71_IDLE (1 << 22)
53 #define ENABLE_ON_INIT (1 << 28)
54 #define PERIPH_ON_APB (1 << 29)
57 #define to_clk_tegra(_hw) container_of(_hw, struct clk_tegra, hw)