/linux/drivers/net/wireless/ath/ath5k/ |
H A D | eeprom.c | 40 static u16 ath5k_eeprom_bin2freq(struct ath5k_eeprom_info *ee, u16 bin, in ath5k_eeprom_bin2freq() argument 49 if (ee->ee_version > AR5K_EEPROM_VERSION_3_2) in ath5k_eeprom_bin2freq() 55 if (ee->ee_version > AR5K_EEPROM_VERSION_3_2) in ath5k_eeprom_bin2freq() 75 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; in ath5k_eeprom_init_header() local 141 if (ee->ee_version >= AR5K_EEPROM_VERSION_4_3) in ath5k_eeprom_init_header() 144 if (ee->ee_version >= AR5K_EEPROM_VERSION_5_0) { in ath5k_eeprom_init_header() 153 ee->ee_ob[AR5K_EEPROM_MODE_11B][0] = val & 0x7; in ath5k_eeprom_init_header() 154 ee->ee_db[AR5K_EEPROM_MODE_11B][0] = (val >> 3) & 0x7; in ath5k_eeprom_init_header() 157 ee->ee_ob[AR5K_EEPROM_MODE_11G][0] = val & 0x7; in ath5k_eeprom_init_header() 158 ee->ee_db[AR5K_EEPROM_MODE_11G][0] = (val >> 3) & 0x7; in ath5k_eeprom_init_header() [all …]
|
H A D | reset.c | 283 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; in ath5k_hw_set_sleep_clock() local 288 if ((AR5K_EEPROM_HAS32KHZCRYSTAL(ee->ee_misc1) || in ath5k_hw_set_sleep_clock() 289 AR5K_EEPROM_HAS32KHZCRYSTAL_OLD(ee->ee_misc1)) && in ath5k_hw_set_sleep_clock() 348 else if (ee->ee_is_hb63) in ath5k_hw_set_sleep_clock() 979 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; in ath5k_hw_commit_eeprom_settings() local 992 ((ee->ee_cck_ofdm_power_delta - in ath5k_hw_commit_eeprom_settings() 993 ee->ee_scaled_cck_delta) * 2) / 10; in ath5k_hw_commit_eeprom_settings() 996 (ee->ee_cck_ofdm_power_delta * 2) / 10; in ath5k_hw_commit_eeprom_settings() 1003 AR5K_REG_SM((ee->ee_cck_ofdm_gain_delta * -1), in ath5k_hw_commit_eeprom_settings() 1015 ee->ee_cck_ofdm_gain_delta; in ath5k_hw_commit_eeprom_settings() [all …]
|
/linux/drivers/hid/ |
H A D | hid-appleir.c | 33 * 25 87 ee 83 0a + 34 * 25 87 ee 83 0c - 35 * 25 87 ee 83 09 << 36 * 25 87 ee 83 06 >> 37 * 25 87 ee 83 05 >" 38 * 25 87 ee 83 03 menu 44 * 25 87 ee ca 0b + 45 * 25 87 ee ca 0d - 46 * 25 87 ee ca 08 << 47 * 25 87 ee ca 07 >> [all …]
|
H A D | hid-wiimote.h | 232 /* DRM_KE: BB*2 EE*8 */ 238 /* DRM_KEE: BB*2 EE*19 */ 241 /* DRM_KAE: BB*2 AA*3 EE*16 */ 244 /* DRM_KIE: BB*2 II*10 EE*9 */ 247 /* DRM_KAIE: BB*2 AA*3 II*10 EE*6 */ 250 /* DRM_E: EE*21 */
|
/linux/arch/m68k/ifpsp060/ |
H A D | itest.sa | 26 dc.l $88888888,$3d7c0004,$ff7c44fc,$000048ee 31 dc.l $99997600,$3d7c0004,$ff7c44fc,$000048ee 37 dc.l $240242ee,$ff7e48ee,$7fffffc0,$2d7c0000 41 dc.l $44fc0000,$48ee7fff,$ff804c01,$340242ee 47 dc.l $340242ee,$ff7e48ee,$7fffffc0,$2d7c0000 52 dc.l $340242ee,$ff7e48ee,$7fffffc0,$2d7cffff 74 dc.l $48ee7fff,$ff800188,$000042ee,$ff7e48ee 87 dc.l $000042ee,$ff7e48ee,$7fffffc0,$12280002 92 dc.l $44fc001f,$48ee7fff,$ff800108,$000042ee 123 dc.l $47f252ae,$ff784cfb,$3fff0170,$000047ee [all …]
|
H A D | ilsp.sa | 61 dc.l $42814845,$48463a06,$424650ee,$fffc6000 67 dc.l $4e754e56,$fffc48e7,$380042ee,$fffc202e 87 dc.l $49c16000,$00b84e56,$fffc48e7,$380042ee 92 dc.l $fffc48e7,$380042ee,$fffc242e,$00081036 94 dc.l $49c26000,$00484e56,$fffc48e7,$380042ee 97 dc.l $fffc48e7,$380042ee,$fffc242e,$00082036
|
/linux/security/tomoyo/ |
H A D | domain.c | 609 * @ee: Pointer to "struct tomoyo_execve". 613 static int tomoyo_environ(struct tomoyo_execve *ee) in tomoyo_environ() argument 615 struct tomoyo_request_info *r = &ee->r; in tomoyo_environ() 616 struct linux_binprm *bprm = ee->bprm; in tomoyo_environ() 627 ee->r.type = TOMOYO_MAC_ENVIRON; in tomoyo_environ() 628 ee->r.profile = r->domain->profile; in tomoyo_environ() 629 ee->r.mode = tomoyo_get_mode(r->domain->ns, ee->r.profile, in tomoyo_environ() 710 struct tomoyo_execve *ee = kzalloc(sizeof(*ee), GFP_NOFS); in tomoyo_find_next_domain() local 712 if (!ee) in tomoyo_find_next_domain() 714 ee->tmp = kzalloc(TOMOYO_EXEC_TMPSIZE, GFP_NOFS); in tomoyo_find_next_domain() [all …]
|
H A D | condition.c | 97 * @ee: Pointer to "struct tomoyo_execve". 105 static bool tomoyo_scan_bprm(struct tomoyo_execve *ee, in tomoyo_scan_bprm() argument 109 struct linux_binprm *bprm = ee->bprm; in tomoyo_scan_bprm() 110 struct tomoyo_page_dump *dump = &ee->dump; in tomoyo_scan_bprm() 111 char *arg_ptr = ee->tmp; in tomoyo_scan_bprm() 788 if (r->ee) in tomoyo_condition() 789 bprm = r->ee->bprm; in tomoyo_condition() 813 struct tomoyo_execve *ee; in tomoyo_condition() local 825 ee = r->ee; in tomoyo_condition() 826 file = ee ? ee->bprm->file : NULL; in tomoyo_condition() [all …]
|
/linux/drivers/net/wireless/mediatek/mt7601u/ |
H A D | debugfs.c | 82 struct mt7601u_rate_power *rp = &dev->ee->power_rate_table; in mt7601u_eeprom_param_show() 83 struct tssi_data *td = &dev->ee->tssi_data; in mt7601u_eeprom_param_show() 86 seq_printf(file, "RF freq offset: %hhx\n", dev->ee->rf_freq_off); in mt7601u_eeprom_param_show() 88 dev->ee->rssi_offset[0], dev->ee->rssi_offset[1]); in mt7601u_eeprom_param_show() 89 seq_printf(file, "Reference temp: %hhx\n", dev->ee->ref_temp); in mt7601u_eeprom_param_show() 90 seq_printf(file, "LNA gain: %hhx\n", dev->ee->lna_gain); in mt7601u_eeprom_param_show() 91 seq_printf(file, "Reg channels: %hhu-%d\n", dev->ee->reg.start, in mt7601u_eeprom_param_show() 92 dev->ee->reg.start + dev->ee->reg.num - 1); in mt7601u_eeprom_param_show() 108 i * 2 + 1, dev->ee->chan_pwr[i * 2], in mt7601u_eeprom_param_show() 109 i * 2 + 2, dev->ee->chan_pwr[i * 2 + 1]); in mt7601u_eeprom_param_show() [all …]
|
H A D | eeprom.c | 114 dev->ee->tssi_enabled = mt7601u_has_tssi(dev, eeprom) && in mt7601u_set_chip_cap() 141 memset(dev->ee->chan_pwr, trgt_pwr, sizeof(dev->ee->chan_pwr)); in mt7601u_set_channel_target_power() 164 dev->ee->chan_pwr[i] = power; in mt7601u_set_channel_power() 197 dev->ee->reg = chan_bounds[idx]; in mt7601u_set_country_reg() 209 dev->ee->rf_freq_off = field_validate(eeprom[MT_EE_FREQ_OFFSET]); in mt7601u_set_rf_freq_off() 213 dev->ee->rf_freq_off -= comp & 0x7f; in mt7601u_set_rf_freq_off() 215 dev->ee->rf_freq_off += comp; in mt7601u_set_rf_freq_off() 222 s8 *rssi_offset = dev->ee->rssi_offset; in mt7601u_set_rssi_offset() 265 struct mt7601u_rate_power *t = &dev->ee->power_rate_table; in mt7601u_save_power_rate() 272 dev->ee->real_cck_bw20[0] = t->cck[0].bw20; in mt7601u_save_power_rate() [all …]
|
H A D | phy.c | 257 val -= dev->ee->lna_gain; in mt7601u_phy_get_rssi() 258 val -= dev->ee->rssi_offset[0]; in mt7601u_phy_get_rssi() 324 struct mt7601u_rate_power *t = &dev->ee->power_rate_table; in mt7601u_apply_ch14_fixup() 330 t->cck[0].bw20 = dev->ee->real_cck_bw20[0]; in mt7601u_apply_ch14_fixup() 331 t->cck[1].bw20 = dev->ee->real_cck_bw20[1]; in mt7601u_apply_ch14_fixup() 337 t->cck[0].bw20 = dev->ee->real_cck_bw20[0] - 2; in mt7601u_apply_ch14_fixup() 338 t->cck[1].bw20 = dev->ee->real_cck_bw20[1] - 2; in mt7601u_apply_ch14_fixup() 366 { 62, 0x37 - dev->ee->lna_gain }, in __mt7601u_phy_set_channel() 367 { 63, 0x37 - dev->ee->lna_gain }, in __mt7601u_phy_set_channel() 368 { 64, 0x37 - dev->ee->lna_gain }, in __mt7601u_phy_set_channel() [all …]
|
/linux/net/rxrpc/ |
H A D | peer_event.c | 49 switch (serr->ee.ee_origin) { in rxrpc_lookup_peer_local_rcu() 69 switch (serr->ee.ee_origin) { in rxrpc_lookup_peer_local_rcu() 148 if (!skb->len && serr->ee.ee_origin == SO_EE_ORIGIN_TIMESTAMPING) { in rxrpc_input_error() 161 trace_rxrpc_rx_icmp(peer, &serr->ee, &srx); in rxrpc_input_error() 163 if ((serr->ee.ee_origin == SO_EE_ORIGIN_ICMP && in rxrpc_input_error() 164 serr->ee.ee_type == ICMP_DEST_UNREACH && in rxrpc_input_error() 165 serr->ee.ee_code == ICMP_FRAG_NEEDED)) { in rxrpc_input_error() 166 rxrpc_adjust_mtu(peer, serr->ee.ee_info); in rxrpc_input_error() 170 if ((serr->ee.ee_origin == SO_EE_ORIGIN_ICMP6 && in rxrpc_input_error() 171 serr->ee.ee_type == ICMPV6_PKT_TOOBIG && in rxrpc_input_error() [all …]
|
/linux/net/ipv6/ |
H A D | datagram.c | 322 serr->ee.ee_errno = err; in ipv6_icmp_error() 323 serr->ee.ee_origin = SO_EE_ORIGIN_ICMP6; in ipv6_icmp_error() 324 serr->ee.ee_type = icmph->icmp6_type; in ipv6_icmp_error() 325 serr->ee.ee_code = icmph->icmp6_code; in ipv6_icmp_error() 326 serr->ee.ee_pad = 0; in ipv6_icmp_error() 327 serr->ee.ee_info = info; in ipv6_icmp_error() 328 serr->ee.ee_data = 0; in ipv6_icmp_error() 336 ipv6_icmp_error_rfc4884(skb, &serr->ee.ee_rfc4884); in ipv6_icmp_error() 367 serr->ee.ee_errno = err; in ipv6_local_error() 368 serr->ee.ee_origin = SO_EE_ORIGIN_LOCAL; in ipv6_local_error() [all …]
|
/linux/tools/testing/selftests/net/forwarding/ |
H A D | tc_tunnel_key.sh | 117 $MZ h1-et -c 1 -p 930 -a 00:aa:bb:cc:dd:ee -b 00:ee:dd:cc:bb:aa -t ip -q 121 $MZ h1-et -c 1 -p 931 -a 00:aa:bb:cc:dd:ee -b 00:ee:dd:cc:bb:aa -t ip -q 131 $MZ h1-et -c 1 -p 931 -a 00:aa:bb:cc:dd:ee -b 00:ee:dd:cc:bb:aa -t ip -q
|
/linux/arch/powerpc/kvm/ |
H A D | book3s_hv_builtin.c | 255 int me, ee, i; in kvmhv_commence_exit() local 261 ee = vc->entry_exit_map; in kvmhv_commence_exit() 262 } while (cmpxchg(&vc->entry_exit_map, ee, ee | me) != ee); in kvmhv_commence_exit() 265 if ((ee >> 8) != 0) in kvmhv_commence_exit() 274 kvmhv_interrupt_vcore(vc, ee & ~(1 << ptid)); in kvmhv_commence_exit() 288 ee = vc->entry_exit_map; in kvmhv_commence_exit() 290 if ((ee >> 8) != 0) in kvmhv_commence_exit() 292 } while (cmpxchg(&vc->entry_exit_map, ee, in kvmhv_commence_exit() 293 ee | VCORE_EXIT_REQ) != ee); in kvmhv_commence_exit() 294 if ((ee >> 8) == 0) in kvmhv_commence_exit() [all …]
|
/linux/drivers/spmi/ |
H A D | spmi-pmic-arb.c | 185 * @ee: the current Execution Environment 197 u8 ee; member 213 * @offset: on v1 offset of per-ee channel. 214 * on v2 offset of per-ee and per-ppid channel. 692 u8 ee = pmic_arb->ee; in pmic_arb_chained_irq() local 702 status = readl_relaxed(ver_ops->owner_acc_status(bus, ee, i - acc_offset)); in pmic_arb_chained_irq() 727 if (bus->apid_data[i].irq_ee != pmic_arb->ee) in pmic_arb_chained_irq() 873 if (bus->apid_data[apid].irq_ee != pmic_arb->ee) { in qpnpint_irq_domain_activate() 874 …dev_err(&bus->spmic->dev, "failed to xlate sid = %#x, periph = %#x, irq = %u: ee=%u but owner=%u\n… in qpnpint_irq_domain_activate() 875 sid, periph, irq, pmic_arb->ee, in qpnpint_irq_domain_activate() [all …]
|
/linux/kernel/bpf/ |
H A D | arraymap.c | 1219 struct bpf_event_entry *ee; in bpf_event_entry_gen() local 1221 ee = kzalloc(sizeof(*ee), GFP_KERNEL); in bpf_event_entry_gen() 1222 if (ee) { in bpf_event_entry_gen() 1223 ee->event = perf_file->private_data; in bpf_event_entry_gen() 1224 ee->perf_file = perf_file; in bpf_event_entry_gen() 1225 ee->map_file = map_file; in bpf_event_entry_gen() 1228 return ee; in bpf_event_entry_gen() 1233 struct bpf_event_entry *ee; in __bpf_event_entry_free() local 1235 ee = container_of(rcu, struct bpf_event_entry, rcu); in __bpf_event_entry_free() 1236 fput(ee->perf_file); in __bpf_event_entry_free() [all …]
|
/linux/drivers/gpu/drm/i915/gt/uc/ |
H A D | intel_guc_capture.c | 1414 const struct intel_engine_coredump *ee) in intel_guc_capture_print_engine_node() argument 1434 if (!ebuf || !ee) in intel_guc_capture_print_engine_node() 1436 cap = ee->guc_capture; in intel_guc_capture_print_engine_node() 1437 if (!cap || !ee->engine) in intel_guc_capture_print_engine_node() 1440 guc = gt_to_guc(ee->engine->gt); in intel_guc_capture_print_engine_node() 1443 ee->engine->name); in intel_guc_capture_print_engine_node() 1445 node = ee->guc_capture_node; in intel_guc_capture_print_engine_node() 1447 i915_error_printf(ebuf, " No matching ee-node\n"); in intel_guc_capture_print_engine_node() 1501 static void guc_capture_find_ecode(struct intel_engine_coredump *ee) in guc_capture_find_ecode() argument 1509 if (!ee->guc_capture_node) in guc_capture_find_ecode() [all …]
|
H A D | intel_guc_capture.h | 19 void intel_guc_capture_free_node(struct intel_engine_coredump *ee); 21 const struct intel_engine_coredump *ee); 22 void intel_guc_capture_get_matching_node(struct intel_gt *gt, struct intel_engine_coredump *ee,
|
/linux/drivers/bus/mhi/host/ |
H A D | pm.c | 284 if (MHI_IN_MISSION_MODE(mhi_cntrl->ee)) { in mhi_pm_m0_transition() 398 enum mhi_ee_type ee = MHI_EE_MAX, current_ee = mhi_cntrl->ee; in mhi_pm_mission_mode_transition() local 405 ee = mhi_get_exec_env(mhi_cntrl); in mhi_pm_mission_mode_transition() 407 if (!MHI_IN_MISSION_MODE(ee)) { in mhi_pm_mission_mode_transition() 413 mhi_cntrl->ee = ee; in mhi_pm_mission_mode_transition() 457 * Execution Environment (EE) to either SBL or AMSS states in mhi_pm_mission_mode_transition() 628 mhi_cntrl->ee = MHI_EE_DISABLE_TRANSITION; in mhi_pm_sys_error_transition() 816 mhi_cntrl->ee = mhi_get_exec_env(mhi_cntrl); in mhi_pm_st_worker() 822 mhi_cntrl->ee = MHI_EE_SBL; in mhi_pm_st_worker() 826 * device switches its Execution Environment (EE) to in mhi_pm_st_worker() [all …]
|
H A D | debugfs.c | 20 seq_printf(m, "PM state: %s Device: %s MHI state: %s EE: %s wake: %s\n", in mhi_debugfs_states_show() 24 TO_MHI_EXEC_STR(mhi_cntrl->ee), in mhi_debugfs_states_show() 173 enum mhi_ee_type ee; in mhi_debugfs_regdump_show() local 207 seq_printf(m, "Host PM state: %s Device state: %s EE: %s\n", in mhi_debugfs_regdump_show() 210 TO_MHI_EXEC_STR(mhi_cntrl->ee)); in mhi_debugfs_regdump_show() 213 ee = mhi_get_exec_env(mhi_cntrl); in mhi_debugfs_regdump_show() 214 seq_printf(m, "Device EE: %s state: %s\n", TO_MHI_EXEC_STR(ee), in mhi_debugfs_regdump_show()
|
/linux/net/can/j1939/ |
H A D | socket.c | 1036 serr->ee.ee_errno = ENOMSG; in __j1939_sk_errqueue() 1037 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING; in __j1939_sk_errqueue() 1038 serr->ee.ee_info = SCM_TSTAMP_ACK; in __j1939_sk_errqueue() 1042 serr->ee.ee_errno = ENOMSG; in __j1939_sk_errqueue() 1043 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING; in __j1939_sk_errqueue() 1044 serr->ee.ee_info = SCM_TSTAMP_SCHED; in __j1939_sk_errqueue() 1048 serr->ee.ee_errno = session->err; in __j1939_sk_errqueue() 1049 serr->ee.ee_origin = SO_EE_ORIGIN_LOCAL; in __j1939_sk_errqueue() 1050 serr->ee.ee_info = J1939_EE_INFO_TX_ABORT; in __j1939_sk_errqueue() 1054 serr->ee.ee_errno = ENOMSG; in __j1939_sk_errqueue() [all …]
|
/linux/Documentation/devicetree/bindings/pwm/ |
H A D | pwm-amlogic.yaml | 19 - amlogic,meson-axg-ee-pwm 21 - amlogic,meson-g12a-ee-pwm 86 - amlogic,meson-axg-ee-pwm 88 - amlogic,meson-g12a-ee-pwm
|
/linux/Documentation/devicetree/bindings/dma/ |
H A D | qcom,adm.yaml | 56 qcom,ee: 71 - qcom,ee 96 qcom,ee = <0>;
|
/linux/arch/powerpc/include/asm/ |
H A D | hw_irq.h | 24 * always in synch with the MSR[EE] state, except: 25 * - A window in interrupt entry, where hardware disables MSR[EE] and that 357 * MSR[EE] in irq handlers because any interrupts would just be in should_hard_irq_enable() 388 * PACA_IRQ_HARD_DIS, and MSR[EE]=0. in do_hard_irq_enable() 498 * With soft-masking, MSR[EE] can change from 1 to 0 in mtmsr_isync_irqsafe() 500 * set MSR[EE] back to 1 here if that has happened. A race-free in mtmsr_isync_irqsafe() 501 * way to do this is ensure EE is already 0. Another way it in mtmsr_isync_irqsafe()
|