/linux-4.1.27/arch/x86/syscalls/ |
D | syscall_64.tbl | 7 # The abi is "common", "64" or "x32" for this file. 9 0 common read sys_read 10 1 common write sys_write 11 2 common open sys_open 12 3 common close sys_close 13 4 common stat sys_newstat 14 5 common fstat sys_newfstat 15 6 common lstat sys_newlstat 16 7 common poll sys_poll 17 8 common lseek sys_lseek [all …]
|
/linux-4.1.27/drivers/usb/gadget/function/ |
D | f_mass_storage.c | 326 struct fsg_common *common; member 340 static inline int __fsg_is_set(struct fsg_common *common, in __fsg_is_set() argument 343 if (common->fsg) in __fsg_is_set() 345 ERROR(common, "common->fsg is NULL in %s at %u\n", func, line); in __fsg_is_set() 350 #define fsg_is_set(common) likely(__fsg_is_set(common, __func__, __LINE__)) argument 359 static int exception_in_progress(struct fsg_common *common) in exception_in_progress() argument 361 return common->state > FSG_STATE_IDLE; in exception_in_progress() 365 static void set_bulk_out_req_length(struct fsg_common *common, in set_bulk_out_req_length() argument 371 rem = length % common->bulk_out_maxpacket; in set_bulk_out_req_length() 373 length += common->bulk_out_maxpacket - rem; in set_bulk_out_req_length() [all …]
|
D | f_mass_storage.h | 71 int (*thread_exits)(struct fsg_common *common); 81 struct fsg_common *common; member 127 void fsg_common_get(struct fsg_common *common); 129 void fsg_common_put(struct fsg_common *common); 131 void fsg_common_set_sysfs(struct fsg_common *common, bool sysfs); 133 int fsg_common_set_num_buffers(struct fsg_common *common, unsigned int n); 135 void fsg_common_free_buffers(struct fsg_common *common); 137 int fsg_common_set_cdev(struct fsg_common *common, 142 void fsg_common_remove_luns(struct fsg_common *common); 144 void fsg_common_set_ops(struct fsg_common *common, [all …]
|
/linux-4.1.27/drivers/net/wireless/rsi/ |
D | rsi_91x_core.c | 27 static u8 rsi_determine_min_weight_queue(struct rsi_common *common) in rsi_determine_min_weight_queue() argument 29 struct wmm_qinfo *tx_qinfo = common->tx_qinfo; in rsi_determine_min_weight_queue() 34 q_len = skb_queue_len(&common->tx_queue[ii]); in rsi_determine_min_weight_queue() 36 common->min_weight = tx_qinfo[ii].weight; in rsi_determine_min_weight_queue() 50 static bool rsi_recalculate_weights(struct rsi_common *common) in rsi_recalculate_weights() argument 52 struct wmm_qinfo *tx_qinfo = common->tx_qinfo; in rsi_recalculate_weights() 58 q_len = skb_queue_len(&common->tx_queue[ii]); in rsi_recalculate_weights() 63 ((tx_qinfo[ii].weight > common->min_weight) ? in rsi_recalculate_weights() 64 tx_qinfo[ii].weight - common->min_weight : 0); in rsi_recalculate_weights() 89 static u32 rsi_get_num_pkts_dequeue(struct rsi_common *common, u8 q_num) in rsi_get_num_pkts_dequeue() argument [all …]
|
D | rsi_91x_mgmt.c | 211 static void rsi_set_default_parameters(struct rsi_common *common) in rsi_set_default_parameters() argument 213 common->band = IEEE80211_BAND_2GHZ; in rsi_set_default_parameters() 214 common->channel_width = BW_20MHZ; in rsi_set_default_parameters() 215 common->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD; in rsi_set_default_parameters() 216 common->channel = 1; in rsi_set_default_parameters() 217 common->min_rate = 0xffff; in rsi_set_default_parameters() 218 common->fsm_state = FSM_CARD_NOT_READY; in rsi_set_default_parameters() 219 common->iface_down = true; in rsi_set_default_parameters() 220 common->endpoint = EP_2GHZ_20MHZ; in rsi_set_default_parameters() 230 static void rsi_set_contention_vals(struct rsi_common *common) in rsi_set_contention_vals() argument [all …]
|
D | rsi_91x_mac80211.c | 131 bool rsi_is_cipher_wep(struct rsi_common *common) in rsi_is_cipher_wep() argument 133 if (((common->secinfo.gtk_cipher == WLAN_CIPHER_SUITE_WEP104) || in rsi_is_cipher_wep() 134 (common->secinfo.gtk_cipher == WLAN_CIPHER_SUITE_WEP40)) && in rsi_is_cipher_wep() 135 (!common->secinfo.ptk_cipher)) in rsi_is_cipher_wep() 245 struct rsi_common *common = adapter->priv; in rsi_mac80211_tx() local 247 rsi_core_xmit(common, skb); in rsi_mac80211_tx() 261 struct rsi_common *common = adapter->priv; in rsi_mac80211_start() local 263 mutex_lock(&common->mutex); in rsi_mac80211_start() 264 common->iface_down = false; in rsi_mac80211_start() 265 mutex_unlock(&common->mutex); in rsi_mac80211_start() [all …]
|
D | rsi_91x_main.c | 68 static struct sk_buff *rsi_prepare_skb(struct rsi_common *common, in rsi_prepare_skb() argument 99 rx_params->channel = rsi_get_connected_channel(common->priv); in rsi_prepare_skb() 111 int rsi_read_pkt(struct rsi_common *common, s32 rcv_pkt_len) in rsi_read_pkt() argument 120 frame_desc = &common->rx_data_pkt[index]; in rsi_read_pkt() 130 skb = rsi_prepare_skb(common, in rsi_read_pkt() 137 rsi_indicate_pkt_to_os(common, skb); in rsi_read_pkt() 141 rsi_mgmt_pkt_recv(common, (frame_desc + offset)); in rsi_read_pkt() 167 static void rsi_tx_scheduler_thread(struct rsi_common *common) in rsi_tx_scheduler_thread() argument 169 struct rsi_hw *adapter = common->priv; in rsi_tx_scheduler_thread() 175 rsi_wait_event(&common->tx_thread.event, timeout); in rsi_tx_scheduler_thread() [all …]
|
D | rsi_91x_debugfs.c | 29 struct rsi_common *common = seq->private; in rsi_sdio_stats_read() local 30 struct rsi_hw *adapter = common->priv; in rsi_sdio_stats_read() 84 struct rsi_common *common = seq->private; in rsi_version_read() local 86 common->driver_ver.major = 0; in rsi_version_read() 87 common->driver_ver.minor = 1; in rsi_version_read() 88 common->driver_ver.release_num = 0; in rsi_version_read() 89 common->driver_ver.patch_num = 0; in rsi_version_read() 91 common->driver_ver.major, in rsi_version_read() 92 common->driver_ver.minor, in rsi_version_read() 93 common->driver_ver.release_num, in rsi_version_read() [all …]
|
D | rsi_91x_sdio_ops.c | 75 static int rsi_copy_to_card(struct rsi_common *common, in rsi_copy_to_card() argument 80 struct rsi_hw *adapter = common->priv; in rsi_copy_to_card() 168 static int rsi_load_ta_instructions(struct rsi_common *common) in rsi_load_ta_instructions() argument 170 struct rsi_hw *adapter = common->priv; in rsi_load_ta_instructions() 220 status = rsi_copy_to_card(common, fw, len, num_blocks); in rsi_load_ta_instructions() 235 static int rsi_process_pkt(struct rsi_common *common) in rsi_process_pkt() argument 237 struct rsi_hw *adapter = common->priv; in rsi_process_pkt() 254 common->rx_data_pkt = kmalloc(rcv_pkt_len, GFP_KERNEL); in rsi_process_pkt() 255 if (!common->rx_data_pkt) { in rsi_process_pkt() 262 common->rx_data_pkt, in rsi_process_pkt() [all …]
|
D | rsi_91x_pkt.c | 27 int rsi_send_data_pkt(struct rsi_common *common, struct sk_buff *skb) in rsi_send_data_pkt() argument 29 struct rsi_hw *adapter = common->priv; in rsi_send_data_pkt() 68 (common->secinfo.security_enable)) { in rsi_send_data_pkt() 69 if (rsi_is_cipher_wep(common)) in rsi_send_data_pkt() 80 if (common->min_rate != 0xffff) { in rsi_send_data_pkt() 83 frame_desc[4] = cpu_to_le16(common->min_rate); in rsi_send_data_pkt() 85 if (conf_is_ht40(&common->priv->hw->conf)) in rsi_send_data_pkt() 88 if (common->vif_info[0].sgi) { in rsi_send_data_pkt() 89 if (common->min_rate & 0x100) /* Only MCS rates */ in rsi_send_data_pkt() 101 status = adapter->host_intf_write_pkt(common->priv, in rsi_send_data_pkt() [all …]
|
D | rsi_91x_usb_ops.c | 33 static int rsi_copy_to_card(struct rsi_common *common, in rsi_copy_to_card() argument 38 struct rsi_hw *adapter = common->priv; in rsi_copy_to_card() 89 void rsi_usb_rx_thread(struct rsi_common *common) in rsi_usb_rx_thread() argument 91 struct rsi_hw *adapter = common->priv; in rsi_usb_rx_thread() 101 mutex_lock(&common->tx_rxlock); in rsi_usb_rx_thread() 102 status = rsi_read_pkt(common, 0); in rsi_usb_rx_thread() 105 mutex_unlock(&common->tx_rxlock); in rsi_usb_rx_thread() 108 mutex_unlock(&common->tx_rxlock); in rsi_usb_rx_thread() 132 static int rsi_load_ta_instructions(struct rsi_common *common) in rsi_load_ta_instructions() argument 134 struct rsi_hw *adapter = common->priv; in rsi_load_ta_instructions() [all …]
|
D | rsi_mgmt.h | 289 int rsi_mgmt_pkt_recv(struct rsi_common *common, u8 *msg); 290 int rsi_set_vap_capabilities(struct rsi_common *common, enum opmode mode); 291 int rsi_send_aggregation_params_frame(struct rsi_common *common, u16 tid, 293 int rsi_hal_load_key(struct rsi_common *common, u8 *data, u16 key_len, 295 int rsi_set_channel(struct rsi_common *common, u16 chno); 296 int rsi_send_block_unblock_frame(struct rsi_common *common, bool event); 297 void rsi_inform_bss_status(struct rsi_common *common, u8 status, 299 void rsi_indicate_pkt_to_os(struct rsi_common *common, struct sk_buff *skb); 300 int rsi_mac80211_attach(struct rsi_common *common); 301 void rsi_indicate_tx_status(struct rsi_hw *common, struct sk_buff *skb, [all …]
|
D | rsi_common.h | 60 static inline int rsi_create_kthread(struct rsi_common *common, in rsi_create_kthread() argument 66 thread->task = kthread_run(func_ptr, common, "%s", name); in rsi_create_kthread() 86 int rsi_read_pkt(struct rsi_common *common, s32 rcv_pkt_len);
|
D | rsi_usb.h | 64 int rsi_usb_device_init(struct rsi_common *common); 67 void rsi_usb_rx_thread(struct rsi_common *common);
|
/linux-4.1.27/drivers/net/wireless/ath/ |
D | key.c | 25 #define REG_READ (common->ops->read) 26 #define REG_WRITE(_ah, _reg, _val) (common->ops->write)(_ah, _val, _reg) 28 if (common->ops->enable_write_buffer) \ 29 common->ops->enable_write_buffer((_ah)); 32 if (common->ops->write_flush) \ 33 common->ops->write_flush((_ah)); 42 bool ath_hw_keyreset(struct ath_common *common, u16 entry) in ath_hw_keyreset() argument 45 void *ah = common->ah; in ath_hw_keyreset() 47 if (entry >= common->keymax) { in ath_hw_keyreset() 48 ath_err(common, "keyreset: keycache entry %u out of range\n", in ath_hw_keyreset() [all …]
|
D | hw.c | 23 #define REG_READ (common->ops->read) 24 #define REG_WRITE(_ah, _reg, _val) (common->ops->write)(_ah, _val, _reg) 118 void ath_hw_setbssidmask(struct ath_common *common) in ath_hw_setbssidmask() argument 120 void *ah = common->ah; in ath_hw_setbssidmask() 123 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr)); in ath_hw_setbssidmask() 125 id1 |= get_unaligned_le16(common->macaddr + 4); in ath_hw_setbssidmask() 128 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(common->bssidmask)); in ath_hw_setbssidmask() 129 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(common->bssidmask + 4)); in ath_hw_setbssidmask() 142 void ath_hw_cycle_counters_update(struct ath_common *common) in ath_hw_cycle_counters_update() argument 145 void *ah = common->ah; in ath_hw_cycle_counters_update() [all …]
|
D | ath.h | 143 void (*wakeup)(struct ath_common *common); 144 void (*restore)(struct ath_common *common); 191 static inline const struct ath_ps_ops *ath_ps_ops(struct ath_common *common) in ath_ps_ops() argument 193 return common->ps_ops; in ath_ps_ops() 196 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common, 199 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr); 201 void ath_hw_setbssidmask(struct ath_common *common); 202 void ath_key_delete(struct ath_common *common, struct ieee80211_key_conf *key); 203 int ath_key_config(struct ath_common *common, 207 bool ath_hw_keyreset(struct ath_common *common, u16 entry); [all …]
|
D | main.c | 29 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common, in ath_rxbuf_alloc() argument 49 skb = __dev_alloc_skb(len + common->cachelsz - 1, gfp_mask); in ath_rxbuf_alloc() 51 off = ((unsigned long) skb->data) % common->cachelsz; in ath_rxbuf_alloc() 53 skb_reserve(skb, common->cachelsz - off); in ath_rxbuf_alloc() 63 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr) in ath_is_mybeacon() argument 66 !is_zero_ether_addr(common->curbssid) && in ath_is_mybeacon() 67 ether_addr_equal_64bits(hdr->addr3, common->curbssid); in ath_is_mybeacon() 71 void ath_printk(const char *level, const struct ath_common* common, in ath_printk() argument 82 if (common && common->hw && common->hw->wiphy) { in ath_printk() 84 level, wiphy_name(common->hw->wiphy), &vaf); in ath_printk() [all …]
|
D | dfs_pattern_detector.c | 212 ath_dbg(dpd->common, DFS, in channel_detector_create() 287 ath_dbg(dpd->common, DFS, in dpd_add_pulse() 340 dfs_pattern_detector_init(struct ath_common *common, in dfs_pattern_detector_init() argument 355 dpd->common = common; in dfs_pattern_detector_init() 359 ath_dbg(common, DFS,"Could not set DFS domain to %d", region); in dfs_pattern_detector_init()
|
D | dfs_pattern_detector.h | 98 struct ath_common *common; member 110 dfs_pattern_detector_init(struct ath_common *common,
|
/linux-4.1.27/drivers/media/platform/davinci/ |
D | vpif_display.c | 72 struct common_obj *common; in vpif_buffer_prepare() local 74 common = &ch->common[VPIF_VIDEO_INDEX]; in vpif_buffer_prepare() 76 vb2_set_plane_payload(vb, 0, common->fmt.fmt.pix.sizeimage); in vpif_buffer_prepare() 80 vb->v4l2_buf.field = common->fmt.fmt.pix.field; in vpif_buffer_prepare() 85 if (!ISALIGNED(addr + common->ytop_off) || in vpif_buffer_prepare() 86 !ISALIGNED(addr + common->ybtm_off) || in vpif_buffer_prepare() 87 !ISALIGNED(addr + common->ctop_off) || in vpif_buffer_prepare() 88 !ISALIGNED(addr + common->cbtm_off)) { in vpif_buffer_prepare() 115 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX]; in vpif_buffer_queue_setup() local 117 if (fmt && fmt->fmt.pix.sizeimage < common->fmt.fmt.pix.sizeimage) in vpif_buffer_queue_setup() [all …]
|
D | vpif_capture.c | 77 struct common_obj *common; in vpif_buffer_prepare() local 82 common = &ch->common[VPIF_VIDEO_INDEX]; in vpif_buffer_prepare() 84 vb2_set_plane_payload(vb, 0, common->fmt.fmt.pix.sizeimage); in vpif_buffer_prepare() 88 vb->v4l2_buf.field = common->fmt.fmt.pix.field; in vpif_buffer_prepare() 91 if (!IS_ALIGNED((addr + common->ytop_off), 8) || in vpif_buffer_prepare() 92 !IS_ALIGNED((addr + common->ybtm_off), 8) || in vpif_buffer_prepare() 93 !IS_ALIGNED((addr + common->ctop_off), 8) || in vpif_buffer_prepare() 94 !IS_ALIGNED((addr + common->cbtm_off), 8)) { in vpif_buffer_prepare() 120 struct common_obj *common; in vpif_buffer_queue_setup() local 122 common = &ch->common[VPIF_VIDEO_INDEX]; in vpif_buffer_queue_setup() [all …]
|
/linux-4.1.27/tools/perf/ |
D | command-list.txt | 3 # command name category [deprecated] [common] 5 perf-annotate mainporcelain common 6 perf-archive mainporcelain common 7 perf-bench mainporcelain common 8 perf-buildid-cache mainporcelain common 9 perf-buildid-list mainporcelain common 10 perf-data mainporcelain common 11 perf-diff mainporcelain common 12 perf-evlist mainporcelain common 13 perf-inject mainporcelain common [all …]
|
/linux-4.1.27/drivers/acpi/acpica/ |
D | psparse.c | 160 if (op->common.parent) { in acpi_ps_complete_this_op() 161 prev = op->common.parent->common.value.arg; in acpi_ps_complete_this_op() 174 acpi_ps_get_opcode_info(op->common.parent->common. in acpi_ps_complete_this_op() 199 if ((op->common.parent->common.aml_opcode == in acpi_ps_complete_this_op() 201 || (op->common.parent->common.aml_opcode == in acpi_ps_complete_this_op() 203 || (op->common.parent->common.aml_opcode == in acpi_ps_complete_this_op() 205 || (op->common.parent->common.aml_opcode == in acpi_ps_complete_this_op() 207 || (op->common.parent->common.aml_opcode == in acpi_ps_complete_this_op() 209 || (op->common.parent->common.aml_opcode == in acpi_ps_complete_this_op() 217 if ((op->common.parent->common.aml_opcode == in acpi_ps_complete_this_op() [all …]
|
D | dsobject.c | 89 if (op->common.aml_opcode == AML_INT_NAMEPATH_OP) { in acpi_ds_build_internal_object() 95 if (!op->common.node) { in acpi_ds_build_internal_object() 97 op->common.value.string, in acpi_ds_build_internal_object() 105 common. in acpi_ds_build_internal_object() 114 ((op->common.parent->common.aml_opcode == in acpi_ds_build_internal_object() 116 || (op->common.parent->common.aml_opcode == in acpi_ds_build_internal_object() 135 ACPI_ERROR_NAMESPACE(op->common.value. in acpi_ds_build_internal_object() 145 if ((op->common.parent->common.aml_opcode == AML_PACKAGE_OP) || in acpi_ds_build_internal_object() 146 (op->common.parent->common.aml_opcode == in acpi_ds_build_internal_object() 164 op->common.node); in acpi_ds_build_internal_object() [all …]
|
D | dsutils.c | 204 if ((!op->common.parent) || in acpi_ds_is_result_used() 205 (op->common.parent->common.aml_opcode == AML_SCOPE_OP)) { in acpi_ds_is_result_used() 211 acpi_ps_get_opcode_name(op->common. in acpi_ds_is_result_used() 219 acpi_ps_get_opcode_info(op->common.parent->common.aml_opcode); in acpi_ds_is_result_used() 234 switch (op->common.parent->common.aml_opcode) { in acpi_ds_is_result_used() 247 if ((walk_state->control_state->common.state == in acpi_ds_is_result_used() 275 if ((op->common.parent->common.aml_opcode == AML_REGION_OP) || in acpi_ds_is_result_used() 276 (op->common.parent->common.aml_opcode == AML_DATA_REGION_OP) in acpi_ds_is_result_used() 277 || (op->common.parent->common.aml_opcode == AML_PACKAGE_OP) in acpi_ds_is_result_used() 278 || (op->common.parent->common.aml_opcode == in acpi_ds_is_result_used() [all …]
|
D | pstree.c | 85 op_info = acpi_ps_get_opcode_info(op->common.aml_opcode); in acpi_ps_get_arg() 104 arg = op->common.value.arg; in acpi_ps_get_arg() 107 arg = arg->common.next; in acpi_ps_get_arg() 140 op_info = acpi_ps_get_opcode_info(op->common.aml_opcode); in acpi_ps_append_arg() 146 op->common.aml_opcode)); in acpi_ps_append_arg() 161 if (op->common.value.arg) { in acpi_ps_append_arg() 165 prev_arg = op->common.value.arg; in acpi_ps_append_arg() 166 while (prev_arg->common.next) { in acpi_ps_append_arg() 167 prev_arg = prev_arg->common.next; in acpi_ps_append_arg() 169 prev_arg->common.next = arg; in acpi_ps_append_arg() [all …]
|
D | dsfield.c | 164 if (op->common.aml_opcode == AML_CREATE_FIELD_OP) { in acpi_ds_create_buffer_field() 207 arg->common.value.string, ACPI_TYPE_ANY, in acpi_ds_create_buffer_field() 211 ACPI_ERROR_NAMESPACE(arg->common.value.string, status); in acpi_ds_create_buffer_field() 221 op->common.node = node; in acpi_ds_create_buffer_field() 250 second_desc = obj_desc->common.next_object; in acpi_ds_create_buffer_field() 310 switch (arg->common.aml_opcode) { in acpi_ds_get_field_names() 314 + (u64) arg->common.value.size; in acpi_ds_get_field_names() 343 ((u8)((u32)(arg->common.value.integer & 0x07)))); in acpi_ds_get_field_names() 348 (u8)((arg->common.value.integer >> 8) & 0xFF); in acpi_ds_get_field_names() 353 (u8)((arg->common.value.integer >> 16) & 0xFF); in acpi_ds_get_field_names() [all …]
|
D | nsobject.c | 175 while (last_obj_desc->common.next_object) { in acpi_ns_attach_object() 176 last_obj_desc = last_obj_desc->common.next_object; in acpi_ns_attach_object() 181 last_obj_desc->common.next_object = node->object; in acpi_ns_attach_object() 212 if (!obj_desc || (obj_desc->common.type == ACPI_TYPE_LOCAL_DATA)) { in acpi_ns_detach_object() 220 if (obj_desc->common.type == ACPI_TYPE_METHOD) { in acpi_ns_detach_object() 232 node->object = obj_desc->common.next_object; in acpi_ns_detach_object() 237 (node->object->common.type != ACPI_TYPE_LOCAL_DATA)) { in acpi_ns_detach_object() 238 node->object = node->object->common.next_object; in acpi_ns_detach_object() 245 if (obj_desc->common.next_object && in acpi_ns_detach_object() 246 ((obj_desc->common.next_object)->common.type == in acpi_ns_detach_object() [all …]
|
D | dsopcode.c | 126 if (buffer_desc->common.type != ACPI_TYPE_BUFFER) { in acpi_ds_init_buffer_field() 256 buffer_desc->common.reference_count = (u16) in acpi_ds_init_buffer_field() 257 (buffer_desc->common.reference_count + in acpi_ds_init_buffer_field() 258 obj_desc->common.reference_count); in acpi_ds_init_buffer_field() 313 node = op->common.node; in acpi_ds_eval_buffer_field_operands() 317 next_op = op->common.value.arg; in acpi_ds_eval_buffer_field_operands() 333 status = acpi_ex_resolve_operands(op->common.aml_opcode, in acpi_ds_eval_buffer_field_operands() 337 acpi_ps_get_opcode_name(op->common.aml_opcode), in acpi_ds_eval_buffer_field_operands() 345 if (op->common.aml_opcode == AML_CREATE_FIELD_OP) { in acpi_ds_eval_buffer_field_operands() 350 acpi_ds_init_buffer_field(op->common.aml_opcode, obj_desc, in acpi_ds_eval_buffer_field_operands() [all …]
|
D | dswexec.c | 98 walk_state->control_state->common.state = 0; in acpi_ds_get_predicate_value() 141 if (local_obj_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_ds_get_predicate_value() 144 obj_desc, walk_state, obj_desc->common.type)); in acpi_ds_get_predicate_value() 159 walk_state->control_state->common.value = TRUE; in acpi_ds_get_predicate_value() 165 walk_state->control_state->common.value = FALSE; in acpi_ds_get_predicate_value() 176 walk_state->control_state->common.value, in acpi_ds_get_predicate_value() 193 walk_state->control_state->common.state = ACPI_CONTROL_NORMAL; in acpi_ds_get_predicate_value() 231 walk_state->opcode = op->common.aml_opcode; in acpi_ds_exec_begin_op() 233 acpi_ps_get_opcode_info(op->common.aml_opcode); in acpi_ds_exec_begin_op() 264 (walk_state->control_state->common.state == in acpi_ds_exec_begin_op() [all …]
|
D | psloop.c | 94 switch (op->common.aml_opcode) { in acpi_ps_get_arguments() 143 arg->common.aml_offset = walk_state->aml_offset; in acpi_ps_get_arguments() 163 switch (op->common.aml_opcode) { in acpi_ps_get_arguments() 175 acpi_ps_link_module_code(op->common. in acpi_ps_get_arguments() 206 && (op->common.parent->common.aml_opcode == in acpi_ps_get_arguments() 209 acpi_ps_get_opcode_info(op->common. in acpi_ps_get_arguments() 216 op->common. in acpi_ps_get_arguments() 234 switch (op->common.aml_opcode) { in acpi_ps_get_arguments() 258 if ((op->common.parent) && in acpi_ps_get_arguments() 259 (op->common.parent->common.aml_opcode == in acpi_ps_get_arguments() [all …]
|
D | dswload2.c | 87 (walk_state->control_state->common.state == in acpi_ds_load2_begin_op() 110 buffer_ptr = op->common.value.string; in acpi_ds_load2_begin_op() 230 walk_state->scope_info->common.value = ACPI_TYPE_ANY; in acpi_ds_load2_begin_op() 265 if (op && op->common.node) { in acpi_ds_load2_begin_op() 269 node = op->common.node; in acpi_ds_load2_begin_op() 355 op->common.node = node; in acpi_ds_load2_begin_op() 397 if (op->common.aml_opcode == AML_SCOPE_OP) { in acpi_ds_load2_end_op() 409 node = op->common.node; in acpi_ds_load2_end_op() 421 (op->common.aml_opcode != AML_INT_METHODCALL_OP)) { in acpi_ds_load2_end_op() 462 acpi_ps_get_opcode_name(op->common.aml_opcode), in acpi_ds_load2_end_op() [all …]
|
D | psargs.c | 249 arg->common.value.name = path; in acpi_ps_get_next_namepath() 298 name_op->common.value.name = path; in acpi_ps_get_next_namepath() 302 name_op->common.node = node; in acpi_ps_get_next_namepath() 337 else if (walk_state->op->common.aml_opcode == in acpi_ps_get_next_namepath() 347 else if ((arg->common.parent) && in acpi_ps_get_next_namepath() 348 ((arg->common.parent->common.aml_opcode == in acpi_ps_get_next_namepath() 350 || (arg->common.parent->common.aml_opcode == in acpi_ps_get_next_namepath() 372 arg->common.value.name = path; in acpi_ps_get_next_namepath() 406 arg->common.value.integer = (u64) *aml; in acpi_ps_get_next_simple_arg() 415 ACPI_MOVE_16_TO_64(&arg->common.value.integer, aml); in acpi_ps_get_next_simple_arg() [all …]
|
D | dscontrol.c | 77 op, op->common.aml_opcode, walk_state)); in acpi_ds_exec_begin_control_op() 79 switch (op->common.aml_opcode) { in acpi_ds_exec_begin_control_op() 92 walk_state->control_state->common.state = in acpi_ds_exec_begin_control_op() 119 control_state->control.opcode = op->common.aml_opcode; in acpi_ds_exec_begin_control_op() 173 switch (op->common.aml_opcode) { in acpi_ds_exec_end_control_op() 183 (u8)walk_state->control_state->common.value; in acpi_ds_exec_end_control_op() 203 if (control_state->common.value) { in acpi_ds_exec_end_control_op() 246 op->common.value.arg)); in acpi_ds_exec_end_control_op() 253 if (op->common.value.arg) { in acpi_ds_exec_end_control_op() 263 op->common.value.arg); in acpi_ds_exec_end_control_op() [all …]
|
D | psutils.c | 93 op->common.descriptor_type = ACPI_DESC_TYPE_PARSER; in acpi_ps_init_op() 94 op->common.aml_opcode = opcode; in acpi_ps_init_op() 96 ACPI_DISASM_ONLY_MEMBERS(ACPI_STRNCPY(op->common.aml_op_name, in acpi_ps_init_op() 99 sizeof(op->common.aml_op_name))); in acpi_ps_init_op() 153 op->common.flags = flags; in acpi_ps_alloc_op() 176 if (op->common.aml_opcode == AML_INT_RETURN_VALUE_OP) { in acpi_ps_free_op() 181 if (op->common.flags & ACPI_PARSEOP_GENERIC) { in acpi_ps_free_op() 213 if (op->common.flags & ACPI_PARSEOP_GENERIC) { in acpi_ps_get_name() 231 if (op->common.flags & ACPI_PARSEOP_GENERIC) { in acpi_ps_set_name()
|
D | exstoren.c | 96 if (source_desc->common.type == ACPI_TYPE_LOCAL_REFERENCE) { in acpi_ex_resolve_object() 116 if ((source_desc->common.type != ACPI_TYPE_INTEGER) && in acpi_ex_resolve_object() 117 (source_desc->common.type != ACPI_TYPE_BUFFER) && in acpi_ex_resolve_object() 118 (source_desc->common.type != ACPI_TYPE_STRING) && in acpi_ex_resolve_object() 119 !((source_desc->common.type == ACPI_TYPE_LOCAL_REFERENCE) && in acpi_ex_resolve_object() 213 if (source_desc->common.type != dest_desc->common.type) { in acpi_ex_store_object_to_object() 223 status = acpi_ex_convert_to_target_type(dest_desc->common.type, in acpi_ex_store_object_to_object() 245 switch (dest_desc->common.type) { in acpi_ex_store_object_to_object()
|
D | exfield.c | 151 if (obj_desc->common.type == ACPI_TYPE_BUFFER_FIELD) { in acpi_ex_read_data_from_field() 156 if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) { in acpi_ex_read_data_from_field() 162 } else if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) && in acpi_ex_read_data_from_field() 256 if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) && in acpi_ex_read_data_from_field() 289 obj_desc, obj_desc->common.type, buffer, in acpi_ex_read_data_from_field() 350 if (obj_desc->common.type == ACPI_TYPE_BUFFER_FIELD) { in acpi_ex_write_data_to_field() 355 if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) { in acpi_ex_write_data_to_field() 361 } else if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) && in acpi_ex_write_data_to_field() 379 if (source_desc->common.type != ACPI_TYPE_BUFFER) { in acpi_ex_write_data_to_field() 447 } else if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) && in acpi_ex_write_data_to_field() [all …]
|
D | utstate.c | 70 state->common.next = *list_head; in acpi_ut_push_generic_state() 101 *list_head = state->common.next; in acpi_ut_pop_generic_state() 130 state->common.descriptor_type = ACPI_DESC_TYPE_STATE; in acpi_ut_create_generic_state() 164 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_THREAD; in acpi_ut_create_thread_state() 208 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_UPDATE; in acpi_ut_create_update_state() 244 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_PACKAGE; in acpi_ut_create_pkg_state() 280 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_CONTROL; in acpi_ut_create_control_state() 281 state->common.state = ACPI_CONTROL_CONDITIONAL_EXECUTING; in acpi_ut_create_control_state()
|
D | dswload.c | 166 if (op->common.node) { in acpi_ds_load1_begin_op() 249 walk_state->scope_info->common.value = ACPI_TYPE_ANY; in acpi_ds_load1_begin_op() 399 op->common.node = node; in acpi_ds_load1_begin_op() 466 if (op->common.aml_opcode == AML_REGION_OP) { in acpi_ds_load1_end_op() 471 common. in acpi_ds_load1_end_op() 474 common. in acpi_ds_load1_end_op() 481 } else if (op->common.aml_opcode == AML_DATA_REGION_OP) { in acpi_ds_load1_end_op() 494 if (op->common.aml_opcode == AML_NAME_OP) { in acpi_ds_load1_end_op() 498 if (op->common.value.arg) { in acpi_ds_load1_end_op() 499 object_type = (acpi_ps_get_opcode_info((op->common. in acpi_ds_load1_end_op() [all …]
|
D | psobject.c | 180 unnamed_op->common.value.arg = NULL; in acpi_ps_build_named_op() 181 unnamed_op->common.arg_list_length = 0; in acpi_ps_build_named_op() 182 unnamed_op->common.aml_opcode = walk_state->opcode; in acpi_ps_build_named_op() 241 acpi_ps_append_arg(*op, unnamed_op->common.value.arg); in acpi_ps_build_named_op() 243 if ((*op)->common.aml_opcode == AML_REGION_OP || in acpi_ps_build_named_op() 244 (*op)->common.aml_opcode == AML_DATA_REGION_OP) { in acpi_ps_build_named_op() 340 acpi_ps_get_opcode_info(parent_scope->common.aml_opcode); in acpi_ps_create_op() 344 if (parent_scope->common.arg_list_length > in acpi_ps_create_op() 346 op->common.flags |= ACPI_PARSEOP_TARGET; in acpi_ps_create_op() 348 } else if (parent_scope->common.aml_opcode == AML_INCREMENT_OP) { in acpi_ps_create_op() [all …]
|
D | dswscope.c | 78 acpi_ut_get_type_name(scope_info->common. in acpi_ds_scope_stack_clear() 132 scope_info->common.descriptor_type = ACPI_DESC_TYPE_STATE_WSCOPE; in acpi_ds_scope_stack_push() 134 scope_info->common.value = (u16) type; in acpi_ds_scope_stack_push() 149 common.value))); in acpi_ds_scope_stack_push() 157 acpi_ut_get_type_name(scope_info->common.value))); in acpi_ds_scope_stack_push() 198 acpi_ut_get_type_name(scope_info->common.value))); in acpi_ds_scope_stack_pop() 207 common.value))); in acpi_ds_scope_stack_pop()
|
D | exdump.c | 281 {ACPI_EXD_UINT16, ACPI_EXD_OFFSET(common.reference_count), 283 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common.flags), "Flags"}, 284 {ACPI_EXD_LIST, ACPI_EXD_OFFSET(common.next_object), "Object List"} 397 obj_desc->common.type, in acpi_ex_dump_object() 475 (next), next->common.type); in acpi_ex_dump_object() 477 while (next->common.next_object) { in acpi_ex_dump_object() 478 if ((next->common.type == in acpi_ex_dump_object() 483 next = next->common.next_object; in acpi_ex_dump_object() 487 next->common.type); in acpi_ex_dump_object() 509 (next), next->common.type); in acpi_ex_dump_object() [all …]
|
D | utcopy.c | 138 external_object->type = internal_object->common.type; in acpi_ut_copy_isimple_to_esimple() 142 switch (internal_object->common.type) { in acpi_ut_copy_isimple_to_esimple() 224 acpi_ut_get_type_name(internal_object->common. in acpi_ut_copy_isimple_to_esimple() 356 external_object->type = internal_object->common.type; in acpi_ut_copy_ipackage_to_epackage() 400 if (internal_object->common.type == ACPI_TYPE_PACKAGE) { in acpi_ut_copy_iobject_to_eobject() 685 reference_count = dest_desc->common.reference_count; in acpi_ut_copy_simple_object() 686 next_object = dest_desc->common.next_object; in acpi_ut_copy_simple_object() 702 dest_desc->common.reference_count = reference_count; in acpi_ut_copy_simple_object() 703 dest_desc->common.next_object = next_object; in acpi_ut_copy_simple_object() 707 dest_desc->common.flags &= ~AOPOBJ_STATIC_POINTER; in acpi_ut_copy_simple_object() [all …]
|
D | utdelete.c | 91 switch (object->common.type) { in acpi_ut_delete_internal_obj() 100 if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) { in acpi_ut_delete_internal_obj() 116 if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) { in acpi_ut_delete_internal_obj() 400 original_count = object->common.reference_count; in acpi_ut_update_ref_count() 408 object->common.reference_count = new_count; in acpi_ut_update_ref_count() 421 object, object->common.type, new_count)); in acpi_ut_update_ref_count() 430 object->common.reference_count = new_count; in acpi_ut_update_ref_count() 443 object, object->common.type, new_count)); in acpi_ut_update_ref_count() 467 new_count, object, object->common.type)); in acpi_ut_update_ref_count() 518 switch (object->common.type) { in acpi_ut_update_object_reference() [all …]
|
D | exstore.c | 120 switch (dest_desc->common.type) { in acpi_ex_store() 129 if (dest_desc->common.flags & AOPOBJ_AML_CONSTANT) { in acpi_ex_store() 256 if (source_desc->common.type == ACPI_TYPE_LOCAL_REFERENCE && in acpi_ex_store_object_to_index() 280 index_desc->reference.object)->common. in acpi_ex_store_object_to_index() 291 index_desc->reference.object)->common. in acpi_ex_store_object_to_index() 314 if ((obj_desc->common.type != ACPI_TYPE_BUFFER) && in acpi_ex_store_object_to_index() 315 (obj_desc->common.type != ACPI_TYPE_STRING)) { in acpi_ex_store_object_to_index() 323 switch (source_desc->common.type) { in acpi_ex_store_object_to_index() 467 new_desc->common.type); in acpi_ex_store_object_to_node() 554 status = acpi_ns_attach_object(node, new_desc, new_desc->common.type); in acpi_ex_store_direct_to_node()
|
D | exresop.c | 93 (((union acpi_operand_object *)object)->common. in acpi_ex_check_object_type() 214 object_type = obj_desc->common.type; in acpi_ex_resolve_operands() 289 && (obj_desc->common.type == ACPI_TYPE_STRING)) { in acpi_ex_resolve_operands() 335 ((*stack_ptr)->common.type == in acpi_ex_resolve_operands() 490 switch (obj_desc->common.type) { in acpi_ex_resolve_operands() 512 switch (obj_desc->common.type) { in acpi_ex_resolve_operands() 553 switch (obj_desc->common.type) { in acpi_ex_resolve_operands() 577 switch (obj_desc->common.type) { in acpi_ex_resolve_operands() 600 switch (obj_desc->common.type) { in acpi_ex_resolve_operands() 622 switch (obj_desc->common.type) { in acpi_ex_resolve_operands() [all …]
|
D | exstorob.c | 88 (target_desc->common.flags & AOPOBJ_STATIC_POINTER)) { in acpi_ex_store_buffer_to_buffer() 143 target_desc->common.flags &= ~AOPOBJ_STATIC_POINTER; in acpi_ex_store_buffer_to_buffer() 185 (!(target_desc->common.flags & AOPOBJ_STATIC_POINTER))) { in acpi_ex_store_string_to_string() 199 (!(target_desc->common.flags & AOPOBJ_STATIC_POINTER))) { in acpi_ex_store_string_to_string() 212 target_desc->common.flags &= ~AOPOBJ_STATIC_POINTER; in acpi_ex_store_string_to_string()
|
D | utids.c | 88 if (obj_desc->common.type == ACPI_TYPE_INTEGER) { in acpi_ut_execute_HID() 111 if (obj_desc->common.type == ACPI_TYPE_INTEGER) { in acpi_ut_execute_HID() 233 if (obj_desc->common.type == ACPI_TYPE_INTEGER) { in acpi_ut_execute_UID() 256 if (obj_desc->common.type == ACPI_TYPE_INTEGER) { in acpi_ut_execute_UID() 328 if (obj_desc->common.type == ACPI_TYPE_PACKAGE) { in acpi_ut_execute_CID() 342 switch (cid_objects[i]->common.type) { in acpi_ut_execute_CID() 384 if (cid_objects[i]->common.type == ACPI_TYPE_INTEGER) { in acpi_ut_execute_CID()
|
D | dsargs.c | 96 op->common.node = scope_node; in acpi_ds_execute_arguments() 127 op->common.node = node; in acpi_ds_execute_arguments() 137 op->common.node = scope_node; in acpi_ds_execute_arguments() 188 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) { in acpi_ds_get_buffer_field_arguments() 233 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) { in acpi_ds_get_bank_field_arguments() 283 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) { in acpi_ds_get_buffer_arguments() 327 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) { in acpi_ds_get_package_arguments()
|
D | utobject.c | 123 second_object->common.type = ACPI_TYPE_LOCAL_EXTRA; in acpi_ut_create_internal_object_dbg() 124 second_object->common.reference_count = 1; in acpi_ut_create_internal_object_dbg() 128 object->common.next_object = second_object; in acpi_ut_create_internal_object_dbg() 139 object->common.type = (u8) type; in acpi_ut_create_internal_object_dbg() 143 object->common.reference_count = 1; in acpi_ut_create_internal_object_dbg() 493 switch (internal_object->common.type) { in acpi_ut_get_simple_object_size() 552 internal_object->common.type, internal_object)); in acpi_ut_get_simple_object_size() 696 && (internal_object->common.type == ACPI_TYPE_PACKAGE)) { in acpi_ut_get_object_size()
|
D | nsconvert.c | 76 switch (original_object->common.type) { in acpi_ns_convert_to_integer() 140 switch (original_object->common.type) { in acpi_ns_convert_to_string() 227 switch (original_object->common.type) { in acpi_ns_convert_to_buffer() 273 ((*elements)->common.type != ACPI_TYPE_INTEGER)) { in acpi_ns_convert_to_buffer() 336 if (original_object->common.type == ACPI_TYPE_BUFFER) { in acpi_ns_convert_to_unicode() 402 switch (original_object->common.type) { in acpi_ns_convert_to_resource()
|
D | nsrepair.c | 298 new_object->common.reference_count = in acpi_ns_simple_repair() 299 return_object->common.reference_count; in acpi_ns_simple_repair() 301 if (return_object->common.reference_count > 1) { in acpi_ns_simple_repair() 302 return_object->common.reference_count--; in acpi_ns_simple_repair() 443 new_object->common.reference_count = in acpi_ns_repair_null_element() 444 info->parent_package->common.reference_count; in acpi_ns_repair_null_element()
|
D | exresnte.c | 139 if (source_desc->common.type != ACPI_TYPE_PACKAGE) { in acpi_ex_resolve_node_to_value() 157 if (source_desc->common.type != ACPI_TYPE_BUFFER) { in acpi_ex_resolve_node_to_value() 175 if (source_desc->common.type != ACPI_TYPE_STRING) { in acpi_ex_resolve_node_to_value() 189 if (source_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_ex_resolve_node_to_value()
|
D | exmisc.c | 82 if (obj_desc->common.type != ACPI_TYPE_LOCAL_REFERENCE) { in acpi_ex_get_object_reference() 261 switch (operand0->common.type) { in acpi_ex_do_concatenate() 282 operand0->common.type)); in acpi_ex_do_concatenate() 303 switch (operand0->common.type) { in acpi_ex_do_concatenate() 384 operand0->common.type)); in acpi_ex_do_concatenate() 585 switch (operand0->common.type) { in acpi_ex_do_logical_op() 616 if (operand0->common.type == ACPI_TYPE_INTEGER) { in acpi_ex_do_logical_op()
|
D | nsrepair2.c | 292 switch (return_object->common.type) { in acpi_ns_repair_FDE() 381 if (return_object->common.type == ACPI_TYPE_STRING) { in acpi_ns_repair_CID() 388 if (return_object->common.type != ACPI_TYPE_PACKAGE) { in acpi_ns_repair_CID() 397 original_ref_count = original_element->common.reference_count; in acpi_ns_repair_CID() 410 (*element_ptr)->common.reference_count = in acpi_ns_repair_CID() 536 if (return_object->common.type != ACPI_TYPE_STRING) { in acpi_ns_repair_HID() 642 if (!obj_desc || (obj_desc->common.type != ACPI_TYPE_INTEGER)) { in acpi_ns_repair_PRT() 810 if (return_object->common.type != ACPI_TYPE_PACKAGE) { in acpi_ns_check_sorted_list() 838 if ((*outer_elements)->common.type != ACPI_TYPE_PACKAGE) { in acpi_ns_check_sorted_list() 851 if (obj_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_ns_check_sorted_list()
|
D | exconvrt.c | 84 switch (obj_desc->common.type) { in acpi_ex_convert_to_integer() 119 switch (obj_desc->common.type) { in acpi_ex_convert_to_integer() 208 switch (obj_desc->common.type) { in acpi_ex_convert_to_buffer() 266 return_desc->common.flags |= AOPOBJ_DATA_VALID; in acpi_ex_convert_to_buffer() 412 switch (obj_desc->common.type) { in acpi_ex_convert_to_string() 609 if (destination_type != source_desc->common.type) { in acpi_ex_convert_to_target_type()
|
D | dswstate.c | 237 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_RESULT; in acpi_ds_result_stack_push() 664 while (extra_op && !extra_op->common.node) { in acpi_ds_init_aml_walk() 665 extra_op = extra_op->common.parent; in acpi_ds_init_aml_walk() 671 parser_state->start_node = extra_op->common.node; in acpi_ds_init_aml_walk() 732 walk_state->control_state = state->common.next; in acpi_ds_delete_walk_state() 741 walk_state->scope_info = state->common.next; in acpi_ds_delete_walk_state() 750 walk_state->results = state->common.next; in acpi_ds_delete_walk_state()
|
D | exresolv.c | 151 switch (stack_desc->common.type) { in acpi_ex_resolve_object_to_value() 298 stack_desc, stack_desc->common.type)); in acpi_ex_resolve_object_to_value() 352 type = obj_desc->common.type; in acpi_ex_resolve_multiple() 389 while (obj_desc->common.type == ACPI_TYPE_LOCAL_REFERENCE) { in acpi_ex_resolve_multiple() 522 type = obj_desc->common.type; in acpi_ex_resolve_multiple()
|
D | pswalk.c | 92 next = op->common.next; in acpi_ps_delete_parse_tree() 93 parent = op->common.parent; in acpi_ps_delete_parse_tree()
|
D | exconfig.c | 101 obj_desc->common.flags |= AOPOBJ_DATA_VALID; in acpi_ex_add_table() 356 switch (obj_desc->common.type) { in acpi_ex_load_op() 372 if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) { in acpi_ex_load_op() 592 (ddb_handle->common.type != ACPI_TYPE_LOCAL_REFERENCE) || in acpi_ex_unload_table() 593 (!(ddb_handle->common.flags & AOPOBJ_DATA_VALID))) { in acpi_ex_unload_table() 632 ddb_handle->common.flags &= ~AOPOBJ_DATA_VALID; in acpi_ex_unload_table()
|
D | psscope.c | 117 scope->common.descriptor_type = ACPI_DESC_TYPE_STATE_RPSCOPE; in acpi_ps_init_scope() 158 scope->common.descriptor_type = ACPI_DESC_TYPE_STATE_PSCOPE; in acpi_ps_push_scope() 208 if (scope->common.next) { in acpi_ps_pop_scope()
|
/linux-4.1.27/arch/arm/mach-omap2/ |
D | Makefile | 10 common.o gpio.o dma.o wd_timer.o display.o i2c.o hdq1w.o omap_hwmod.o \ 13 hwmod-common = omap_hwmod.o omap_hwmod_reset.o \ 15 clock-common = clock.o clock_common_data.o \ 17 secure-common = omap-smc.o omap-secure.o 19 obj-$(CONFIG_ARCH_OMAP2) += $(omap-2-3-common) $(hwmod-common) 20 obj-$(CONFIG_ARCH_OMAP3) += $(omap-2-3-common) $(hwmod-common) $(secure-common) 21 obj-$(CONFIG_ARCH_OMAP4) += $(hwmod-common) $(secure-common) 22 obj-$(CONFIG_SOC_AM33XX) += $(hwmod-common) 23 obj-$(CONFIG_SOC_OMAP5) += $(hwmod-common) $(secure-common) 24 obj-$(CONFIG_SOC_AM43XX) += $(hwmod-common) $(secure-common) [all …]
|
D | vp.c | 21 vpconfig &= ~(vp->common->vpconfig_initvoltage_mask | in _vp_set_init_voltage() 22 vp->common->vpconfig_forceupdate | in _vp_set_init_voltage() 23 vp->common->vpconfig_initvdd); in _vp_set_init_voltage() 24 vpconfig |= vsel << __ffs(vp->common->vpconfig_initvoltage_mask); in _vp_set_init_voltage() 28 voltdm->write((vpconfig | vp->common->vpconfig_initvdd), in _vp_set_init_voltage() 76 __ffs(voltdm->vp->common->vpconfig_erroroffset_mask)) | in omap_vp_init() 77 vp->common->vpconfig_timeouten; in omap_vp_init() 81 val = (waittime << vp->common->vstepmin_smpswaittimemin_shift) | in omap_vp_init() 82 (vstepmin << vp->common->vstepmin_stepmin_shift); in omap_vp_init() 86 val = (vstepmax << vp->common->vstepmax_stepmax_shift) | in omap_vp_init() [all …]
|
D | vc.c | 144 vc_cmdval &= ~vc->common->cmd_on_mask; in omap_vc_pre_scale() 145 vc_cmdval |= (*target_vsel << vc->common->cmd_on_shift); in omap_vc_pre_scale() 182 vc_valid = vc->common->valid; in omap_vc_bypass_scale() 183 vc_bypass_val_reg = vc->common->bypass_val_reg; in omap_vc_bypass_scale() 184 vc_bypass_value = (target_vsel << vc->common->data_shift) | in omap_vc_bypass_scale() 185 (vc->volt_reg_addr << vc->common->regaddr_shift) | in omap_vc_bypass_scale() 186 (vc->i2c_slave_addr << vc->common->slaveaddr_shift); in omap_vc_bypass_scale() 717 voltdm->rmw(vc->common->i2c_cfg_clear_mask, in omap_vc_i2c_init() 718 vc->common->i2c_cfg_hsen_mask, in omap_vc_i2c_init() 719 vc->common->i2c_cfg_reg); in omap_vc_i2c_init() [all …]
|
D | vp44xx_data.c | 60 .common = &omap4_vp_common, 71 .common = &omap4_vp_common, 82 .common = &omap4_vp_common,
|
D | vc44xx_data.c | 53 .common = &omap4_vc_common, 66 .common = &omap4_vc_common, 79 .common = &omap4_vc_common,
|
/linux-4.1.27/drivers/net/wireless/ath/ath9k/ |
D | link.c | 70 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_hw_check() local 79 ath_dbg(common, RESET, in ath_hw_check() 96 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_hw_pll_rx_hang_check() local 101 ath_dbg(common, RESET, "PLL WAR, resetting the chip\n"); in ath_hw_pll_rx_hang_check() 118 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_hw_pll_work() local 125 if (!test_bit(ATH_OP_BEACONS, &common->op_flags)) in ath_hw_pll_work() 147 struct ath_common *common = ath9k_hw_common(ah); in ath_paprd_activate() local 152 ath_dbg(common, CALIBRATE, "Failed to activate PAPRD\n"); in ath_paprd_activate() 164 ath_dbg(common, CALIBRATE, "Activating PAPRD\n"); in ath_paprd_activate() 173 struct ath_common *common = ath9k_hw_common(ah); in ath_paprd_send_frame() local [all …]
|
D | htc_drv_init.c | 60 static void ath9k_htc_op_ps_wakeup(struct ath_common *common) in ath9k_htc_op_ps_wakeup() argument 62 ath9k_htc_ps_wakeup((struct ath9k_htc_priv *) common->priv); in ath9k_htc_op_ps_wakeup() 65 static void ath9k_htc_op_ps_restore(struct ath_common *common) in ath9k_htc_op_ps_restore() argument 67 ath9k_htc_ps_restore((struct ath9k_htc_priv *) common->priv); in ath9k_htc_op_ps_restore() 233 struct ath_common *common = ath9k_hw_common(ah); in ath9k_regread() local 234 struct ath9k_htc_priv *priv = (struct ath9k_htc_priv *) common->priv; in ath9k_regread() 243 ath_dbg(common, WMI, "REGISTER READ FAILED: (0x%04x, %d)\n", in ath9k_regread() 255 struct ath_common *common = ath9k_hw_common(ah); in ath9k_multi_regread() local 256 struct ath9k_htc_priv *priv = (struct ath9k_htc_priv *) common->priv; in ath9k_multi_regread() 270 ath_dbg(common, WMI, in ath9k_multi_regread() [all …]
|
D | htc_drv_main.c | 143 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_set_mac_bssid_mask() local 162 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN); in ath9k_htc_set_mac_bssid_mask() 165 memcpy(common->macaddr, iter_data.hw_macaddr, ETH_ALEN); in ath9k_htc_set_mac_bssid_mask() 167 ath_hw_setbssidmask(common); in ath9k_htc_set_mac_bssid_mask() 187 struct ath_common *common = ath9k_hw_common(ah); in ath9k_htc_reset() local 213 ath_err(common, in ath9k_htc_reset() 245 struct ath_common *common = ath9k_hw_common(ah); in ath9k_htc_set_channel() local 246 struct ieee80211_conf *conf = &common->hw->conf; in ath9k_htc_set_channel() 255 if (test_bit(ATH_OP_INVALID, &common->op_flags)) in ath9k_htc_set_channel() 272 ath_dbg(common, CONFIG, in ath9k_htc_set_channel() [all …]
|
D | main.c | 99 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_ps_full_sleep() local 102 spin_lock(&common->cc_lock); in ath_ps_full_sleep() 103 ath_hw_cycle_counters_update(common); in ath_ps_full_sleep() 104 spin_unlock(&common->cc_lock); in ath_ps_full_sleep() 114 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath9k_ps_wakeup() local 132 spin_lock(&common->cc_lock); in ath9k_ps_wakeup() 133 ath_hw_cycle_counters_update(common); in ath9k_ps_wakeup() 134 memset(&common->cc_survey, 0, sizeof(common->cc_survey)); in ath9k_ps_wakeup() 135 memset(&common->cc_ani, 0, sizeof(common->cc_ani)); in ath9k_ps_wakeup() 136 spin_unlock(&common->cc_lock); in ath9k_ps_wakeup() [all …]
|
D | wow.c | 53 struct ath_common *common = ath9k_hw_common(ah); in ath9k_wow_add_disassoc_deauth_pattern() local 108 memcpy((dis_deauth_pattern + byte_cnt), common->curbssid, ETH_ALEN); in ath9k_wow_add_disassoc_deauth_pattern() 113 memcpy((dis_deauth_pattern + byte_cnt), common->curbssid, ETH_ALEN); in ath9k_wow_add_disassoc_deauth_pattern() 172 struct ath_common *common = ath9k_hw_common(ah); in ath9k_suspend() local 180 if (test_bit(ATH_OP_INVALID, &common->op_flags)) { in ath9k_suspend() 181 ath_err(common, "Device not present\n"); in ath9k_suspend() 187 ath_err(common, "None of the WoW triggers enabled\n"); in ath9k_suspend() 193 ath_dbg(common, WOW, "WoW for multivif is not yet supported\n"); in ath9k_suspend() 199 if (test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags)) { in ath9k_suspend() 200 ath_dbg(common, WOW, in ath9k_suspend() [all …]
|
D | init.c | 95 static void ath9k_op_ps_wakeup(struct ath_common *common) in ath9k_op_ps_wakeup() argument 97 ath9k_ps_wakeup((struct ath_softc *) common->priv); in ath9k_op_ps_wakeup() 100 static void ath9k_op_ps_restore(struct ath_common *common) in ath9k_op_ps_restore() argument 102 ath9k_ps_restore((struct ath_softc *) common->priv); in ath9k_op_ps_restore() 119 struct ath_common *common = ath9k_hw_common(ah); in ath9k_iowrite32() local 120 struct ath_softc *sc = (struct ath_softc *) common->priv; in ath9k_iowrite32() 134 struct ath_common *common = ath9k_hw_common(ah); in ath9k_ioread32() local 135 struct ath_softc *sc = (struct ath_softc *) common->priv; in ath9k_ioread32() 174 struct ath_common *common = ath9k_hw_common(ah); in ath9k_reg_rmw() local 175 struct ath_softc *sc = (struct ath_softc *) common->priv; in ath9k_reg_rmw() [all …]
|
D | common-init.c | 125 int ath9k_cmn_init_channels_rates(struct ath_common *common) in ath9k_cmn_init_channels_rates() argument 127 struct ath_hw *ah = (struct ath_hw *)common->ah; in ath9k_cmn_init_channels_rates() 142 common->sbands[IEEE80211_BAND_2GHZ].channels = channels; in ath9k_cmn_init_channels_rates() 143 common->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ; in ath9k_cmn_init_channels_rates() 144 common->sbands[IEEE80211_BAND_2GHZ].n_channels = in ath9k_cmn_init_channels_rates() 146 common->sbands[IEEE80211_BAND_2GHZ].bitrates = ath9k_legacy_rates; in ath9k_cmn_init_channels_rates() 147 common->sbands[IEEE80211_BAND_2GHZ].n_bitrates = in ath9k_cmn_init_channels_rates() 159 common->sbands[IEEE80211_BAND_5GHZ].channels = channels; in ath9k_cmn_init_channels_rates() 160 common->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ; in ath9k_cmn_init_channels_rates() 161 common->sbands[IEEE80211_BAND_5GHZ].n_channels = in ath9k_cmn_init_channels_rates() [all …]
|
D | beacon.c | 36 struct ath_common *common = ath9k_hw_common(ah); in ath9k_beaconq_config() local 61 ath_err(common, "Unable to update h/w beacon queue parameters\n"); in ath9k_beaconq_config() 77 struct ath_common *common = ath9k_hw_common(ah); in ath9k_beacon_setup() local 83 sband = &common->sbands[sc->cur_chandef.chan->band]; in ath9k_beacon_setup() 116 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath9k_beacon_generate() local 149 ath_assign_seq(common, skb); in ath9k_beacon_generate() 160 ath_err(common, "dma_mapping_error on beaconing\n"); in ath9k_beacon_generate() 180 ath_dbg(common, BEACON, in ath9k_beacon_generate() 196 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath9k_beacon_assign_slot() local 213 ath_dbg(common, CONFIG, "Added interface at beacon slot: %d\n", in ath9k_beacon_assign_slot() [all …]
|
D | channel.c | 26 struct ath_common *common = ath9k_hw_common(ah); in ath_set_channel() local 35 if (test_bit(ATH_OP_INVALID, &common->op_flags)) in ath_set_channel() 41 ath_dbg(common, CONFIG, "Set channel: %d MHz width: %d\n", in ath_set_channel() 45 spin_lock_bh(&common->cc_lock); in ath_set_channel() 47 spin_unlock_bh(&common->cc_lock); in ath_set_channel() 90 ath_dbg(common, DFS, "DFS enabled at freq %d\n", in ath_set_channel() 94 if (test_bit(ATH_OP_SCANNING, &common->op_flags) && in ath_set_channel() 96 ath9k_cmn_spectral_scan_trigger(common, &sc->spec_priv); in ath_set_channel() 105 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_chanctx_init() local 110 sband = &common->sbands[IEEE80211_BAND_2GHZ]; in ath_chanctx_init() [all …]
|
D | recv.c | 41 struct ath_common *common = ath9k_hw_common(ah); in ath_rx_buf_link() local 60 common->rx_bufsize, in ath_rx_buf_link() 91 struct ath_common *common = ath9k_hw_common(ah); in ath_opmode_init() local 100 ath_hw_setbssidmask(common); in ath_opmode_init() 141 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_rx_addbuffer_edma() local 145 ath_dbg(common, QUEUE, "No free rx buf available\n"); in ath_rx_addbuffer_edma() 174 struct ath_common *common = ath9k_hw_common(ah); in ath_rx_edma_cleanup() local 183 common->rx_bufsize, in ath_rx_edma_cleanup() 200 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_rx_edma_init() local 207 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize - in ath_rx_edma_init() [all …]
|
D | common.c | 31 bool ath9k_cmn_rx_accept(struct ath_common *common, in ath9k_cmn_rx_accept() argument 38 struct ath_hw *ah = common->ah; in ath9k_cmn_rx_accept() 46 test_bit(rx_stats->rs_keyix, common->tkip_keymap); in ath9k_cmn_rx_accept() 59 !test_bit(rx_stats->rs_keyix, common->ccmp_keymap)) in ath9k_cmn_rx_accept() 118 void ath9k_cmn_rx_skb_postprocess(struct ath_common *common, in ath9k_cmn_rx_skb_postprocess() argument 124 struct ath_hw *ah = common->ah; in ath9k_cmn_rx_skb_postprocess() 159 if (test_bit(keyix, common->keymap)) in ath9k_cmn_rx_skb_postprocess() 170 int ath9k_cmn_process_rate(struct ath_common *common, in ath9k_cmn_process_rate() argument 178 struct ath_hw *ah = common->ah; in ath9k_cmn_process_rate() 212 void ath9k_cmn_process_rssi(struct ath_common *common, in ath9k_cmn_process_rssi() argument [all …]
|
D | htc_drv_beacon.c | 140 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_send_buffered() local 168 ath_dbg(common, XMIT, "No free CAB slot\n"); in ath9k_htc_send_buffered() 178 ath_dbg(common, XMIT, "Failed to send CAB frame\n"); in ath9k_htc_send_buffered() 194 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_send_beacon() local 212 if (unlikely(test_bit(ATH_OP_SCANNING, &common->op_flags))) { in ath9k_htc_send_beacon() 253 ath_dbg(common, BSTUCK, in ath9k_htc_send_beacon() 265 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_choose_bslot() local 278 ath_dbg(common, BEACON, in ath9k_htc_choose_bslot() 288 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_swba() local 294 ath_dbg(common, BSTUCK, "Beacon stuck, HW reset\n"); in ath9k_htc_swba() [all …]
|
D | ar9002_calib.c | 52 struct ath_common *common = ath9k_hw_common(ah); in ar9002_hw_setup_calibration() local 61 ath_dbg(common, CALIBRATE, in ar9002_hw_setup_calibration() 66 ath_dbg(common, CALIBRATE, "starting ADC Gain Calibration\n"); in ar9002_hw_setup_calibration() 70 ath_dbg(common, CALIBRATE, "starting ADC DC Calibration\n"); in ar9002_hw_setup_calibration() 185 struct ath_common *common = ath9k_hw_common(ah); in ar9002_hw_iqcalibrate() local 196 ath_dbg(common, CALIBRATE, in ar9002_hw_iqcalibrate() 200 ath_dbg(common, CALIBRATE, in ar9002_hw_iqcalibrate() 211 ath_dbg(common, CALIBRATE, "Chn %d pwr_meas_i = 0x%08x\n", in ar9002_hw_iqcalibrate() 213 ath_dbg(common, CALIBRATE, "Chn %d pwr_meas_q = 0x%08x\n", in ar9002_hw_iqcalibrate() 215 ath_dbg(common, CALIBRATE, "iqCorrNeg is 0x%08x\n", iqCorrNeg); in ar9002_hw_iqcalibrate() [all …]
|
D | mci.c | 41 static bool ath_mci_add_profile(struct ath_common *common, in ath_mci_add_profile() argument 73 static void ath_mci_del_profile(struct ath_common *common, in ath_mci_del_profile() argument 121 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_mci_update_scheme() local 152 ath_dbg(common, MCI, in ath_mci_update_scheme() 162 ath_dbg(common, MCI, in ath_mci_update_scheme() 168 ath_dbg(common, MCI, in ath_mci_update_scheme() 176 ath_dbg(common, MCI, in ath_mci_update_scheme() 181 ath_dbg(common, MCI, in ath_mci_update_scheme() 213 struct ath_common *common = ath9k_hw_common(ah); in ath_mci_cal_msg() local 223 ath_dbg(common, MCI, "MCI State : %d\n", mci_hw->bt_state); in ath_mci_cal_msg() [all …]
|
D | common-spectral.c | 44 struct ath_common *common = ath9k_hw_common(spec_priv->ah); in ath_cmn_process_fft() local 71 chan_type = cfg80211_get_chandef_type(&common->hw->conf.chandef); in ath_cmn_process_fft() 238 void ath9k_cmn_spectral_scan_trigger(struct ath_common *common, in ath9k_cmn_spectral_scan_trigger() argument 248 ath_err(common, "spectrum analyzer not implemented on this hardware\n"); in ath9k_cmn_spectral_scan_trigger() 252 ath_ps_ops(common)->wakeup(common); in ath9k_cmn_spectral_scan_trigger() 263 ath9k_cmn_spectral_scan_config(common, spec_priv, spec_priv->spectral_mode); in ath9k_cmn_spectral_scan_trigger() 265 ath_ps_ops(common)->restore(common); in ath9k_cmn_spectral_scan_trigger() 269 int ath9k_cmn_spectral_scan_config(struct ath_common *common, in ath9k_cmn_spectral_scan_config() argument 276 ath_err(common, "spectrum analyzer not implemented on this hardware\n"); in ath9k_cmn_spectral_scan_config() 300 ath_ps_ops(common)->wakeup(common); in ath9k_cmn_spectral_scan_config() [all …]
|
D | ani.c | 157 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_set_ofdm_nil() local 162 ath_dbg(common, ANI, "**** ofdmlevel %d=>%d, rssi=%d[lo=%d hi=%d]\n", in ath9k_hw_set_ofdm_nil() 242 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_set_cck_nil() local 246 ath_dbg(common, ANI, "**** ccklevel %d=>%d, rssi=%d[lo=%d hi=%d]\n", in ath9k_hw_set_cck_nil() 329 struct ath_common *common = ath9k_hw_common(ah); in ath9k_ani_reset() local 356 ath_dbg(common, ANI, in ath9k_ani_reset() 371 ath_dbg(common, ANI, in ath9k_ani_reset() 387 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_ani_read_counters() local 392 ath_hw_cycle_counters_update(common); in ath9k_hw_ani_read_counters() 393 listenTime = ath_hw_get_listen_time(common); in ath9k_hw_ani_read_counters() [all …]
|
D | ar9003_calib.c | 41 struct ath_common *common = ath9k_hw_common(ah); in ar9003_hw_setup_calibration() local 55 ath_dbg(common, CALIBRATE, in ar9003_hw_setup_calibration() 62 ath_err(common, "Invalid calibration type\n"); in ar9003_hw_setup_calibration() 200 struct ath_common *common = ath9k_hw_common(ah); in ar9003_hw_iqcalibrate() local 216 ath_dbg(common, CALIBRATE, in ar9003_hw_iqcalibrate() 219 ath_dbg(common, CALIBRATE, in ar9003_hw_iqcalibrate() 230 ath_dbg(common, CALIBRATE, "Chn %d pwr_meas_i = 0x%08x\n", in ar9003_hw_iqcalibrate() 232 ath_dbg(common, CALIBRATE, "Chn %d pwr_meas_q = 0x%08x\n", in ar9003_hw_iqcalibrate() 234 ath_dbg(common, CALIBRATE, "iqCorrNeg is 0x%08x\n", iqCorrNeg); in ar9003_hw_iqcalibrate() 242 ath_dbg(common, CALIBRATE, "Chn %d iCoff = 0x%08x\n", in ar9003_hw_iqcalibrate() [all …]
|
D | common-beacon.c | 59 struct ath_common *common = ath9k_hw_common(ah); in ath9k_cmn_beacon_config_sta() local 64 if (!test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) { in ath9k_cmn_beacon_config_sta() 65 ath_dbg(common, BEACON, in ath9k_cmn_beacon_config_sta() 122 ath_dbg(common, BEACON, "bmiss: %u sleep: %u\n", in ath9k_cmn_beacon_config_sta() 131 struct ath_common *common = ath9k_hw_common(ah); in ath9k_cmn_beacon_config_adhoc() local 146 ath_dbg(common, BEACON, in ath9k_cmn_beacon_config_adhoc() 162 struct ath_common *common = ath9k_hw_common(ah); in ath9k_cmn_beacon_config_ap() local 175 ath_dbg(common, BEACON, in ath9k_cmn_beacon_config_ap()
|
D | calib.c | 85 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_update_nfcal_hist_buffer() local 119 ath_dbg(common, CALIBRATE, in ath9k_hw_update_nfcal_hist_buffer() 188 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_reset_calvalid() local 201 ath_dbg(common, CALIBRATE, "Calibration state incorrect, %d\n", in ath9k_hw_reset_calvalid() 209 ath_dbg(common, CALIBRATE, "Resetting Cal %d state for channel %u\n", in ath9k_hw_reset_calvalid() 242 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_loadnf() local 300 ath_dbg(common, ANY, in ath9k_hw_loadnf() 329 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_nf_sanitize() local 342 ath_dbg(common, CALIBRATE, in ath9k_hw_nf_sanitize() 347 ath_dbg(common, CALIBRATE, in ath9k_hw_nf_sanitize() [all …]
|
D | hw.c | 42 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_set_clockrate() local 67 common->clockrate = clockrate; in ath9k_hw_set_clockrate() 72 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_mac_to_clks() local 74 return usecs * common->clockrate; in ath9k_hw_mac_to_clks() 333 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_chip_test() local 357 ath_err(common, in ath9k_hw_chip_test() 368 ath_err(common, in ath9k_hw_chip_test() 383 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_init_config() local 432 ath_dbg(common, RESET, "serialize_regmode is %d\n", in ath9k_hw_init_config() 475 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_init_macaddr() local [all …]
|
D | common.h | 63 bool ath9k_cmn_rx_accept(struct ath_common *common, 69 void ath9k_cmn_rx_skb_postprocess(struct ath_common *common, 74 int ath9k_cmn_process_rate(struct ath_common *common, 78 void ath9k_cmn_process_rssi(struct ath_common *common, 87 void ath9k_cmn_btcoex_bt_stomp(struct ath_common *common,
|
D | dynack.c | 66 struct ath_common *common = ath9k_hw_common(ah); in ath_dynack_bssidmask() local 69 if ((common->macaddr[i] & common->bssidmask[i]) != in ath_dynack_bssidmask() 70 (mac[i] & common->bssidmask[i])) in ath_dynack_bssidmask() 88 struct ath_common *common = ath9k_hw_common(ah); in ath_dynack_compute_ackto() local 99 ath_dbg(common, DYNACK, "ACK timeout %u slottime %u\n", in ath_dynack_compute_ackto() 177 struct ath_common *common = ath9k_hw_common(ah); in ath_dynack_sample_tx_ts() local 191 ath_dbg(common, DYNACK, "late ack\n"); in ath_dynack_sample_tx_ts() 214 rate = &common->sbands[info->band].bitrates[rates[ridx].idx]; in ath_dynack_sample_tx_ts() 225 ath_dbg(common, DYNACK, "{%pM} tx sample %u [dur %u][h %u-t %u]\n", in ath_dynack_sample_tx_ts() 251 struct ath_common *common = ath9k_hw_common(ah); in ath_dynack_sample_ack_ts() local [all …]
|
D | Makefile | 59 ath9k_common-y:= common.o \ 60 common-init.o \ 61 common-beacon.o \ 62 common-debug.o \ 63 common-spectral.o
|
D | tx99.c | 22 struct ath_common *common = ath9k_hw_common(ah); in ath9k_tx99_stop() local 37 ath_dbg(common, XMIT, "TX99 stopped\n"); in ath9k_tx99_stop() 113 struct ath_common *common = ath9k_hw_common(ah); in ath9k_tx99_init() local 117 if (test_bit(ATH_OP_INVALID, &common->op_flags)) { in ath9k_tx99_init() 118 ath_err(common, in ath9k_tx99_init() 149 ath_dbg(common, XMIT, "Failed to xmit TX99 skb\n"); in ath9k_tx99_init() 153 ath_dbg(common, XMIT, "TX99 xmit started using %d ( %ddBm)\n", in ath9k_tx99_init() 177 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in write_file_tx99() local 196 ath_dbg(common, XMIT, "Resetting TX99\n"); in write_file_tx99()
|
D | mac.c | 200 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_set_txq_props() local 205 ath_dbg(common, QUEUE, in ath9k_hw_set_txq_props() 210 ath_dbg(common, QUEUE, "Set queue properties for: %u\n", q); in ath9k_hw_set_txq_props() 264 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_get_txq_props() local 269 ath_dbg(common, QUEUE, in ath9k_hw_get_txq_props() 296 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_setuptxqueue() local 317 ath_err(common, "Invalid TX queue type: %u\n", type); in ath9k_hw_setuptxqueue() 321 ath_dbg(common, QUEUE, "Setup TX queue: %u\n", q); in ath9k_hw_setuptxqueue() 325 ath_err(common, "TX queue: %u already active\n", q); in ath9k_hw_setuptxqueue() 348 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_releasetxqueue() local [all …]
|
D | ar9003_mci.c | 36 struct ath_common *common = ath9k_hw_common(ah); in ar9003_mci_wait_for_interrupt() local 66 ath_dbg(common, MCI, in ar9003_mci_wait_for_interrupt() 69 ath_dbg(common, MCI, in ar9003_mci_wait_for_interrupt() 226 struct ath_common *common = ath9k_hw_common(ah); in ar9003_mci_prep_interface() local 298 ath_dbg(common, MCI, in ar9003_mci_prep_interface() 301 ath_dbg(common, MCI, in ar9003_mci_prep_interface() 371 struct ath_common *common = ath9k_hw_common(ah); in ar9003_mci_get_isr() local 379 ath_dbg(common, MCI, in ar9003_mci_get_isr() 526 struct ath_common *common = ath9k_hw_common(ah); in ar9003_mci_process_gpm_extra() local 535 ath_dbg(common, MCI, "MCI Recv GPM COEX Version Query\n"); in ar9003_mci_process_gpm_extra() [all …]
|
D | pci.c | 769 static void ath_pci_read_cachesize(struct ath_common *common, int *csz) in ath_pci_read_cachesize() argument 771 struct ath_softc *sc = (struct ath_softc *) common->priv; in ath_pci_read_cachesize() 787 static bool ath_pci_eeprom_read(struct ath_common *common, u32 off, u16 *data) in ath_pci_eeprom_read() argument 789 struct ath_softc *sc = (struct ath_softc *) common->priv; in ath_pci_eeprom_read() 794 ath_err(common, in ath_pci_eeprom_read() 801 struct ath_hw *ah = (struct ath_hw *) common->ah; in ath_pci_eeprom_read() 803 common->ops->read(ah, AR5416_EEPROM_OFFSET + in ath_pci_eeprom_read() 814 *data = MS(common->ops->read(ah, AR_EEPROM_STATUS_DATA), in ath_pci_eeprom_read() 822 static void ath_pci_aspm_init(struct ath_common *common) in ath_pci_aspm_init() argument 824 struct ath_softc *sc = (struct ath_softc *) common->priv; in ath_pci_aspm_init() [all …]
|
D | htc_drv_txrx.c | 133 struct ath_common *common = ath9k_hw_common(priv->ah); in get_htc_epid_queue() local 149 ath_err(common, "Invalid EPID: %d\n", epid); in get_htc_epid_queue() 160 struct ath_common *common = ath9k_hw_common(priv->ah); in strip_drv_header() local 181 ath_err(common, "Unsupported EPID: %d\n", tx_ctl->epid); in strip_drv_header() 616 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_tx_get_packet() local 636 ath_dbg(common, XMIT, "No matching packet for cookie: %d, epid: %d\n", in ath9k_htc_tx_get_packet() 712 struct ath_common *common = ath9k_hw_common(priv->ah); in check_packet() local 720 ath_dbg(common, XMIT, "Dropping a packet due to TX timeout\n"); in check_packet() 758 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_tx_cleanup_timer() local 767 ath_dbg(common, XMIT, in ath9k_htc_tx_cleanup_timer() [all …]
|
D | ahb.c | 54 static void ath_ahb_read_cachesize(struct ath_common *common, int *csz) in ath_ahb_read_cachesize() argument 59 static bool ath_ahb_eeprom_read(struct ath_common *common, u32 off, u16 *data) in ath_ahb_eeprom_read() argument 61 struct ath_softc *sc = (struct ath_softc *)common->priv; in ath_ahb_eeprom_read() 67 ath_err(common, in ath_ahb_eeprom_read()
|
D | debug.c | 90 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in read_file_debug() local 94 len = sprintf(buf, "0x%08x\n", common->debug_mask); in read_file_debug() 102 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in write_file_debug() local 115 common->debug_mask = mask; in write_file_debug() 136 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in read_file_ani() local 168 common->disable_ani ? "DISABLED" : "ENABLED"); in read_file_ani() 170 if (common->disable_ani) in read_file_ani() 192 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in write_file_ani() local 208 common->disable_ani = !ani; in write_file_ani() 210 if (common->disable_ani) { in write_file_ani() [all …]
|
D | htc_drv_gpio.c | 69 struct ath_common *common = ath9k_hw_common(priv->ah); in ath_btcoex_period_work() local 78 ath_err(common, "Unable to set BTCOEX parameters\n"); in ath_btcoex_period_work() 104 struct ath_common *common = ath9k_hw_common(ah); in ath_btcoex_duty_cycle_work() local 106 ath_dbg(common, BTCOEX, "time slice work for bt and wlan\n"); in ath_btcoex_duty_cycle_work() 185 struct ath_common *common = ath9k_hw_common(ah); in ath9k_htc_init_btcoex() local 191 if (!common->btcoex_enabled) { in ath9k_htc_init_btcoex()
|
D | ar9003_phy.c | 1090 struct ath_common *common = ath9k_hw_common(ah); in ar9003_hw_ani_control() local 1174 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1192 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1229 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1237 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1257 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1293 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1301 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1332 ath_dbg(common, ANI, "** ch %d: MRC CCK: %s=>%s\n", in ar9003_hw_ani_control() 1345 ath_dbg(common, ANI, "invalid cmd %u\n", cmd); in ar9003_hw_ani_control() [all …]
|
D | ar5008_phy.c | 146 struct ath_common *common = ath9k_hw_common(ah); in ar5008_hw_force_bias() local 166 ath_dbg(common, CONFIG, "Force rf_pwd_icsyndiv to %1d on %4d\n", in ar5008_hw_force_bias() 187 struct ath_common *common = ath9k_hw_common(ah); in ar5008_hw_set_channel() local 208 ath_err(common, "Invalid channel %u MHz\n", freq); in ar5008_hw_set_channel() 240 ath_err(common, "Invalid channel %u MHz\n", freq); in ar5008_hw_set_channel() 701 struct ath_common *common = ath9k_hw_common(ah); in ar5008_hw_process_ini() local 740 && (common->bus_ops->ath_bus_type != ATH_USB)) { in ar5008_hw_process_ini() 772 && (common->bus_ops->ath_bus_type != ATH_USB)) { in ar5008_hw_process_ini() 933 struct ath_common *common = ath9k_hw_common(ah); in ar5008_hw_ani_control_new() local 1006 ath_dbg(common, ANI, in ar5008_hw_ani_control_new() [all …]
|
/linux-4.1.27/drivers/thermal/ |
D | rcar_thermal.c | 60 struct rcar_thermal_common *common; member 69 #define rcar_thermal_for_each_priv(pos, common) \ argument 70 list_for_each_entry(pos, &common->head, list) 74 #define rcar_priv_to_dev(priv) ((priv)->common->dev) 75 #define rcar_has_irq_support(priv) ((priv)->common->base) 89 static u32 _rcar_thermal_common_read(struct rcar_thermal_common *common, in _rcar_thermal_common_read() argument 92 return ioread32(common->base + reg); in _rcar_thermal_common_read() 97 static void _rcar_thermal_common_write(struct rcar_thermal_common *common, in _rcar_thermal_common_write() argument 100 iowrite32(data, common->base + reg); in _rcar_thermal_common_write() 105 static void _rcar_thermal_common_bset(struct rcar_thermal_common *common, in _rcar_thermal_common_bset() argument [all …]
|
/linux-4.1.27/arch/ia64/include/asm/sn/ |
D | geo.h | 36 geo_common_t common; /* No additional fields needed */ member 40 geo_common_t common; /* No additional fields needed */ member 44 geo_common_t common; /* No additional fields needed */ member 48 geo_iocntl_t common; member 67 geo_common_t common; member 114 return (g.common.type == GEO_TYPE_INVALID) ? in geo_slab() 115 INVALID_SLAB : g.common.slab; in geo_slab() 120 return (g.common.type == GEO_TYPE_INVALID) ? in geo_slot() 121 INVALID_SLOT : g.common.slot; in geo_slot() 126 return (g.common.type == GEO_TYPE_INVALID) ? in geo_module() [all …]
|
/linux-4.1.27/drivers/clk/ti/ |
D | Makefile | 2 clk-common = dpll.o composite.o divider.o gate.o \ 4 obj-$(CONFIG_SOC_AM33XX) += $(clk-common) clk-33xx.o 5 obj-$(CONFIG_SOC_TI81XX) += $(clk-common) fapll.o clk-816x.o 6 obj-$(CONFIG_ARCH_OMAP2) += $(clk-common) interface.o clk-2xxx.o 7 obj-$(CONFIG_ARCH_OMAP3) += $(clk-common) interface.o \ 9 obj-$(CONFIG_ARCH_OMAP4) += $(clk-common) clk-44xx.o 10 obj-$(CONFIG_SOC_OMAP5) += $(clk-common) clk-54xx.o 11 obj-$(CONFIG_SOC_DRA7XX) += $(clk-common) clk-7xx.o \ 13 obj-$(CONFIG_SOC_AM43XX) += $(clk-common) clk-43xx.o
|
/linux-4.1.27/include/net/ |
D | act_api.h | 25 #define tcf_head common.tcfc_head 26 #define tcf_index common.tcfc_index 27 #define tcf_refcnt common.tcfc_refcnt 28 #define tcf_bindcnt common.tcfc_bindcnt 29 #define tcf_capab common.tcfc_capab 30 #define tcf_action common.tcfc_action 31 #define tcf_tm common.tcfc_tm 32 #define tcf_bstats common.tcfc_bstats 33 #define tcf_qstats common.tcfc_qstats 34 #define tcf_rate_est common.tcfc_rate_est [all …]
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/ |
D | offloading.c | 103 struct iwl_proto_offload_cmd_common *common; in iwl_mvm_send_proto_offload() local 193 common = &cmd.v3s.common; in iwl_mvm_send_proto_offload() 196 common = &cmd.v3l.common; in iwl_mvm_send_proto_offload() 199 common = &cmd.v2.common; in iwl_mvm_send_proto_offload() 202 common = &cmd.v1.common; in iwl_mvm_send_proto_offload() 208 common->host_ipv4_addr = vif->bss_conf.arp_addr_list[0]; in iwl_mvm_send_proto_offload() 209 memcpy(common->arp_mac_addr, vif->addr, ETH_ALEN); in iwl_mvm_send_proto_offload() 213 common->enabled = cpu_to_le32(enabled); in iwl_mvm_send_proto_offload()
|
/linux-4.1.27/tools/firewire/ |
D | nosy-dump.h | 20 } common, link_on; member 90 } common; member 93 uint32_t common[3]; member 98 uint32_t common[3]; member 104 uint32_t common[3]; member 111 uint32_t common[3]; member 120 uint32_t common[3]; member 126 uint32_t common[3]; member 135 uint32_t common[3]; member 140 uint32_t common[3]; member
|
D | nosy-dump.c | 501 t = link_transaction_lookup(p->common.source, p->common.destination, in handle_request_packet() 502 p->common.tlabel); in handle_request_packet() 519 if (prev->packet.common.tcode != sa->packet.common.tcode || in handle_request_packet() 520 prev->packet.common.tlabel != sa->packet.common.tlabel) { in handle_request_packet() 530 if (p->common.tcode != TCODE_WRITE_QUADLET_REQUEST && in handle_request_packet() 531 p->common.tcode != TCODE_WRITE_BLOCK_REQUEST) in handle_request_packet() 566 t = link_transaction_lookup(p->common.destination, p->common.source, in handle_response_packet() 567 p->common.tlabel); in handle_response_packet() 585 if (prev->packet.common.tcode != sa->packet.common.tcode || in handle_response_packet() 586 prev->packet.common.tlabel != sa->packet.common.tlabel) { in handle_response_packet() [all …]
|
D | decode-fcp.c | 178 ((unsigned long long) t->request->packet.common.offset_high << 32) | in decode_fcp() 179 t->request->packet.common.offset_low; in decode_fcp() 181 if (t->request->packet.common.tcode != TCODE_WRITE_BLOCK_REQUEST) in decode_fcp()
|
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx5/core/ |
D | qp.c | 46 struct mlx5_core_rsc_common *common; in mlx5_get_rsc() local 50 common = radix_tree_lookup(&table->tree, rsn); in mlx5_get_rsc() 51 if (common) in mlx5_get_rsc() 52 atomic_inc(&common->refcount); in mlx5_get_rsc() 56 if (!common) { in mlx5_get_rsc() 61 return common; in mlx5_get_rsc() 64 void mlx5_core_put_rsc(struct mlx5_core_rsc_common *common) in mlx5_core_put_rsc() argument 66 if (atomic_dec_and_test(&common->refcount)) in mlx5_core_put_rsc() 67 complete(&common->free); in mlx5_core_put_rsc() 72 struct mlx5_core_rsc_common *common = mlx5_get_rsc(dev, rsn); in mlx5_rsc_event() local [all …]
|
/linux-4.1.27/net/batman-adv/ |
D | translation-table.c | 147 common); in batadv_tt_local_hash_find() 172 common); in batadv_tt_global_hash_find() 179 if (atomic_dec_and_test(&tt_local_entry->common.refcount)) in batadv_tt_local_entry_free_ref() 180 kfree_rcu(tt_local_entry, common.rcu); in batadv_tt_local_entry_free_ref() 191 if (atomic_dec_and_test(&tt_global_entry->common.refcount)) { in batadv_tt_global_entry_free_ref() 193 kfree_rcu(tt_global_entry, common.rcu); in batadv_tt_global_entry_free_ref() 349 struct batadv_tt_common_entry *common = &tt_local_entry->common; in batadv_tt_local_event() local 350 uint8_t flags = common->flags | event_flags; in batadv_tt_local_event() 361 ether_addr_copy(tt_change_node->change.addr, common->addr); in batadv_tt_local_event() 362 tt_change_node->change.vid = htons(common->vid); in batadv_tt_local_event() [all …]
|
/linux-4.1.27/drivers/scsi/ibmvscsi/ |
D | viosrp.h | 141 struct mad_common common; member 147 struct mad_common common; member 152 struct mad_common common; member 157 struct mad_common common; member 162 struct mad_common common; member 166 struct mad_common common; member 177 struct mad_capability_common common; member 182 struct mad_capability_common common; member
|
D | ibmvfc.h | 147 struct ibmvfc_mad_common common; member 152 struct ibmvfc_mad_common common; member 191 struct ibmvfc_common_svc_parms common; member 241 struct ibmvfc_mad_common common; member 280 struct ibmvfc_mad_common common; member 317 struct ibmvfc_mad_common common; member 328 struct ibmvfc_mad_common common; member 339 struct ibmvfc_mad_common common; member 345 struct ibmvfc_mad_common common; member 487 struct ibmvfc_mad_common common; member
|
/linux-4.1.27/drivers/virtio/ |
D | virtio_pci_modern.c | 148 vp_iowrite32(0, &vp_dev->common->device_feature_select); in vp_get_features() 149 features = vp_ioread32(&vp_dev->common->device_feature); in vp_get_features() 150 vp_iowrite32(1, &vp_dev->common->device_feature_select); in vp_get_features() 151 features |= ((u64)vp_ioread32(&vp_dev->common->device_feature) << 32); in vp_get_features() 170 vp_iowrite32(0, &vp_dev->common->guest_feature_select); in vp_finalize_features() 171 vp_iowrite32((u32)vdev->features, &vp_dev->common->guest_feature); in vp_finalize_features() 172 vp_iowrite32(1, &vp_dev->common->guest_feature_select); in vp_finalize_features() 173 vp_iowrite32(vdev->features >> 32, &vp_dev->common->guest_feature); in vp_finalize_features() 252 return vp_ioread8(&vp_dev->common->config_generation); in vp_generation() 259 return vp_ioread8(&vp_dev->common->device_status); in vp_get_status() [all …]
|
/linux-4.1.27/drivers/usb/gadget/legacy/ |
D | mass_storage.c | 127 static int msg_thread_exits(struct fsg_common *common) in msg_thread_exits() argument 186 status = fsg_common_set_num_buffers(opts->common, fsg_num_buffers); in msg_bind() 190 fsg_common_set_ops(opts->common, &ops); in msg_bind() 192 status = fsg_common_set_cdev(opts->common, cdev, config.can_stall); in msg_bind() 196 fsg_common_set_sysfs(opts->common, true); in msg_bind() 197 status = fsg_common_create_luns(opts->common, &config); in msg_bind() 201 fsg_common_set_inquiry_string(opts->common, config.vendor_name, in msg_bind() 220 fsg_common_remove_luns(opts->common); in msg_bind() 222 fsg_common_free_buffers(opts->common); in msg_bind()
|
D | acm_ms.c | 195 status = fsg_common_set_num_buffers(opts->common, fsg_num_buffers); in acm_ms_bind() 199 status = fsg_common_set_cdev(opts->common, cdev, config.can_stall); in acm_ms_bind() 203 fsg_common_set_sysfs(opts->common, true); in acm_ms_bind() 204 status = fsg_common_create_luns(opts->common, &config); in acm_ms_bind() 208 fsg_common_set_inquiry_string(opts->common, config.vendor_name, in acm_ms_bind() 232 fsg_common_remove_luns(opts->common); in acm_ms_bind() 234 fsg_common_free_buffers(opts->common); in acm_ms_bind()
|
D | multi.c | 394 status = fsg_common_set_num_buffers(fsg_opts->common, fsg_num_buffers); in multi_bind() 398 status = fsg_common_set_cdev(fsg_opts->common, cdev, config.can_stall); in multi_bind() 402 fsg_common_set_sysfs(fsg_opts->common, true); in multi_bind() 403 status = fsg_common_create_luns(fsg_opts->common, &config); in multi_bind() 407 fsg_common_set_inquiry_string(fsg_opts->common, config.vendor_name, in multi_bind() 433 fsg_common_remove_luns(fsg_opts->common); in multi_bind() 435 fsg_common_free_buffers(fsg_opts->common); in multi_bind()
|
/linux-4.1.27/drivers/media/common/ |
D | Kconfig | 1 # Used by common drivers, when they need to ask questions 5 comment "common driver options" 19 source "drivers/media/common/b2c2/Kconfig" 20 source "drivers/media/common/saa7146/Kconfig" 21 source "drivers/media/common/siano/Kconfig"
|
/linux-4.1.27/drivers/usb/common/ |
D | Makefile | 5 obj-$(CONFIG_USB_COMMON) += usb-common.o 6 usb-common-y += common.o 7 usb-common-$(CONFIG_USB_LED_TRIG) += led.o
|
/linux-4.1.27/drivers/iio/common/ |
D | Kconfig | 2 # IIO common modules 5 source "drivers/iio/common/hid-sensors/Kconfig" 6 source "drivers/iio/common/ssp_sensors/Kconfig" 7 source "drivers/iio/common/st_sensors/Kconfig"
|
/linux-4.1.27/arch/ia64/sn/pci/pcibr/ |
D | pcibr_dma.c | 248 struct sn_flush_device_common *common; in sn_dma_flush() local 297 common = p->common; in sn_dma_flush() 299 if (common->sfdl_bar_list[j].start == 0) in sn_dma_flush() 301 if (addr >= common->sfdl_bar_list[j].start in sn_dma_flush() 302 && addr <= common->sfdl_bar_list[j].end) in sn_dma_flush() 305 if (j < PCI_ROM_RESOURCE && common->sfdl_bar_list[j].start != 0) in sn_dma_flush() 332 pcireg_wrb_flush_get(common->sfdl_pcibus_info, in sn_dma_flush() 333 (common->sfdl_slot - 1)); in sn_dma_flush() 337 *common->sfdl_flush_addr = 0; in sn_dma_flush() 340 *(volatile u32 *)(common->sfdl_force_int_addr) = 1; in sn_dma_flush() [all …]
|
D | pcibr_provider.c | 120 struct sn_flush_device_common *common; in pcibr_bus_fixup() local 171 common = sn_flush_device_kernel->common; in pcibr_bus_fixup() 172 if (common->sfdl_slot == -1) in pcibr_bus_fixup() 174 if ((common->sfdl_persistent_segment == in pcibr_bus_fixup() 176 (common->sfdl_persistent_busnum == in pcibr_bus_fixup() 178 common->sfdl_pcibus_info = in pcibr_bus_fixup()
|
/linux-4.1.27/net/caif/ |
D | caif_usb.c | 127 struct caif_dev_common common; in cfusbl_device_notify() local 157 memset(&common, 0, sizeof(common)); in cfusbl_device_notify() 158 common.use_frag = false; in cfusbl_device_notify() 159 common.use_fcs = false; in cfusbl_device_notify() 160 common.use_stx = false; in cfusbl_device_notify() 161 common.link_select = CAIF_LINK_HIGH_BANDW; in cfusbl_device_notify() 162 common.flowctrl = NULL; in cfusbl_device_notify() 173 caif_enroll_dev(dev, &common, link_support, CFUSB_MAX_HEADLEN, in cfusbl_device_notify()
|
/linux-4.1.27/arch/mips/sibyte/ |
D | Makefile | 5 obj-$(CONFIG_SIBYTE_BCM112X) += common/ 7 obj-$(CONFIG_SIBYTE_SB1250) += common/ 9 obj-$(CONFIG_SIBYTE_BCM1x55) += common/ 11 obj-$(CONFIG_SIBYTE_BCM1x80) += common/
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/ |
D | pwm-clock.txt | 3 This binding uses the common clock binding[1] and the common PWM binding[2]. 10 - #clock-cells : from common clock binding; shall be set to 0. 11 - pwms : from common PWM binding; this determines the clock frequency 15 - clock-output-names : From common clock binding.
|
D | fixed-factor-clock.txt | 3 This binding uses the common clock binding[1]. 9 - #clock-cells : from common clock binding; shall be set to 0. 15 - clock-output-names : From common clock binding.
|
D | keystone-pll.txt | 9 This binding uses the common clock binding[1]. 14 - #clock-cells : from common clock binding; shall be set to 0. 43 - #clock-cells : from common clock binding; shall be set to 0. 51 - clock-output-names : From common clock binding. 65 - #clock-cells : from common clock binding; shall be set to 0. 73 - clock-output-names : From common clock binding.
|
D | fixed-clock.txt | 3 This binding uses the common clock binding[1]. 9 - #clock-cells : from common clock binding; shall be set to 0. 15 - clock-output-names : From common clock binding.
|
D | axi-clkgen.txt | 3 This binding uses the common clock binding[1]. 9 - #clock-cells : from common clock binding; Should always be set to 0. 14 - clock-output-names : From common clock binding.
|
D | silabs,si570.txt | 5 This binding uses the common clock binding[1]. Details about the devices can be 18 - #clock-cells: From common clock bindings: Shall be 0. 27 - clock-output-names: From common clock bindings. Recommended to be "si570". 30 runtime through the common clock framework.
|
D | keystone-gate.txt | 5 This binding uses the common clock binding[1]. 11 - #clock-cells : from common clock binding; shall be set to 0. 18 - clock-output-names : From common clock binding to override the
|
D | at91-clock.txt | 3 This binding uses the common clock binding[1]. 98 - #clock-cells : from common clock binding; shall be set to 0. 112 - #clock-cells : from common clock binding; shall be set to 0. 127 - #clock-cells : from common clock binding; shall be set to 0. 188 - #clock-cells : from common clock binding; shall be set to 0. 209 - #clock-cells : from common clock binding; shall be set to 0. 224 - #clock-cells : from common clock binding; shall be set to 0. 252 * #clock-cells : from common clock binding; shall be set to 0. 283 - #clock-cells : from common clock binding; shall be set to 0. 324 - #clock-cells : from common clock binding; shall be set to 0. [all …]
|
D | nvidia,tegra124-car.txt | 3 This binding uses the common clock binding: 17 <dt-bindings/clock/tegra124-car-common.h> (which covers IDs common
|
D | gpio-gate-clock.txt | 3 This binding uses the common clock binding[1]. 9 - #clock-cells : from common clock binding; shall be set to 0.
|
/linux-4.1.27/drivers/dma/ |
D | qcom_bam_dma.c | 375 static inline struct bam_chan *to_bam_chan(struct dma_chan *common) in to_bam_chan() argument 377 return container_of(common, struct bam_chan, vc.chan); in to_bam_chan() 383 struct dma_device common; member 1004 struct bam_device, common); in bam_dma_xlate() 1076 vchan_init(&bchan->vc, &bdev->common); in bam_channel_init() 1150 INIT_LIST_HEAD(&bdev->common.channels); in bam_dma_probe() 1161 bdev->common.dev = bdev->dev; in bam_dma_probe() 1162 bdev->common.dev->dma_parms = &bdev->dma_parms; in bam_dma_probe() 1163 ret = dma_set_max_seg_size(bdev->common.dev, BAM_MAX_DATA_SIZE); in bam_dma_probe() 1172 dma_cap_zero(bdev->common.cap_mask); in bam_dma_probe() [all …]
|
D | iop-adma.c | 37 #define to_iop_adma_chan(chan) container_of(chan, struct iop_adma_chan, common) 39 container_of(dev, struct iop_adma_device, common) 104 dev_dbg(iop_chan->device->common.dev, in iop_adma_clean_slot() 122 dev_dbg(iop_chan->device->common.dev, "%s\n", __func__); in __iop_adma_slot_cleanup() 238 iop_chan->common.completed_cookie = cookie; in __iop_adma_slot_cleanup() 317 dev_dbg(iop_chan->device->common.dev, in iop_adma_alloc_slots() 361 dev_dbg(iop_chan->device->common.dev, "pending: %d\n", in iop_adma_check_threshold() 410 dev_dbg(iop_chan->device->common.dev, "%s cookie: %d slot: %d\n", in iop_adma_tx_submit() 476 dev_dbg(iop_chan->device->common.dev, in iop_adma_alloc_chan_resources() 483 iop_chan->device->common.cap_mask)) in iop_adma_alloc_chan_resources() [all …]
|
D | fsldma.c | 473 dma_async_tx_descriptor_init(&desc->async_tx, &chan->common); in fsl_dma_alloc_descriptor() 683 chan->common.completed_cookie = cookie; in fsldma_cleanup_descriptors() 1304 chan->common.device = &fdev->common; in fsl_dma_chan_probe() 1305 dma_cookie_init(&chan->common); in fsl_dma_chan_probe() 1311 list_add_tail(&chan->common.device_node, &fdev->common.channels); in fsl_dma_chan_probe() 1329 list_del(&chan->common.device_node); in fsl_dma_chan_remove() 1348 INIT_LIST_HEAD(&fdev->common.channels); in fsldma_of_probe() 1361 dma_cap_set(DMA_MEMCPY, fdev->common.cap_mask); in fsldma_of_probe() 1362 dma_cap_set(DMA_SG, fdev->common.cap_mask); in fsldma_of_probe() 1363 dma_cap_set(DMA_SLAVE, fdev->common.cap_mask); in fsldma_of_probe() [all …]
|
/linux-4.1.27/scripts/ |
D | bloat-o-meter | 34 delta, common = [], {} variable 38 common[a] = 1 41 if name not in common: 47 if name not in common: 52 for name in common:
|
/linux-4.1.27/drivers/dma/xilinx/ |
D | xilinx_vdma.c | 219 struct dma_chan common; member 246 struct dma_device common; member 254 container_of(chan, struct xilinx_vdma_chan, common) 953 dma_async_tx_descriptor_init(&desc->async_tx, &chan->common); in xilinx_vdma_dma_prep_interleaved() 1101 list_del(&chan->common.device_node); in xilinx_vdma_chan_remove() 1152 xdev->common.copy_align = fls(width - 1); in xilinx_vdma_chan_probe() 1197 chan->common.device = &xdev->common; in xilinx_vdma_chan_probe() 1199 list_add_tail(&chan->common.device_node, &xdev->common.channels); in xilinx_vdma_chan_probe() 1228 return dma_get_slave_channel(&xdev->chan[chan_id]->common); in of_dma_xilinx_xlate() 1274 xdev->common.dev = &pdev->dev; in xilinx_vdma_probe() [all …]
|
/linux-4.1.27/drivers/net/wireless/ath/ath5k/ |
D | pcu.c | 372 struct ath_common *common = ath5k_hw_common(ah); in ath5k_hw_set_lladdr() local 377 memcpy(common->macaddr, mac, ETH_ALEN); in ath5k_hw_set_lladdr() 400 struct ath_common *common = ath5k_hw_common(ah); in ath5k_hw_set_bssid() local 407 ath_hw_setbssidmask(common); in ath5k_hw_set_bssid() 413 get_unaligned_le32(common->curbssid), in ath5k_hw_set_bssid() 416 get_unaligned_le16(common->curbssid + 4) | in ath5k_hw_set_bssid() 417 ((common->curaid & 0x3fff) << AR5K_BSS_ID1_AID_S), in ath5k_hw_set_bssid() 420 if (common->curaid == 0) { in ath5k_hw_set_bssid() 449 struct ath_common *common = ath5k_hw_common(ah); in ath5k_hw_set_bssid_mask() local 453 memcpy(common->bssidmask, mask, ETH_ALEN); in ath5k_hw_set_bssid_mask() [all …]
|
D | mac80211-ops.c | 257 struct ath_common *common = ath5k_hw_common(ah); in ath5k_bss_info_changed() local 263 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN); in ath5k_bss_info_changed() 264 common->curaid = 0; in ath5k_bss_info_changed() 295 bss_conf->aid, common->curbssid); in ath5k_bss_info_changed() 296 common->curaid = bss_conf->aid; in ath5k_bss_info_changed() 489 struct ath_common *common = ath5k_hw_common(ah); in ath5k_set_key() local 512 if (common->crypt_caps & ATH_CRYPT_CAP_CIPHER_AESCCM) in ath5k_set_key() 524 ret = ath_key_config(common, vif, sta, key); in ath5k_set_key() 537 ath_key_delete(common, key); in ath5k_set_key() 665 struct ath_common *common = ath5k_hw_common(ah); in ath5k_get_survey() local [all …]
|
D | base.c | 522 struct ath_common *common = ath5k_hw_common(ah); in ath5k_update_bssid_mask_and_opmode() local 530 iter_data.hw_macaddr = common->macaddr; in ath5k_update_bssid_mask_and_opmode() 599 struct ath_common *common = ath5k_hw_common(ah); in ath5k_rx_skb_alloc() local 606 skb = ath_rxbuf_alloc(common, in ath5k_rx_skb_alloc() 607 common->rx_bufsize, in ath5k_rx_skb_alloc() 612 common->rx_bufsize); in ath5k_rx_skb_alloc() 617 skb->data, common->rx_bufsize, in ath5k_rx_skb_alloc() 660 ret = ath5k_hw_setup_rx_desc(ah, ds, ah->common.rx_bufsize, 0); in ath5k_rxbuf_setup() 935 struct ath_common *common = ath5k_hw_common(ah); in ath5k_rxbuf_free_skb() local 940 dma_unmap_single(ah->dev, bf->skbaddr, common->rx_bufsize, in ath5k_rxbuf_free_skb() [all …]
|
D | attach.c | 107 struct ath_common *common = ath5k_hw_common(ah); in ath5k_hw_init() local 312 common->keymax = (ah->ah_version == AR5K_AR5210 ? in ath5k_hw_init() 318 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM; in ath5k_hw_init() 321 common->crypt_caps |= ATH_CRYPT_CAP_MIC_COMBINED; in ath5k_hw_init() 330 memcpy(common->curbssid, ath_bcast_mac, ETH_ALEN); in ath5k_hw_init()
|
/linux-4.1.27/drivers/media/usb/tm6000/ |
D | tm6000-stds.c | 38 struct tm6000_reg_settings *common; member 181 { .id = V4L2_STD_PAL_M, .common = composite_pal_m, }, 182 { .id = V4L2_STD_PAL_Nc, .common = composite_pal_nc, }, 183 { .id = V4L2_STD_PAL, .common = composite_pal, }, 184 { .id = V4L2_STD_SECAM, .common = composite_secam, }, 185 { .id = V4L2_STD_NTSC, .common = composite_ntsc, }, 329 { .id = V4L2_STD_PAL_M, .common = svideo_pal_m, }, 330 { .id = V4L2_STD_PAL_Nc, .common = svideo_pal_nc, }, 331 { .id = V4L2_STD_PAL, .common = svideo_pal, }, 332 { .id = V4L2_STD_SECAM, .common = svideo_secam, }, [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/st/ |
D | st,clkgen-prediv.txt | 3 This binding uses the common clock binding[1]. 15 - #clock-cells : From common clock binding; shall be set to 0. 17 - clocks : From common clock binding 19 - clock-output-names : From common clock binding.
|
D | st,clkgen-divmux.txt | 3 This binding uses the common clock binding[1]. 19 - #clock-cells : From common clock binding; shall be set to 1. 21 - clocks : From common clock binding 23 - clock-output-names : From common clock binding.
|
D | st,quadfs.txt | 8 This binding uses the common clock binding[1]. 22 - #clock-cells : from common clock binding; shall be set to 1. 26 - clocks : from common clock binding 28 - clock-output-names : From common clock binding. The block has 4
|
D | st,clkgen-pll.txt | 3 This binding uses the common clock binding[1]. 30 - #clock-cells : From common clock binding; shall be set to 1. 32 - clocks : From common clock binding 34 - clock-output-names : From common clock binding.
|
D | st,clkgen-vcc.txt | 9 This binding uses the common clock binding[1]. 19 - #clock-cells : from common clock binding; shall be set to 1. 23 - clocks : from common clock binding 25 - clock-output-names : From common clock binding. The block has 16
|
D | st,clkgen-mux.txt | 6 This binding uses the common clock binding[1]. 22 - #clock-cells : from common clock binding; shall be set to 0. 26 - clocks : from common clock binding
|
/linux-4.1.27/arch/mips/kvm/ |
D | Makefile | 4 common-objs-y = $(addprefix ../../../virt/kvm/, kvm_main.o coalesced_mmio.o) 8 common-objs-$(CONFIG_CPU_HAS_MSA) += msa.o 10 kvm-objs := $(common-objs-y) mips.o emulate.o locore.o \
|
/linux-4.1.27/drivers/dma/ppc4xx/ |
D | adma.h | 19 container_of(chan, struct ppc440spe_adma_chan, common) 21 container_of(dev, struct ppc440spe_adma_device, common) 73 struct dma_device common; member 97 struct dma_chan common; member
|
D | adma.c | 1535 dev_dbg(chan->device->common.dev, "\tfree slot %llx: %d stride: %d\n", in ppc440spe_adma_clean_slot() 1558 dev_dbg(chan->device->common.dev, "ppc440spe adma%d: %s\n", in __ppc440spe_adma_slot_cleanup() 1573 dev_dbg(chan->device->common.dev, "\tcookie: %d slot: %d " in __ppc440spe_adma_slot_cleanup() 1639 chan->common.completed_cookie = cookie; in __ppc440spe_adma_slot_cleanup() 1669 chan->common.completed_cookie = cookie; in __ppc440spe_adma_slot_cleanup() 1832 dev_dbg(ppc440spe_chan->device->common.dev, in ppc440spe_adma_alloc_chan_resources() 1898 dev_dbg(chan->device->common.dev, "ppc440spe adma%d: pending: %d\n", in ppc440spe_adma_check_threshold() 1950 dev_dbg(chan->device->common.dev, in ppc440spe_adma_tx_submit() 1970 dev_dbg(ppc440spe_chan->device->common.dev, in ppc440spe_adma_prep_dma_interrupt() 2009 dev_dbg(ppc440spe_chan->device->common.dev, in ppc440spe_adma_prep_dma_memcpy() [all …]
|
/linux-4.1.27/drivers/net/wireless/p54/ |
D | p54pci.c | 86 if (priv->common.fw_interface != FW_LM86) { in p54p_upload_firmware() 155 skb = dev_alloc_skb(priv->common.rx_mtu + 32); in p54p_refill_rx_ring() 161 priv->common.rx_mtu + 32, in p54p_refill_rx_ring() 173 desc->len = cpu_to_le16(priv->common.rx_mtu + 32); in p54p_refill_rx_ring() 213 if (unlikely(len > priv->common.rx_mtu)) { in p54p_check_rx_ring() 218 len = priv->common.rx_mtu; in p54p_check_rx_ring() 222 priv->common.rx_mtu + 32, PCI_DMA_FROMDEVICE); in p54p_check_rx_ring() 227 priv->common.rx_mtu + 32, PCI_DMA_FROMDEVICE); in p54p_check_rx_ring() 233 priv->common.rx_mtu + 32, PCI_DMA_FROMDEVICE); in p54p_check_rx_ring() 234 desc->len = cpu_to_le16(priv->common.rx_mtu + 32); in p54p_check_rx_ring() [all …]
|
D | p54usb.c | 157 skb_pull(skb, priv->common.tx_hdr_len); in p54u_rx_cb() 158 if (priv->common.fw_interface == FW_LM87) { in p54u_rx_cb() 164 skb = dev_alloc_skb(priv->common.rx_mtu + 32); in p54u_rx_cb() 177 skb_push(skb, priv->common.tx_hdr_len); in p54u_rx_cb() 178 if (priv->common.fw_interface == FW_LM87) { in p54u_rx_cb() 231 skb = __dev_alloc_skb(priv->common.rx_mtu + 32, GFP_KERNEL); in p54u_init_urbs() 245 priv->common.rx_mtu + 32, p54u_rx_cb, skb); in p54u_init_urbs() 869 struct ieee80211_hw *dev = priv->common.hw; in p54u_start_ops() 880 if (priv->common.fw_interface != p54u_fwlist[ret].intf) { in p54u_start_ops() 1034 priv->common.open = p54u_open; in p54u_probe() [all …]
|
/linux-4.1.27/drivers/media/usb/dvb-usb/ |
D | Makefile | 17 dvb-usb-dibusb-common-objs := dibusb-common.o 20 obj-$(CONFIG_DVB_USB_A800) += dvb-usb-dibusb-common.o dvb-usb-a800.o 23 obj-$(CONFIG_DVB_USB_DIBUSB_MB) += dvb-usb-dibusb-common.o dvb-usb-dibusb-mb.o 26 obj-$(CONFIG_DVB_USB_DIBUSB_MC) += dvb-usb-dibusb-common.o dvb-usb-dibusb-mc.o 29 obj-$(CONFIG_DVB_USB_NOVA_T_USB2) += dvb-usb-dibusb-common.o dvb-usb-nova-t-usb2.o 32 obj-$(CONFIG_DVB_USB_UMT_010) += dvb-usb-dibusb-common.o dvb-usb-umt-010.o
|
/linux-4.1.27/drivers/net/caif/ |
D | caif_serial.c | 66 struct caif_dev_common common; member 188 if (!ser->common.use_stx && !ser->tx_started) { in ldisc_receive() 271 ser->common.flowctrl != NULL) in handle_tx() 272 ser->common.flowctrl(ser->dev, ON); in handle_tx() 290 ser->common.flowctrl != NULL) in caif_xmit() 292 ser->common.flowctrl(ser->dev, OFF); in caif_xmit() 433 serdev->common.link_select = CAIF_LINK_LOW_LATENCY; in caifdev_setup() 434 serdev->common.use_frag = true; in caifdev_setup() 435 serdev->common.use_stx = ser_use_stx; in caifdev_setup() 436 serdev->common.use_fcs = ser_use_fcs; in caifdev_setup()
|
/linux-4.1.27/arch/powerpc/kvm/ |
D | Makefile | 10 common-objs-y = $(KVM)/kvm_main.o $(KVM)/coalesced_mmio.o \ 18 common-objs-y += powerpc.o emulate.o emulate_loadstore.o 25 $(common-objs-y) \ 36 $(common-objs-y) \ 103 $(common-objs-y) \
|
/linux-4.1.27/drivers/media/platform/exynos4-is/ |
D | Makefile | 4 exynos4-is-common-objs := common.o 17 obj-$(CONFIG_VIDEO_EXYNOS4_IS_COMMON) += exynos4-is-common.o
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | primecell.txt | 16 - clocks : From common clock binding. First clock is phandle to clock for apb 18 - clock-names : From common clock binding. Shall be "apb_pclk" for first clock. 19 - dmas : From common DMA binding. If present, refers to one or more dma channels. 20 - dma-names : From common DMA binding, needs to match the 'dmas' property.
|
/linux-4.1.27/include/net/tc_act/ |
D | tc_csum.h | 8 struct tcf_common common; member 13 container_of(a->priv,struct tcf_csum,common)
|
D | tc_connmark.h | 7 struct tcf_common common; member 12 container_of(a->priv, struct tcf_connmark_info, common)
|
D | tc_defact.h | 7 struct tcf_common common; member 12 container_of(a->priv, struct tcf_defact, common)
|
D | tc_pedit.h | 7 struct tcf_common common; member 13 container_of(a->priv, struct tcf_pedit, common)
|
D | tc_gact.h | 7 struct tcf_common common; member 15 container_of(a->priv, struct tcf_gact, common)
|
D | tc_ipt.h | 9 struct tcf_common common; member 15 container_of(a->priv, struct tcf_ipt, common)
|
D | tc_vlan.h | 19 struct tcf_common common; member 25 container_of(a->priv, struct tcf_vlan, common)
|
D | tc_mirred.h | 7 struct tcf_common common; member 15 container_of(a->priv, struct tcf_mirred, common)
|
D | tc_skbedit.h | 25 struct tcf_common common; member 33 container_of(a->priv, struct tcf_skbedit, common)
|
D | tc_bpf.h | 17 struct tcf_common common; member 27 container_of(a->priv, struct tcf_bpf, common)
|
D | tc_nat.h | 8 struct tcf_common common; member 18 return container_of(a->priv, struct tcf_nat, common); in to_tcf_nat()
|
/linux-4.1.27/Documentation/s390/ |
D | 00-INDEX | 8 - s390 common device support (common I/O layer). 10 - common I/O layer command line parameters, procfs and debugfs entries
|
/linux-4.1.27/arch/powerpc/math-emu/ |
D | Makefile | 1 math-emu-common-objs = math.o fre.o fsqrt.o fsqrts.o frsqrtes.o mtfsf.o mtfsfi.o 2 obj-$(CONFIG_MATH_EMULATION_HW_UNIMPLEMENTED) += $(math-emu-common-objs) 3 obj-$(CONFIG_MATH_EMULATION_FULL) += $(math-emu-common-objs) fabs.o fadd.o \
|
/linux-4.1.27/drivers/staging/comedi/drivers/ |
D | das1800.c | 210 int common; /* supports AREF_COMMON flag */ member 227 .common = 1, 238 .common = 1, 249 .common = 1, 260 .common = 1, 271 .common = 1, 282 .common = 1, 293 .common = 1, 304 .common = 1, 315 .common = 1, [all …]
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192c/ |
D | Makefile | 1 rtl8192c-common-objs := \ 7 obj-$(CONFIG_RTL8192C_COMMON) += rtl8192c-common.o
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8723com/ |
D | Makefile | 1 rtl8723-common-objs := \ 7 obj-$(CONFIG_RTL8723_COMMON) += rtl8723-common.o
|
/linux-4.1.27/arch/arm/mach-orion5x/ |
D | Makefile | 1 obj-y += common.o pci.o irq.o mpp.o 10 obj-$(CONFIG_MACH_TS209) += ts209-setup.o tsx09-common.o 11 obj-$(CONFIG_MACH_TS409) += ts409-setup.o tsx09-common.o
|
/linux-4.1.27/drivers/iio/common/hid-sensors/ |
D | Makefile | 5 obj-$(CONFIG_HID_SENSOR_IIO_COMMON) += hid-sensor-iio-common.o 7 hid-sensor-iio-common-y := hid-sensor-attributes.o
|
/linux-4.1.27/net/sched/ |
D | sch_drr.c | 22 struct Qdisc_class_common common; member 50 return container_of(clc, struct drr_class, common); in drr_find_class() 112 cl->common.classid = classid; in drr_change_class() 131 qdisc_class_hash_insert(&q->clhash, &cl->common); in drr_change_class() 158 qdisc_class_hash_remove(&q->clhash, &cl->common); in drr_delete_class() 224 &pfifo_qdisc_ops, cl->common.classid); in drr_graft_class() 259 tcm->tcm_handle = cl->common.classid; in drr_dump_class() 303 hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) { in drr_walk() 461 hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) { in drr_reset_qdisc() 481 common.hnode) in drr_destroy_qdisc()
|
/linux-4.1.27/drivers/staging/unisys/virtpci/ |
D | Makefile | 9 ccflags-y += -Idrivers/staging/unisys/common-spar/include 10 ccflags-y += -Idrivers/staging/unisys/common-spar/include/channels
|
/linux-4.1.27/drivers/staging/unisys/visorchannel/ |
D | Makefile | 10 ccflags-y += -Idrivers/staging/unisys/common-spar/include 11 ccflags-y += -Idrivers/staging/unisys/common-spar/include/channels
|
/linux-4.1.27/Documentation/ |
D | clk.txt | 4 This document endeavours to explain the common clk framework details, 11 The common clk framework is an interface to control the clock nodes 17 details of its counterpart. First is the common definition of struct 20 is a common implementation of the clk.h api, defined in 35 allows for easy navigation between the two discrete halves of the common 38 Part 2 - common data structures and api 40 Below is the common struct clk definition from 59 Platforms and devices utilizing the common struct clk use the struct 98 The strength of the common struct clk comes from its .ops and .hw pointers 113 notifier_count, is needed here. That is all handled by the common [all …]
|
/linux-4.1.27/drivers/media/radio/si470x/ |
D | Makefile | 5 radio-usb-si470x-objs := radio-si470x-usb.o radio-si470x-common.o 6 radio-i2c-si470x-objs := radio-si470x-i2c.o radio-si470x-common.o
|
/linux-4.1.27/drivers/staging/unisys/uislib/ |
D | Makefile | 11 ccflags-y += -Idrivers/staging/unisys/common-spar/include 12 ccflags-y += -Idrivers/staging/unisys/common-spar/include/channels
|
/linux-4.1.27/drivers/staging/unisys/virthba/ |
D | Makefile | 11 ccflags-y += -Idrivers/staging/unisys/common-spar/include 12 ccflags-y += -Idrivers/staging/unisys/common-spar/include/channels
|
/linux-4.1.27/drivers/irqchip/ |
D | Makefile | 22 obj-$(CONFIG_ARM_GIC) += irq-gic.o irq-gic-common.o 24 obj-$(CONFIG_ARM_GIC_V3) += irq-gic-v3.o irq-gic-common.o 28 obj-$(CONFIG_ATMEL_AIC_IRQ) += irq-atmel-aic-common.o irq-atmel-aic.o 29 obj-$(CONFIG_ATMEL_AIC5_IRQ) += irq-atmel-aic-common.o irq-atmel-aic5.o
|
/linux-4.1.27/drivers/staging/unisys/visorchipset/ |
D | Makefile | 12 ccflags-y += -Idrivers/staging/unisys/common-spar/include 13 ccflags-y += -Idrivers/staging/unisys/common-spar/include/channels
|
/linux-4.1.27/arch/arm/probes/kprobes/ |
D | Makefile | 1 obj-$(CONFIG_KPROBES) += core.o actions-common.o checkers-common.o
|
/linux-4.1.27/arch/s390/kvm/ |
D | Makefile | 10 common-objs = $(KVM)/kvm_main.o $(KVM)/eventfd.o $(KVM)/async_pf.o $(KVM)/irqchip.o 14 kvm-objs := $(common-objs) kvm-s390.o intercept.o interrupt.o priv.o sigp.o
|
/linux-4.1.27/drivers/clk/samsung/ |
D | Kconfig | 9 Build the s3c2410 clock driver based on the common clock framework. 16 Temporary symbol to build the dclk driver based on the common clock
|
/linux-4.1.27/arch/powerpc/platforms/powernv/ |
D | pci.c | 119 struct OpalIoPhbErrorCommon *common) in pnv_pci_dump_p7ioc_diag_data() argument 124 data = (struct OpalIoP7IOCPhbErrorData *)common; in pnv_pci_dump_p7ioc_diag_data() 126 hose->global_number, be32_to_cpu(common->version)); in pnv_pci_dump_p7ioc_diag_data() 211 struct OpalIoPhbErrorCommon *common) in pnv_pci_dump_phb3_diag_data() argument 216 data = (struct OpalIoPhb3ErrorData*)common; in pnv_pci_dump_phb3_diag_data() 218 hose->global_number, be32_to_cpu(common->version)); in pnv_pci_dump_phb3_diag_data() 309 struct OpalIoPhbErrorCommon *common; in pnv_pci_dump_phb_diag_data() local 314 common = (struct OpalIoPhbErrorCommon *)log_buff; in pnv_pci_dump_phb_diag_data() 315 switch (be32_to_cpu(common->ioType)) { in pnv_pci_dump_phb_diag_data() 317 pnv_pci_dump_p7ioc_diag_data(hose, common); in pnv_pci_dump_phb_diag_data() [all …]
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/dvm/ |
D | rx.c | 411 struct statistics_general_common *common, in iwlagn_accumulative_statistics() argument 427 ACCUM(common); in iwlagn_accumulative_statistics() 440 struct statistics_general_common *common, in iwlagn_accumulative_statistics() argument 461 struct statistics_general_common *common; in iwlagn_rx_statistics() local 478 common = &stats->general.common; in iwlagn_rx_statistics() 479 rx_non_phy = &stats->rx.general.common; in iwlagn_rx_statistics() 496 common = &stats->general.common; in iwlagn_rx_statistics() 511 change = common->temperature != priv->statistics.common.temperature || in iwlagn_rx_statistics() 515 iwlagn_accumulative_statistics(priv, common, rx_non_phy, rx_ofdm, in iwlagn_rx_statistics() 521 memcpy(&priv->statistics.common, common, sizeof(*common)); in iwlagn_rx_statistics()
|
/linux-4.1.27/drivers/dma/ioat/ |
D | dma.c | 102 struct dma_device *dma = &device->common; in ioat_init_channel() 103 struct dma_chan *c = &chan->common; in ioat_init_channel() 109 chan->common.device = dma; in ioat_init_channel() 110 dma_cookie_init(&chan->common); in ioat_init_channel() 111 list_add_tail(&chan->common.device_node, &dma->channels); in ioat_init_channel() 130 struct dma_device *dma = &device->common; in ioat1_enumerate_channels() 290 dma_async_tx_descriptor_init(&desc_sw->txd, &ioat->base.common); in ioat_dma_alloc_descriptor() 394 device->cleanup_fn((unsigned long) &chan->common); in ioat_stop() 820 struct dma_device *dma = &device->common; in ioat_dma_self_test() 864 tx = device->common.device_prep_dma_memcpy(dma_chan, dma_dest, dma_src, in ioat_dma_self_test() [all …]
|
/linux-4.1.27/drivers/net/ethernet/ti/ |
D | Makefile | 5 obj-$(CONFIG_TI_CPSW) += cpsw-common.o 6 obj-$(CONFIG_TI_DAVINCI_EMAC) += cpsw-common.o
|
/linux-4.1.27/arch/ia64/sn/kernel/ |
D | io_common.c | 126 struct sn_flush_device_common *common) in sn_device_fixup_war() argument 145 memcpy(common,dev_entry, sizeof(*common)); in sn_device_fixup_war() 192 dev_entry->common = kzalloc(size, GFP_KERNEL); in sn_common_hubdev_init() 193 BUG_ON(!dev_entry->common); in sn_common_hubdev_init() 197 (u64)(dev_entry->common)); in sn_common_hubdev_init() 201 dev_entry->common); in sn_common_hubdev_init()
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | intel_bios.c | 973 if (it->common.dvo_port == dvo_ports[port][j]) { in parse_ddi_port() 988 is_dvi = child->common.device_type & DEVICE_TYPE_TMDS_DVI_SIGNALING; in parse_ddi_port() 989 is_dp = child->common.device_type & DEVICE_TYPE_DISPLAYPORT_OUTPUT; in parse_ddi_port() 990 is_crt = child->common.device_type & DEVICE_TYPE_ANALOG_OUTPUT; in parse_ddi_port() 991 is_hdmi = is_dvi && (child->common.device_type & DEVICE_TYPE_NOT_HDMI_OUTPUT) == 0; in parse_ddi_port() 992 is_edp = is_dp && (child->common.device_type & DEVICE_TYPE_INTERNAL_CONNECTOR); in parse_ddi_port() 1018 if (child->common.ddc_pin == 0x05 && port != PORT_B) in parse_ddi_port() 1020 if (child->common.ddc_pin == 0x04 && port != PORT_C) in parse_ddi_port() 1022 if (child->common.ddc_pin == 0x06 && port != PORT_D) in parse_ddi_port() 1099 if (!p_child->common.device_type) { in parse_device_mapping() [all …]
|
/linux-4.1.27/arch/ia64/sn/include/xtalk/ |
D | hubdev.h | 51 struct sn_flush_device_common *common; member 59 struct sn_flush_device_common common; member
|
/linux-4.1.27/drivers/media/platform/vivid/ |
D | Makefile | 1 vivid-objs := vivid-core.o vivid-ctrls.o vivid-vid-common.o vivid-vbi-gen.o \ 3 vivid-radio-rx.o vivid-radio-tx.o vivid-radio-common.o \
|
/linux-4.1.27/include/xen/interface/ |
D | xen-mca.h | 82 struct mcinfo_common common; member 96 struct mcinfo_common common; member 114 struct mcinfo_common common; member 164 struct mcinfo_common common; member
|
/linux-4.1.27/drivers/misc/cxl/ |
D | native.c | 277 ((u64)be32_to_cpu(ctx->elem->common.pid) << 32) | in slb_invalid() 458 ctx->elem->common.pid = cpu_to_be32(current->pid); in attach_afu_directed() 459 ctx->elem->common.tid = 0; in attach_afu_directed() 462 ctx->elem->common.csrp = 0; /* disable */ in attach_afu_directed() 463 ctx->elem->common.aurp0 = 0; /* disable */ in attach_afu_directed() 464 ctx->elem->common.aurp1 = 0; /* disable */ in attach_afu_directed() 468 ctx->elem->common.sstp0 = cpu_to_be64(ctx->sstp0); in attach_afu_directed() 469 ctx->elem->common.sstp1 = cpu_to_be64(ctx->sstp1); in attach_afu_directed() 476 ctx->elem->common.amr = cpu_to_be64(amr); in attach_afu_directed() 477 ctx->elem->common.wed = cpu_to_be64(wed); in attach_afu_directed()
|
/linux-4.1.27/arch/arm/include/asm/hardware/ |
D | iop_adma.h | 46 struct dma_device common; member 68 struct dma_chan common; member
|