/** * struct imx_pin_mmio - MMIO pin configurations * @mux_mode: the mux mode for this pin. * @input_reg: the select input register offset for this pin if any * 0 if no select input setting needed. * @input_val: the select input value for this pin. * @configs: the config for this pin.
*/ struct imx_pin_mmio { unsignedint mux_mode;
u16 input_reg; unsignedint input_val; unsignedlong config;
};
/** * struct imx_pin_scu - SCU pin configurations * @mux: the mux mode for this pin. * @configs: the config for this pin.
*/ struct imx_pin_scu { unsignedint mux_mode; unsignedlong config;
};
/** * struct imx_pin - describes a single i.MX pin * @pin: the pin_id of this pin * @conf: config type of this pin, either mmio or scu
*/ struct imx_pin { unsignedint pin; union { struct imx_pin_mmio mmio; struct imx_pin_scu scu;
} conf;
};
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.