HomeSort by: relevance | last modified time | path
    Searched refs:psw (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/sys/arch/aarch64/include/
locore.h 58 #define cpsie(psw) daif_enable((psw))
59 #define cpsid(psw) daif_disable((psw))
71 daif_enable(register_t psw)
73 if (!__builtin_constant_p(psw)) {
74 reg_daif_write(reg_daif_read() & ~psw);
76 reg_daifclr_write((psw & DAIF_MASK) >> DAIF_SETCLR_SHIFT);
81 daif_disable(register_t psw)
84 if ((oldpsw & psw) != psw)
    [all...]
  /src/sys/arch/arm/xscale/
pxa2x0_intr.h 79 int psw; local in function:pxa2x0_splx
81 psw = disable_interrupts(I32_bit);
83 restore_interrupts(psw);
94 int old, psw; local in function:pxa2x0_splraise
98 psw = disable_interrupts(I32_bit);
100 restore_interrupts(psw);
110 int psw = disable_interrupts(I32_bit); local in function:pxa2x0_spllower
113 restore_interrupts(psw);
pxa2x0_intr.c 228 int psw = disable_interrupts(I32_bit); local in function:pxa2x0_update_intr_masks
247 restore_interrupts(psw);
287 int psw; local in function:pxa2x0_intr_establish
293 psw = disable_interrupts(I32_bit);
302 restore_interrupts(psw);
313 int psw; local in function:pxa2x0_intr_disestablish
318 psw = disable_interrupts(I32_bit);
326 restore_interrupts(psw);
  /src/sys/arch/arm/cortex/
gic_splfuncs.c 58 register_t psw = DISABLE_INTERRUPT_SAVE(); local in function:gic_spllower
60 pic_do_pending_ints(psw, newipl, NULL);
62 if ((psw & I32_bit) == 0 || newipl == IPL_NONE) {
75 register_t psw; local in function:Xgic_splx
81 psw = DISABLE_INTERRUPT_SAVE();
83 pic_do_pending_ints(psw, newipl, NULL);
85 if ((psw & I32_bit) == 0) {
  /src/sys/arch/arm/s3c2xx0/
s3c2xx0_intr.h 131 int psw; local in function:s3c2xx0_splx
133 psw = disable_interrupts(I32_bit);
135 restore_interrupts(psw);
146 int old, psw; local in function:s3c2xx0_splraise
150 psw = disable_interrupts(I32_bit);
152 restore_interrupts(psw);
162 int psw = disable_interrupts(I32_bit); local in function:s3c2xx0_spllower
164 restore_interrupts(psw);
s3c2410_intr.c 319 int psw = disable_interrupts(IF32_bits); local in function:s3c2410_mask_subinterrupts
321 restore_interrupts(psw);
327 int psw = disable_interrupts(IF32_bits); local in function:s3c2410_unmask_subinterrupts
329 restore_interrupts(psw);
s3c2440_intr.c 349 int psw = disable_interrupts(IF32_bits); local in function:s3c2440_mask_subinterrupts
351 restore_interrupts(psw);
358 int psw = disable_interrupts(IF32_bits); local in function:s3c2440_unmask_subinterrupts
360 restore_interrupts(psw);
  /src/sys/arch/arm/pic/
pic_splfuncs.c 71 register_t psw = DISABLE_INTERRUPT_SAVE(); local in function:_spllower
73 pic_do_pending_ints(psw, newipl, NULL);
75 if ((psw & I32_bit) == 0 || newipl == IPL_NONE)
93 register_t psw = DISABLE_INTERRUPT_SAVE(); local in function:splx
98 pic_do_pending_ints(psw, savedipl, NULL);
102 if ((psw & I32_bit) == 0)
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/sw/
nouveau_nvkm_engine_sw_nv10.c 70 nv10_sw_new(struct nvkm_device *device, int index, struct nvkm_sw **psw)
72 return nvkm_sw_new_(&nv10_sw, device, index, psw);
nouveau_nvkm_engine_sw_nv04.c 141 nv04_sw_new(struct nvkm_device *device, int index, struct nvkm_sw **psw)
143 return nvkm_sw_new_(&nv04_sw, device, index, psw);
nouveau_nvkm_engine_sw_base.c 105 int index, struct nvkm_sw **psw)
109 if (!(sw = *psw = kzalloc(sizeof(*sw), GFP_KERNEL)))
nouveau_nvkm_engine_sw_gf100.c 157 gf100_sw_new(struct nvkm_device *device, int index, struct nvkm_sw **psw)
159 return nvkm_sw_new_(&gf100_sw, device, index, psw);
nouveau_nvkm_engine_sw_nv50.c 150 nv50_sw_new(struct nvkm_device *device, int index, struct nvkm_sw **psw)
152 return nvkm_sw_new_(&nv50_sw, device, index, psw);
  /src/sys/arch/evbarm/lubbock/
obio.c 95 int psw; local in function:obio_intr
99 psw = disable_interrupts(I32_bit|F32_bit);
106 restore_interrupts(psw);
141 psw = disable_interrupts(I32_bit|F32_bit);
146 restore_interrupts(psw);
163 int psw; local in function:obio_softintr
166 psw = disable_interrupts(I32_bit);
170 restore_interrupts(psw);
177 psw = disable_interrupts(I32_bit);
183 restore_interrupts(psw);
312 int psw; local in function:obio_intr_establish
    [all...]
  /src/sys/arch/arm/include/
cpufunc.h 370 static inline void cpsie(register_t psw) __attribute__((__unused__));
371 static inline register_t cpsid(register_t psw) __attribute__((__unused__));
374 cpsie(register_t psw)
377 if (!__builtin_constant_p(psw)) {
378 enable_interrupts(psw);
381 switch (psw & (I32_bit|F32_bit)) {
387 enable_interrupts(psw);
392 cpsid(register_t psw)
396 if (!__builtin_constant_p(psw))
397 return disable_interrupts(psw);
    [all...]
  /src/sys/arch/evbarm/g42xxeb/
obio.c 119 int psw = disable_interrupts(I32_bit); /* XXX */ local in function:obio_intr
126 restore_interrupts(psw);
156 int psw; local in function:obio_softint
158 psw = disable_interrupts(I32_bit);
162 restore_interrupts(psw);
169 psw = disable_interrupts(I32_bit);
178 restore_interrupts(psw);
  /src/sys/dev/acpi/
thinkpad_acpi.c 255 struct sysmon_pswitch *psw; local in function:thinkpad_attach
363 psw = sc->sc_smpsw;
366 psw[TP_PSW_SLEEP].smpsw_name = device_xname(self);
367 psw[TP_PSW_SLEEP].smpsw_type = PSWITCH_TYPE_SLEEP;
369 psw[TP_PSW_HIBERNATE].smpsw_name = device_xname(self);
375 psw[TP_PSW_DISPLAY_CYCLE].smpsw_name = PSWITCH_HK_DISPLAY_CYCLE;
376 psw[TP_PSW_LOCK_SCREEN].smpsw_name = PSWITCH_HK_LOCK_SCREEN;
377 psw[TP_PSW_BATTERY_INFO].smpsw_name = PSWITCH_HK_BATTERY_INFO;
378 psw[TP_PSW_EJECT_BUTTON].smpsw_name = PSWITCH_HK_EJECT_BUTTON;
379 psw[TP_PSW_ZOOM_BUTTON].smpsw_name = PSWITCH_HK_ZOOM_BUTTON
    [all...]
  /src/sys/arch/arm/gemini/
gemini_timer.c 157 int psw; local in function:_timer_intr_clr
159 psw = disable_interrupts(I32_bit);
163 restore_interrupts(psw);
260 int psw; local in function:timer_init
262 psw = disable_interrupts(I32_bit);
270 restore_interrupts(psw);
gemini_ipm.c 167 int psw; local in function:gemini_ipm_register
177 psw = disable_interrupts(I32_bit);
195 restore_interrupts(psw);
205 int psw; local in function:gemini_ipm_deregister
210 psw = disable_interrupts(I32_bit);
215 restore_interrupts(psw);
  /src/lib/libc/arch/vax/gen/
__setjmp14.S 70 movw 4(%fp),(%r2) # save psw of caller
_setjmp.S 61 movw 4(%fp),24(%r0) # save psw of caller
  /src/sys/kern/
kern_pmf.c 145 pmf_suspend_workitem_t *psw; local in function:pmf_suspend_worker
149 psw = (void *)wk;
150 KASSERT(wk == &psw->psw_work);
151 KASSERT(psw != NULL);
155 if (dev == psw->psw_dev && device_pmf_lock(dev))
163 switch (pmf_qual_depth(&psw->psw_qual)) {
166 &psw->psw_qual))
171 &psw->psw_qual))
176 &psw->psw_qual))
180 kmem_free(psw, sizeof(*psw))
    [all...]
  /src/sys/arch/hppa/stand/xxboot/
main.c 43 void ipl_main(unsigned /*interactive*/, unsigned /*sptop*/, unsigned /*psw*/);
178 ipl_main(unsigned interactive, unsigned sptop, unsigned psw)
181 /* psw: PSW on startup */
194 print(hexstr(buf, psw));
198 print(hexstr(buf, (psw & 0x08000000) ? (unsigned) 0x64 : 0x32));
  /src/sys/arch/arm/imx/
imx23_icoll.c 248 register_t psw = DISABLE_INTERRUPT_SAVE(); local in function:icoll_set_priority
262 if ((psw & I32_bit) == 0) {
  /src/sys/arch/arm/marvell/
dove.c 484 uint32_t control, status, psw, pmucr; local in function:dove_dfs_slow
498 psw = disable_interrupts(I32_bit | F32_bit);
557 restore_interrupts(psw);

Completed in 20 milliseconds

1 2