Home
last modified time | relevance | path

Searched full:supervisor (Results 1 – 25 of 250) sorted by relevance

12345678910

/OK3568_Linux_fs/kernel/arch/x86/include/asm/fpu/
H A Dxstate.h37 /* All currently supported supervisor features */
41 * A supervisor state component may not always contain valuable information,
42 * and its size may be huge. Saving/restoring such supervisor state components
44 * be avoided. Such supervisor state components should only be saved/restored
45 * on demand. The on-demand dynamic supervisor features are set in this mask.
47 * Unlike the existing supported supervisor features, a dynamic supervisor
49 * supervisor state component cannot be saved/restored at each context switch.
51 * To support a dynamic supervisor feature, a developer should follow the
53 * - Do dynamically allocate a buffer for the supervisor state component.
56 * - Don't set the bit corresponding to the dynamic supervisor feature in
[all …]
/OK3568_Linux_fs/kernel/arch/m68k/ifpsp060/
H A Dos.S58 | or supervisor application space. The examples below use simple "move"
59 | instructions for supervisor mode applications and call _copyin()/_copyout()
76 | Writes to data memory while in supervisor mode.
79 | a0 - supervisor source address
82 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
89 btst #0x5,0x4(%a6) | check for supervisor state
107 | Reads from data/instruction memory while in supervisor mode.
111 | a1 - supervisor destination address
113 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
122 btst #0x5,0x4(%a6) | check for supervisor state
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-supervisor_4.2.4.bb1 SUMMARY = "Supervisor: A Process Control System"
3 Supervisor is a client/server system that allows its users \
6 HOMEPAGE = "https://github.com/Supervisor/supervisor"
12 PYPI_PACKAGE = "supervisor"
19 file://supervisor.service \
21 SYSTEMD_SERVICE:${PN} = "supervisor.service"
24 install -d ${D}${sysconfdir}/supervisor
27 install -m 0644 ${WORKDIR}/supervisord.conf ${D}${sysconfdir}/supervisor
28 install -m 0644 ${WORKDIR}/supervisor.service ${D}${systemd_system_unitdir}
H A Dpython3-meld3_2.0.1.bb1 SUMMARY = "meld3 templating system used by Supervisor"
7 HOMEPAGE = "https://github.com/supervisor/meld3"
/OK3568_Linux_fs/buildroot/package/supervisor/
H A Dsupervisord.conf2 file = /var/run/supervisor.sock
5 logfile = /var/log/supervisor/supervisord.log
9 childlogdir = /var/log/supervisor
11 [rpcinterface:supervisor]
12 supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
15 serverurl = unix:///var/run/supervisor.sock
18 files = /etc/supervisor.d/*.conf
H A Dsupervisor.mk3 # supervisor
15 $(INSTALL) -d -m 755 $(TARGET_DIR)/etc/supervisor.d
16 $(INSTALL) -D -m 644 package/supervisor/supervisord.conf \
23 $(INSTALL) -D -m 755 package/supervisor/S99supervisord \
28 $(INSTALL) -D -m 644 package/supervisor/supervisord.service \
H A DConfig.in2 bool "supervisor"
11 comment "supervisor needs a python interpreter"
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-supervisor/
H A Dsupervisord.conf1 ; supervisor config file
4 file=/var/run/supervisor.sock ; (the path to the socket file)
15 [rpcinterface:supervisor]
16 supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
19 serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL for a unix socket
28 files = /etc/supervisor/conf.d/*.conf
H A Dsupervisor.service2 Description=Supervisor process control system for UNIX
7 ExecStart=/usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf
9 ExecReload=/usr/bin/supervisorctl -c /etc/supervisor/supervisord.conf $OPTIONS reload
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/interrupt-controller/
H A Driscv,cpu-intc.txt10 The RISC-V supervisor ISA manual specifies three interrupt sources that are
14 controlled via Supervisor Binary Interface (SBI) calls and CSR reads. External
18 All RISC-V systems that conform to the supervisor ISA specification are
29 RISC-V supervisor ISA manual, with only the following three interrupts being
30 defined for supervisor mode:
31 - Source 1 is the supervisor software interrupt, which can be sent by an SBI
33 - Source 5 is the supervisor timer interrupt, which can be configured by
35 - Source 9 is the supervisor external interrupt, which chains to all other
/OK3568_Linux_fs/kernel/arch/m68k/fpsp040/
H A Dskeleton.S377 btst #0x5,%sp@ | supervisor bit set in saved SR?
387 | mem_write --- write to user or supervisor address space
389 | Writes to memory while in supervisor mode. copyout accomplishes
393 | a0 - supervisor source address
397 | The supervisor source address is guaranteed to point into the supervisor
404 | If the EXC_SR shows that the exception was from supervisor space,
406 | there shouldn't be any supervisor mode floating point exceptions.
410 btstb #5,EXC_SR(%a6) |check for supervisor state
427 | mem_read --- read from user or supervisor address space
429 | Reads from memory while in supervisor mode. copyin accomplishes
[all …]
/OK3568_Linux_fs/kernel/arch/x86/kernel/fpu/
H A Dxstate.c60 * XSAVE buffer, both supervisor and user xstates.
118 * returns ECX[0] set to (1) for a supervisor state, and cleared (0) in xfeature_is_supervisor()
217 * Unsupported supervisor xstates should not be found in in fpu__init_cpu_xstate()
221 WARN_ONCE(unsup_bits, "x86/fpu: Found unsupported supervisor xstates: 0x%llx\n", in fpu__init_cpu_xstate()
236 * MSR_IA32_XSS sets supervisor states managed by XSAVES. in fpu__init_cpu_xstate()
281 * If an xfeature is supervisor state, the offset in EBX is in setup_xstate_features()
402 * Setup offsets of a supervisor-state-only XSAVES buffer:
515 * Only XSAVES supports supervisor states and it uses compacted in xfeature_uncompacted_offset()
516 * format. Checking a supervisor state's uncompacted offset is in xfeature_uncompacted_offset()
540 * 1. saving of supervisor/system state
[all …]
H A Dsignal.c231 * Supervisor state has to be preserved. The sigframe in sanitize_restored_user_xstate()
347 * Restore supervisor states: previous context switch in __fpu__restore_sig()
348 * etc has done XSAVES and saved the supervisor states in __fpu__restore_sig()
408 * Supervisor states are not modified by user space input. Save in __fpu__restore_sig()
409 * current supervisor states first and invalidate the FPU regs. in __fpu__restore_sig()
433 * Restore previously saved supervisor xstates along with in __fpu__restore_sig()
/OK3568_Linux_fs/kernel/arch/powerpc/include/asm/book3s/32/
H A Dmmu-hash.h57 #define PP_RWXX 0 /* Supervisor read/write, User none */
58 #define PP_RWRX 1 /* Supervisor read/write, User read */
59 #define PP_RWRW 2 /* Supervisor read/write, User read/write */
60 #define PP_RXRX 3 /* Supervisor read, User read */
65 #define SR_KS 0x40000000 /* Supervisor key */
/OK3568_Linux_fs/kernel/arch/microblaze/include/asm/
H A Dmmu.h39 # define PP_RWXX 0 /* Supervisor read/write, User none */
40 # define PP_RWRX 1 /* Supervisor read/write, User read */
41 # define PP_RWRW 2 /* Supervisor read/write, User read/write */
42 # define PP_RXRX 3 /* Supervisor read, User read */
47 unsigned long ks:1; /* Supervisor 'key' (normally 0) */
/OK3568_Linux_fs/kernel/arch/riscv/include/asm/
H A Dcsr.h13 #define SR_SIE _AC(0x00000002, UL) /* Supervisor Interrupt Enable */
15 #define SR_SPIE _AC(0x00000020, UL) /* Previous Supervisor IE */
17 #define SR_SPP _AC(0x00000100, UL) /* Previously Supervisor */
19 #define SR_SUM _AC(0x00040000, UL) /* Supervisor User Memory Access */
150 /* IE/IP (Supervisor/Machine Interrupt Enable/Pending) flags */
/OK3568_Linux_fs/kernel/Documentation/hwmon/
H A Dsl28cpld.rst21 supervisor. In the future there might be other flavours and additional
24 The fan supervisor has a 7 bit counter register and a counter period of 1
25 second. If the 7 bit counter overflows, the supervisor will automatically
/OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/engine/disp/
H A Dnv50.c175 INIT_WORK(&disp->supervisor, func->super); in nv50_disp_new_()
311 HEAD_DBG(head, "supervisor 3.0"); in nv50_disp_super_3_0()
438 HEAD_DBG(head, "supervisor 2.2"); in nv50_disp_super_2_2()
482 HEAD_DBG(head, "supervisor 2.1 - %d khz", khz); in nv50_disp_super_2_1()
494 HEAD_DBG(head, "supervisor 2.0"); in nv50_disp_super_2_0()
517 HEAD_DBG(head, "supervisor 1.0"); in nv50_disp_super_1_0()
547 container_of(work, struct nv50_disp, supervisor); in nv50_disp_super()
553 nvkm_debug(subdev, "supervisor %08x %08x\n", disp->super, super); in nv50_disp_super()
678 queue_work(disp->wq, &disp->supervisor); in nv50_disp_intr()
751 /* enable supervisor interrupts, disable everything else */ in nv50_disp_init()
H A Dgf119.c37 container_of(work, struct nv50_disp, supervisor); in gf119_disp_super()
43 nvkm_debug(subdev, "supervisor %d\n", ffs(disp->super)); in gf119_disp_super()
151 queue_work(disp->wq, &disp->supervisor); in gf119_disp_intr()
235 /* enable supervisor interrupts, disable everything else */ in gf119_disp_init()
/OK3568_Linux_fs/kernel/arch/m68k/include/asm/
H A Dmcfdma.h89 #define MCFDMA_DMR_DSTT_SD 0x00001400L /* Destination is supervisor data */
90 #define MCFDMA_DMR_DSTT_SC 0x00001800L /* Destination is supervisor code */
101 #define MCFDMA_DMR_SRCT_SD 0x00000014L /* Source is supervisor data */
102 #define MCFDMA_DMR_SRCT_SC 0x00000018L /* Source is supervisor code */
H A Dm54xxacr.h36 #define ACR_SUPER 0x00002000 /* Supervisor mode only */
43 #define ACR_SP 0x00000008 /* Supervisor protect */
96 * cacheable and supervisor access only.
/OK3568_Linux_fs/buildroot/package/quagga/
H A DConfig.in21 Use a TCP socket to communicate between zebra (supervisor)
76 supervisor.
/OK3568_Linux_fs/u-boot/arch/powerpc/include/asm/
H A Dmmu.h37 #define PP_RWXX 0 /* Supervisor read/write, User none */
38 #define PP_RWRX 1 /* Supervisor read/write, User read */
39 #define PP_RWRW 2 /* Supervisor read/write, User read/write */
40 #define PP_RXRX 3 /* Supervisor read, User read */
45 unsigned long ks:1; /* Supervisor 'key' (normally 0) */
59 unsigned long ks:1; /* Supervisor key (normally 0) */
72 unsigned long vs:1; /* Supervisor valid */
/OK3568_Linux_fs/kernel/arch/sparc/include/asm/
H A Dpcr.h20 #define PCR_STRACE 0x00000002 /* Trace supervisor events */
39 #define PCR_N4_STRACE 0x00000008 /* Trace supervisor events */
/OK3568_Linux_fs/u-boot/drivers/misc/
H A DKconfig163 bool "Enable support for DS4510 CPU supervisor"
165 Enable support for the Maxim DS4510 CPU supervisor. It has an
167 and a configurable timer for the supervisor function. The device is

12345678910