Lines Matching +full:0 +full:x1f
11 #define PRCI_BASE_ADDR 0x10008000UL
18 #define PRCI_HFROSCCFG (0x0000)
19 #define PRCI_HFXOSCCFG (0x0004)
20 #define PRCI_PLLCFG (0x0008)
21 #define PRCI_PLLDIV (0x000C)
22 #define PRCI_PROCMONCFG (0x00F0)
25 #define ROSC_DIV(x) (((x) & 0x2F) << 0)
26 #define ROSC_TRIM(x) (((x) & 0x1F) << 16)
27 #define ROSC_EN(x) (((x) & 0x1) << 30)
28 #define ROSC_RDY(x) (((x) & 0x1) << 31)
30 #define XOSC_EN(x) (((x) & 0x1) << 30)
31 #define XOSC_RDY(x) (((x) & 0x1) << 31)
33 #define PLL_R(x) (((x) & 0x7) << 0)
35 #define PLL_F(x) (((x) & 0x3F) << 4)
36 #define PLL_Q(x) (((x) & 0x3) << 10)
37 #define PLL_SEL(x) (((x) & 0x1) << 16)
38 #define PLL_REFSEL(x) (((x) & 0x1) << 17)
39 #define PLL_BYPASS(x) (((x) & 0x1) << 18)
40 #define PLL_LOCK(x) (((x) & 0x1) << 31)
42 #define PLL_R_default 0x1
43 #define PLL_F_default 0x1F
44 #define PLL_Q_default 0x3
46 #define PLL_REFSEL_HFROSC 0x0
47 #define PLL_REFSEL_HFXOSC 0x1
49 #define PLL_SEL_HFROSC 0x0
50 #define PLL_SEL_PLL 0x1
52 #define PLL_FINAL_DIV(x) (((x) & 0x3F) << 0)
53 #define PLL_FINAL_DIV_BY_1(x) (((x) & 0x1) << 8)
55 #define PROCMON_DIV(x) (((x) & 0x1F) << 0)
56 #define PROCMON_TRIM(x) (((x) & 0x1F) << 8)
57 #define PROCMON_EN(x) (((x) & 0x1) << 16)
58 #define PROCMON_SEL(x) (((x) & 0x3) << 24)
59 #define PROCMON_NT_EN(x) (((x) & 0x1) << 28)
61 #define PROCMON_SEL_HFCLK 0