Home | History | Annotate | Download | only in ep93xx

Lines Matching defs:clkset1

80 	uint32_t		id, clkset1;
122 clkset1 = bus_space_read_4(sc->sc_iot, sc->sc_ioh,
129 fclkdiv = (clkset1 & 0x0e000000) >> 25;
130 hclkdiv = (clkset1 & 0x00700000) >> 20;
131 pclkdiv = (clkset1 & 0x000c0000) >> 18;
132 pll1_ps = (clkset1 & 0x00030000) >> 16;
133 pll1x1fbd1 = (clkset1 & 0x0000f800) >> 11;
134 pll1x2fbd2 = (clkset1 & 0x000007e0) >> 5;
135 pll1x2ipd = (clkset1 & 0x0000001f);
141 if (clkset1 & 0x00800000) /* nBYP1 bypasses PLL */