Lines Matching +full:bank +full:- +full:name
1 /* SPDX-License-Identifier: GPL-2.0-only */
18 * struct meson_pmx_group - a pinmux group
20 * @name: group name
29 const char *name; member
36 * struct meson_pmx_func - a pinmux function
38 * @name: function name
43 const char *name; member
49 * struct meson_reg_desc - a register descriptor
55 * pull-enable, direction, etc. for a single pin
63 * enum meson_reg_type - type of registers encoded in @meson_reg_desc
76 * enum meson_pinconf_drv - value of drive-strength supported
86 * struct meson bank
88 * @name: bank name
89 * @first: first pin of the bank
90 * @last: last pin of the bank
91 * @irq: hwirq base number of the bank
94 * A bank represents a set of pins controlled by a contiguous set of
97 * the @regs array refers to the first pin of the bank.
100 const char *name; member
109 const char *name; member
139 .name = #fn, \
147 .name = n, \
162 #define BANK(n, f, l, fi, li, per, peb, pr, pb, dr, db, or, ob, ir, ib) \ macro