/** * enum mux_first_reg - Define modes of access of FIRST register * @mux_f_mux: Set the corresponding pin to a fully-pinmux pin * @mux_f_gpio: Set the corresponding pin to a GPIO or IOP pin * @mux_f_keep: Don't change (keep intact)
*/ enum mux_first_reg {
mux_f_mux = 0,
mux_f_gpio = 1,
mux_f_keep = 2,
};
/** * enum mux_master_reg - Define modes of access of MASTER register * @mux_m_iop: Set the corresponding pin to an IO processor (IOP) pin * @mux_m_gpio: Set the corresponding pin to a digital GPIO pin * @mux_m_keep: Don't change (keep intact)
*/ enum mux_master_reg {
mux_m_iop = 0,
mux_m_gpio = 1,
mux_m_keep = 2,
};
/** * enum pinmux_type - Define types of pinmux pins * @pinmux_type_fpmx: A fully-pinmux pin * @pinmux_type_grp: A group-pinmux pin
*/ enum pinmux_type {
pinmux_type_fpmx,
pinmux_type_grp,
};
/** * struct grp2fp_map - A map storing indexes * @f_idx: an index to function table * @g_idx: an index to group table
*/ struct grp2fp_map {
u16 f_idx;
u16 g_idx;
};
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.