Home
last modified time | relevance | path

Searched +full:1 +full:ac (Results 1 – 25 of 747) sorted by relevance

12345678910>>...30

/linux/net/ceph/
H A Dauth.c24 static int init_protocol(struct ceph_auth_client *ac, int proto) in init_protocol() argument
30 return ceph_auth_none_init(ac); in init_protocol()
32 return ceph_x_init(ac); in init_protocol()
39 void ceph_auth_set_global_id(struct ceph_auth_client *ac, u64 global_id) in ceph_auth_set_global_id() argument
46 if (ac->global_id && global_id != ac->global_id) in ceph_auth_set_global_id()
47 pr_err("global_id changed from %llu to %llu\n", ac->global_id, in ceph_auth_set_global_id()
50 ac->global_id = global_id; in ceph_auth_set_global_id()
60 struct ceph_auth_client *ac; in ceph_auth_init() local
62 ac = kzalloc(sizeof(*ac), GFP_NOFS); in ceph_auth_init()
63 if (!ac) in ceph_auth_init()
[all …]
H A Dauth_x.c20 static void ceph_x_validate_tickets(struct ceph_auth_client *ac, int *pneed);
22 static int ceph_x_is_authenticated(struct ceph_auth_client *ac) in ceph_x_is_authenticated() argument
24 struct ceph_x_info *xi = ac->private; in ceph_x_is_authenticated()
28 ceph_x_validate_tickets(ac, &need); in ceph_x_is_authenticated()
29 missing = ac->want_keys & ~xi->have_keys; in ceph_x_is_authenticated()
32 ac->want_keys, xi->have_keys, missing, !missing); in ceph_x_is_authenticated()
36 static int ceph_x_should_authenticate(struct ceph_auth_client *ac) in ceph_x_should_authenticate() argument
38 struct ceph_x_info *xi = ac->private; in ceph_x_should_authenticate()
41 ceph_x_validate_tickets(ac, &need); in ceph_x_should_authenticate()
43 ac->want_keys, xi->have_keys, need, !!need); in ceph_x_should_authenticate()
[all …]
H A Dauth_none.c15 static void reset(struct ceph_auth_client *ac) in reset() argument
17 struct ceph_auth_none_info *xi = ac->private; in reset()
22 static void destroy(struct ceph_auth_client *ac) in destroy() argument
24 kfree(ac->private); in destroy()
25 ac->private = NULL; in destroy()
28 static int is_authenticated(struct ceph_auth_client *ac) in is_authenticated() argument
30 struct ceph_auth_none_info *xi = ac->private; in is_authenticated()
35 static int should_authenticate(struct ceph_auth_client *ac) in should_authenticate() argument
37 struct ceph_auth_none_info *xi = ac->private; in should_authenticate()
42 static int ceph_auth_none_build_authorizer(struct ceph_auth_client *ac, in ceph_auth_none_build_authorizer() argument
[all …]
/linux/drivers/power/supply/
H A Dsurface_charger.c3 * AC driver for 7th-generation Microsoft Surface devices via Surface System
67 static int spwr_ac_update_unlocked(struct spwr_ac_device *ac) in spwr_ac_update_unlocked() argument
69 __le32 old = ac->state; in spwr_ac_update_unlocked()
72 lockdep_assert_held(&ac->lock); in spwr_ac_update_unlocked()
74 status = ssam_retry(ssam_bat_get_psrc, ac->sdev, &ac->state); in spwr_ac_update_unlocked()
78 return old != ac->state; in spwr_ac_update_unlocked()
81 static int spwr_ac_update(struct spwr_ac_device *ac) in spwr_ac_update() argument
85 mutex_lock(&ac->lock); in spwr_ac_update()
86 status = spwr_ac_update_unlocked(ac); in spwr_ac_update()
87 mutex_unlock(&ac->lock); in spwr_ac_update()
[all …]
/linux/fs/ext4/
H A Dmballoc.c102 * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
135 * 1) Array of largest free order xarrays (sbi->s_mb_largest_free_orders)
150 * average fragment size >= 2^i and < 2^(i+1). The average fragment size
166 * in the data structure (1) above where largest_free_order = order of the
169 * lookup in O(1) time.
174 * size group lists (data structure 2) in O(1) time.
183 * suitable block group in O(1) time and results in faster allocation at the
280 * 1) if buddy is referenced, it's already initialized
426 static void ext4_mb_new_preallocation(struct ext4_allocation_context *ac);
878 ext4_mb_scan_groups_xa_range(struct ext4_allocation_context * ac,struct xarray * xa,ext4_group_t start,ext4_group_t end) ext4_mb_scan_groups_xa_range() argument
912 ext4_mb_scan_groups_largest_free_order_range(struct ext4_allocation_context * ac,int order,ext4_group_t start,ext4_group_t end) ext4_mb_scan_groups_largest_free_order_range() argument
928 ext4_mb_scan_groups_p2_aligned(struct ext4_allocation_context * ac,ext4_group_t group) ext4_mb_scan_groups_p2_aligned() argument
963 ext4_mb_scan_groups_avg_frag_order_range(struct ext4_allocation_context * ac,int order,ext4_group_t start,ext4_group_t end) ext4_mb_scan_groups_avg_frag_order_range() argument
979 ext4_mb_scan_groups_goal_fast(struct ext4_allocation_context * ac,ext4_group_t group) ext4_mb_scan_groups_goal_fast() argument
1029 ext4_mb_scan_groups_best_avail(struct ext4_allocation_context * ac,ext4_group_t group) ext4_mb_scan_groups_best_avail() argument
1113 should_optimize_scan(struct ext4_allocation_context * ac) should_optimize_scan() argument
1136 ext4_mb_scan_groups_linear(struct ext4_allocation_context * ac,ext4_group_t ngroups,ext4_group_t * start,ext4_group_t count) ext4_mb_scan_groups_linear() argument
1163 ext4_mb_scan_groups(struct ext4_allocation_context * ac) ext4_mb_scan_groups() argument
2205 ext4_mb_use_best_found(struct ext4_allocation_context * ac,struct ext4_buddy * e4b) ext4_mb_use_best_found() argument
2254 ext4_mb_check_limits(struct ext4_allocation_context * ac,struct ext4_buddy * e4b,int finish_group) ext4_mb_check_limits() argument
2307 ext4_mb_measure_extent(struct ext4_allocation_context * ac,struct ext4_free_extent * ex,struct ext4_buddy * e4b) ext4_mb_measure_extent() argument
2368 ext4_mb_try_best_found(struct ext4_allocation_context * ac,struct ext4_buddy * e4b) ext4_mb_try_best_found() argument
2398 ext4_mb_find_by_goal(struct ext4_allocation_context * ac,struct ext4_buddy * e4b) ext4_mb_find_by_goal() argument
2467 ext4_mb_simple_scan_group(struct ext4_allocation_context * ac,struct ext4_buddy * e4b) ext4_mb_simple_scan_group() argument
2521 ext4_mb_complex_scan_group(struct ext4_allocation_context * ac,struct ext4_buddy * e4b) ext4_mb_complex_scan_group() argument
2604 ext4_mb_scan_aligned(struct ext4_allocation_context * ac,struct ext4_buddy * e4b) ext4_mb_scan_aligned() argument
2643 __ext4_mb_scan_group(struct ext4_allocation_context * ac) __ext4_mb_scan_group() argument
2672 ext4_mb_good_group(struct ext4_allocation_context * ac,ext4_group_t group,enum criteria cr) ext4_mb_good_group() argument
2741 ext4_mb_good_group_nolock(struct ext4_allocation_context * ac,ext4_group_t group,enum criteria cr) ext4_mb_good_group_nolock() argument
2862 ext4_mb_might_prefetch(struct ext4_allocation_context * ac,ext4_group_t group) ext4_mb_might_prefetch() argument
2920 ext4_mb_scan_group(struct ext4_allocation_context * ac,ext4_group_t group) ext4_mb_scan_group() argument
2965 ext4_mb_regular_allocator(struct ext4_allocation_context * ac) ext4_mb_regular_allocator() argument
4166 ext4_mb_mark_diskspace_used(struct ext4_allocation_context * ac,handle_t * handle,unsigned int reserv_clstrs) ext4_mb_mark_diskspace_used() argument
4291 ext4_mb_normalize_group_request(struct ext4_allocation_context * ac) ext4_mb_normalize_group_request() argument
4320 ext4_mb_pa_assert_overlap(struct ext4_allocation_context * ac,ext4_lblk_t start,loff_t end) ext4_mb_pa_assert_overlap() argument
4357 ext4_mb_pa_adjust_overlap(struct ext4_allocation_context * ac,ext4_lblk_t * start,loff_t * end) ext4_mb_pa_adjust_overlap() argument
4497 ext4_mb_normalize_request(struct ext4_allocation_context * ac,struct ext4_allocation_request * ar) ext4_mb_normalize_request() argument
4670 ext4_mb_collect_stats(struct ext4_allocation_context * ac) ext4_mb_collect_stats() argument
4709 ext4_discard_allocated_blocks(struct ext4_allocation_context * ac) ext4_discard_allocated_blocks() argument
4744 ext4_mb_use_inode_pa(struct ext4_allocation_context * ac,struct ext4_prealloc_space * pa) ext4_mb_use_inode_pa() argument
4775 ext4_mb_use_group_pa(struct ext4_allocation_context * ac,struct ext4_prealloc_space * pa) ext4_mb_use_group_pa() argument
4830 ext4_mb_pa_goal_check(struct ext4_allocation_context * ac,struct ext4_prealloc_space * pa) ext4_mb_pa_goal_check() argument
4861 ext4_mb_use_preallocated(struct ext4_allocation_context * ac) ext4_mb_use_preallocated() argument
5144 ext4_mb_put_pa(struct ext4_allocation_context * ac,struct super_block * sb,struct ext4_prealloc_space * pa) ext4_mb_put_pa() argument
5236 ext4_mb_new_inode_pa(struct ext4_allocation_context * ac) ext4_mb_new_inode_pa() argument
5336 ext4_mb_new_group_pa(struct ext4_allocation_context * ac) ext4_mb_new_group_pa() argument
5385 ext4_mb_new_preallocation(struct ext4_allocation_context * ac) ext4_mb_new_preallocation() argument
5700 ext4_mb_pa_alloc(struct ext4_allocation_context * ac) ext4_mb_pa_alloc() argument
5713 ext4_mb_pa_put_free(struct ext4_allocation_context * ac) ext4_mb_pa_put_free() argument
5764 ext4_mb_show_ac(struct ext4_allocation_context * ac) ext4_mb_show_ac() argument
5802 ext4_mb_show_ac(struct ext4_allocation_context * ac) ext4_mb_show_ac() argument
5815 ext4_mb_group_or_file(struct ext4_allocation_context * ac) ext4_mb_group_or_file() argument
5868 ext4_mb_initialize_context(struct ext4_allocation_context * ac,struct ext4_allocation_request * ar) ext4_mb_initialize_context() argument
6003 ext4_mb_add_n_trim(struct ext4_allocation_context * ac) ext4_mb_add_n_trim() argument
6051 ext4_mb_release_context(struct ext4_allocation_context * ac) ext4_mb_release_context() argument
6118 ext4_mb_discard_preallocations_should_retry(struct super_block * sb,struct ext4_allocation_context * ac,u64 * seq) ext4_mb_discard_preallocations_should_retry() argument
6217 struct ext4_allocation_context *ac = NULL; ext4_mb_new_blocks() local
[all...]
/linux/drivers/media/pci/tw686x/
H A Dtw686x-audio.c38 struct tw686x_audio_channel *ac = &dev->audio_channels[ch]; in tw686x_audio_irq() local
45 spin_lock_irqsave(&ac->lock, flags); in tw686x_audio_irq()
48 if (!ac->ss || !ac->curr_bufs[0] || !ac->curr_bufs[1]) { in tw686x_audio_irq()
49 spin_unlock_irqrestore(&ac->lock, flags); in tw686x_audio_irq()
53 if (!list_empty(&ac->buf_list)) { in tw686x_audio_irq()
54 next = list_first_entry(&ac->buf_list, in tw686x_audio_irq()
56 list_move_tail(&next->list, &ac->buf_list); in tw686x_audio_irq()
57 done = ac->curr_bufs[!pb]; in tw686x_audio_irq()
58 ac->curr_bufs[pb] = next; in tw686x_audio_irq()
60 spin_unlock_irqrestore(&ac->lock, flags); in tw686x_audio_irq()
[all …]
/linux/sound/soc/qcom/qdsp6/
H A Dq6asm.c261 struct audio_client *session[MAX_SESSIONS + 1];
273 /* idx:1 out port, 0: in port */
282 static inline void q6asm_add_hdr(struct audio_client *ac, struct apr_hdr *hdr, in q6asm_add_hdr() argument
287 hdr->src_port = ((ac->session << 8) & 0xFF00) | (stream_id); in q6asm_add_hdr()
288 hdr->dest_port = ((ac->session << 8) & 0xFF00) | (stream_id); in q6asm_add_hdr()
291 hdr->token = ac->session; in q6asm_add_hdr()
294 static int q6asm_apr_send_session_pkt(struct q6asm *a, struct audio_client *ac, in q6asm_apr_send_session_pkt() argument
300 mutex_lock(&ac->cmd_lock); in q6asm_apr_send_session_pkt()
301 ac->result.opcode = 0; in q6asm_apr_send_session_pkt()
302 ac->result.status = 0; in q6asm_apr_send_session_pkt()
[all …]
/linux/fs/ocfs2/
H A Dsuballoc.c95 static int ocfs2_claim_suballoc_bits(struct ocfs2_alloc_context *ac,
120 struct ocfs2_alloc_context **ac);
122 void ocfs2_free_ac_resource(struct ocfs2_alloc_context *ac) in ocfs2_free_ac_resource() argument
124 struct inode *inode = ac->ac_inode; in ocfs2_free_ac_resource()
127 if (ac->ac_which != OCFS2_AC_USE_LOCAL) in ocfs2_free_ac_resource()
128 ocfs2_inode_unlock(inode, 1); in ocfs2_free_ac_resource()
133 ac->ac_inode = NULL; in ocfs2_free_ac_resource()
135 brelse(ac->ac_bh); in ocfs2_free_ac_resource()
136 ac->ac_bh = NULL; in ocfs2_free_ac_resource()
137 ac->ac_resv = NULL; in ocfs2_free_ac_resource()
[all …]
H A Dsuballoc.h28 #define OCFS2_AC_USE_LOCAL 1
51 void ocfs2_free_alloc_context(struct ocfs2_alloc_context *ac);
52 static inline int ocfs2_alloc_context_bits_left(struct ocfs2_alloc_context *ac) in ocfs2_alloc_context_bits_left() argument
54 return ac->ac_bits_wanted - ac->ac_bits_given; in ocfs2_alloc_context_bits_left()
64 struct ocfs2_alloc_context **ac);
67 struct ocfs2_alloc_context **ac);
69 struct ocfs2_alloc_context **ac);
72 struct ocfs2_alloc_context **ac);
95 struct ocfs2_alloc_context *ac,
104 struct ocfs2_alloc_context *ac,
[all …]
H A Dlocalalloc.c51 struct ocfs2_alloc_context **ac,
57 struct ocfs2_alloc_context *ac);
115 * than 16K and also 1k blocksize with 4k cluster size. in ocfs2_la_default_mb()
158 gd_mult = gd_mult >> 1; in ocfs2_la_default_mb()
190 if (requested_mb == -1) { in ocfs2_la_set_sizes()
261 ret = 1; in ocfs2_alloc_should_use_local()
284 osb->local_alloc_bits, (osb->bitmap_cpg - 1)); in ocfs2_load_local_alloc()
410 status = ocfs2_inode_lock(main_bm_inode, &main_bm_bh, 1); in ocfs2_shutdown_local_alloc()
458 ocfs2_inode_unlock(main_bm_inode, 1); in ocfs2_shutdown_local_alloc()
566 status = ocfs2_inode_lock(main_bm_inode, &main_bm_bh, 1); in ocfs2_complete_local_alloc_recovery()
[all …]
/linux/drivers/acpi/
H A Dac.c3 * acpi_ac.c - ACPI AC Adapter Driver (Revision: 27)
9 #define pr_fmt(fmt) "ACPI: AC: " fmt
25 #define ACPI_AC_DEVICE_NAME "AC Adapter"
33 MODULE_DESCRIPTION("ACPI AC Adapter Driver");
65 /* AC Adapter Management */
66 static int acpi_ac_get_state(struct acpi_ac *ac) in acpi_ac_get_state() argument
70 if (!ac) in acpi_ac_get_state()
74 ac->state = 1; in acpi_ac_get_state()
78 status = acpi_evaluate_integer(ac->device->handle, "_PSR", NULL, in acpi_ac_get_state()
79 &ac->state); in acpi_ac_get_state()
[all …]
/linux/kernel/
H A Dacct.c20 * Plugged two leaks. 1) It didn't return acct_file into the free_filps if
70 #define SUSPEND (acct_parm[1]) /* <foo% free space - suspend */
108 acct_t ac; member
264 atomic_long_set(&acct->count, 1); in acct_on()
272 mutex_lock_nested(&acct->lock, 1); /* nobody has seen it yet */ in acct_on()
330 #define MAXFRACT ((1 << MANTSIZE) - 1) /* Maximum fractional value. */
338 rnd = value & (1 << (EXPSIZE - 1)); /* Round up? */ in encode_comp_t()
361 #if ACCT_VERSION == 1 || ACCT_VERSION == 2
373 #define MAXFRACT2 ((1ul << MANTSIZE2) - 1) /* Maximum fractional value. */
374 #define MAXEXP2 ((1 << EXPSIZE2) - 1) /* Maximum exponent. */
[all …]
/linux/Documentation/ABI/testing/
H A Dsysfs-devices-platform-ACPI-TAD11 BIT(0): AC wakeup implemented if set
12 BIT(1): DC wakeup implemented if set
16 BIT(5): The AC timer wakes up from S4 if set
17 BIT(6): The AC timer wakes up from S5 if set
28 (RW) The AC alarm timer value.
30 Reads return the current AC alarm timer value in seconds or
31 "disabled", if the AC alarm is not set to wake up the system.
33 Write a new AC alarm timer value in seconds or "disabled" to it
34 to set the AC alarm timer or to disable it, respectively.
36 If the AC alarm timer is set through this attribute and it
[all …]
/linux/drivers/crypto/axis/
H A Dartpec6_crypto.c88 #define A7_PDMA_IN_CMD_FLUSH_STAT BIT(1)
150 unsigned char short_descr : 1;
151 unsigned char pad1 : 1;
152 unsigned char eop : 1;
153 unsigned char intr : 1;
155 unsigned char pad2 : 1;
176 unsigned char pad1 : 1;
177 unsigned char pad2 : 1;
178 unsigned char eop : 1;
189 #define ARTPEC6_CRYPTO_HASH_SHA1 1
[all …]
/linux/lib/
H A Dbase64.c27 * returning -1 if the character is invalid.
29 * ch_62 maps to 62, ch_63 maps to 63, and other characters return -1
35 : (v) == (ch_62) ? 62 : (v) == (ch_63) ? 63 : -1
42 #define INIT_2(v, ...) INIT_1(v, __VA_ARGS__), INIT_1((v) + 1, __VA_ARGS__)
49 [0 ... 0x1f] = -1, \
53 [0x80 ... 0xff] = -1 }
82 u32 ac = 0; in base64_encode() local
87 ac = src[0] << 16 | src[1] << 8 | src[2]; in base64_encode()
88 *cp++ = base64_table[ac >> 18]; in base64_encode()
89 *cp++ = base64_table[(ac >> 12) & 0x3f]; in base64_encode()
[all …]
/linux/drivers/hid/
H A Dhid-kye.c30 0x0A, 0x45, 0x02, /* Usage (AC Rotate), */
32 0x0A, 0x2F, 0x02, /* Usage (AC Zoom), */
33 0x0A, 0x46, 0x02, /* Usage (AC Resize), */
34 0x0A, 0x1A, 0x02, /* Usage (AC Undo), */
35 0x0A, 0x6A, 0x02, /* Usage (AC Delete), */
36 0x0A, 0x24, 0x02, /* Usage (AC Back), */
37 0x0A, 0x25, 0x02, /* Usage (AC Forward), */
39 0x25, 0x01, /* Logical Maximum (1), */
40 0x75, 0x01, /* Report Size (1), */
53 0x0A, 0x6A, 0x02, /* Usage (AC Delete), */
[all …]
/linux/scripts/
H A Dpatch-kernel11 # scripts/patch-kernel . .. -ac
12 # Get the latest Linux kernel and patch it with the latest ac patch
15 # scripts/patch-kernel . .. 2.4.9 -ac
16 # Gets 2.4.9 with latest ac patches
18 # Gets 2.4.9 with ac patch ac11
20 # ac to ac relative patches
33 # Adam Sulmicki <adam@cfar.umd.edu>, 1st January 1997.
42 # Added -ac option, use -ac or -ac9 (say) to stop at a particular version
65 sourcedir=${1-/usr/src/linux}
69 if [ "$1" = -h -o "$1" = --help -o ! -r "$sourcedir/Makefile" ]; then
[all …]
/linux/include/linux/mmc/
H A Dmmc.h30 /* class 1 */
32 #define MMC_SEND_OP_COND 1 /* bcr [31:0] OCR R3 */
34 #define MMC_SET_RELATIVE_ADDR 3 /* ac [31:16] RCA R1 */
36 #define MMC_SLEEP_AWAKE 5 /* ac [31:16] RCA 15:flg R1b */
37 #define MMC_SWITCH 6 /* ac [31:0] See below R1b */
38 #define MMC_SELECT_CARD 7 /* ac [31:16] RCA R1 */
40 #define MMC_SEND_CSD 9 /* ac [31:16] RCA R2 */
41 #define MMC_SEND_CID 10 /* ac [31:16] RCA R2 */
43 #define MMC_STOP_TRANSMISSION 12 /* ac R1b */
44 #define MMC_SEND_STATUS 13 /* ac [31:16] RCA R1 */
[all …]
/linux/Documentation/admin-guide/media/
H A Dcx88-cardlist.rst9 :header-rows: 1
21 * - 1
79 - 18ac:db00
87 - 18ac:d810, 18ac:d800
103 - 18ac:db10, 18ac:db11
131 - 18ac:d820
143 - 18ac:d500
195 - 18ac:db50, 18ac:db54
203 - 18ac:db40, 18ac:db44
255 - 18ac:d530
[all …]
/linux/include/dt-bindings/input/
H A Dlinux-event-codes.h33 #define INPUT_PROP_CNT (INPUT_PROP_MAX + 1)
52 #define EV_CNT (EV_MAX+1)
59 #define SYN_CONFIG 1
63 #define SYN_CNT (SYN_MAX+1)
71 * AC - Application Control
77 #define KEY_ESC 1
207 #define KEY_STOP 128 /* AC Stop */
209 #define KEY_PROPS 130 /* AC Properties */
210 #define KEY_UNDO 131 /* AC Undo */
212 #define KEY_COPY 133 /* AC Cop
[all...]
/linux/Documentation/devicetree/bindings/power/supply/
H A Dbq24735.yaml21 maxItems: 1
24 description: AC adapter plug event interrupt
25 maxItems: 1
27 ti,ac-detect-gpios:
28 maxItems: 1
30 This GPIO is optionally used to read the AC adapter status. This is a Host GPIO
32 Note: for backwards compatibility reasons, the GPIO must be active on AC adapter
33 absence despite ACOK being active (high) on AC adapter presence.
68 If 'interrupts' is not specified, poll AC adapter presence with this interval (milliseconds).
81 #address-cells = <1>;
[all …]
H A Dti,lp8727.yaml23 maxItems: 1
29 '^(ac|usb)$':
32 description: USB/AC charging parameters
36 - ac
45 0 = 5%, 1 = 10%, 2 = 16%, 3 = 20%, 4 = 25%, 5 = 33%, 6 = 50%
53 0 = 90mA, 1 = 100mA, 2 = 400mA, 3 = 450mA, 4 = 500mA, 5 = 600mA,
66 #address-cells = <1>;
76 /* AC charger: 5% EOC and 500mA charging current */
77 ac {
78 charger-type = "ac";
[all …]
/linux/include/uapi/linux/
H A Dinput-event-codes.h33 #define INPUT_PROP_CNT (INPUT_PROP_MAX + 1)
52 #define EV_CNT (EV_MAX+1)
59 #define SYN_CONFIG 1
63 #define SYN_CNT (SYN_MAX+1)
71 * AC - Application Control
77 #define KEY_ESC 1
207 #define KEY_STOP 128 /* AC Stop */
209 #define KEY_PROPS 130 /* AC Properties */
210 #define KEY_UNDO 131 /* AC Undo */
212 #define KEY_COPY 133 /* AC Copy */
[all …]
/linux/Documentation/devicetree/bindings/display/tilcdc/
H A Dpanel.txt6 - ac-bias: AC Bias Pin Frequency
7 - ac-bias-intrpt: AC Bias Pin Transitions per Interrupt
11 - sync-edge: Horizontal and Vertical Sync Edge: 0=rising 1=falling
13 - raster-order: Raster Data Order Select: 1=Most-to-least 0=Least-to-most
40 ac-bias = <255>;
41 ac-bias-intrpt = <0>;
46 sync-ctrl = <1>;
/linux/Documentation/devicetree/bindings/sound/
H A Dcs43130.txt24 1 = 7.5uA
31 - cirrus,ac-measure:
32 Boolean, define to enable headphone AC impedance measurement.
33 DC impedance must also be enabled for AC impedance measurement.
39 - cirrus,ac-freq:
40 Define the frequencies at which to measure HP AC impedance.
64 cirrus,ac-measure;
66 cirrus,ac-freq = /bits/ 16 <24 43 93 200 431 928 2000 4309 9283 20000>;

12345678910>>...30