/** * struct pll_freq_tbl - PLL frequency table * @l: L value * @m: M value * @n: N value * @ibits: internal values
*/ struct pll_freq_tbl { unsignedlong freq;
u16 l;
u16 m;
u16 n;
u32 ibits;
};
/** * struct clk_pll - phase locked loop (PLL) * @l_reg: L register * @m_reg: M register * @n_reg: N register * @config_reg: config register * @mode_reg: mode register * @status_reg: status register * @status_bit: ANDed with @status_reg to determine if PLL is enabled * @freq_tbl: PLL frequency table * @hw: handle between common and hardware-specific interfaces
*/ struct clk_pll {
u32 l_reg;
u32 m_reg;
u32 n_reg;
u32 config_reg;
u32 mode_reg;
u32 status_reg;
u8 status_bit;
u8 post_div_width;
u8 post_div_shift;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.