/* The CPU clock registers have DIV1 configuration register */ #define CLK_CPU_HAS_DIV1 BIT(0) /* When ALT parent is active, debug clocks need safe divider values */ #define CLK_CPU_NEEDS_DEBUG_ALT_DIV BIT(1)
/** * struct exynos_cpuclk_cfg_data - config data to setup cpu clocks * @prate: frequency of the primary parent clock (in KHz) * @div0: value to be programmed in the div_cpu0 register * @div1: value to be programmed in the div_cpu1 register * * This structure holds the divider configuration data for dividers in the CPU * clock domain. The parent frequency at which these divider values are valid is * specified in @prate. The @prate is the frequency of the primary parent clock. * For CPU clock domains that do not have a DIV1 register, the @div1 member * value is not used.
*/ struct exynos_cpuclk_cfg_data { unsignedlong prate; unsignedlong div0; unsignedlong div1;
};
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.