/src/sys/compat/aoutm68k/ |
aoutm68k_stat.c | 72 struct aoutm68k_stat43 ast; local in function:aoutm68k_compat_43_sys_stat 80 aoutm68k_stat43_convert(&sb, &ast); 82 return copyout(&ast, SCARG(uap, ub), sizeof(ast)); 88 struct aoutm68k_stat43 ast; local in function:aoutm68k_compat_43_sys_fstat 96 aoutm68k_stat43_convert(&sb, &ast); 98 return copyout(&ast, SCARG(uap, sb), sizeof(ast)); 104 struct aoutm68k_stat43 ast; local in function:aoutm68k_compat_43_sys_lstat 112 aoutm68k_stat43_convert(&sb, &ast); 122 struct aoutm68k_stat12 ast; local in function:aoutm68k_compat_12_sys_stat 138 struct aoutm68k_stat12 ast; local in function:aoutm68k_compat_12_sys_fstat 154 struct aoutm68k_stat12 ast; local in function:aoutm68k_compat_12_sys_lstat 171 struct aoutm68k_stat ast; local in function:aoutm68k_sys___stat13 187 struct aoutm68k_stat ast; local in function:aoutm68k_sys___fstat13 204 struct aoutm68k_stat ast; local in function:aoutm68k_sys___lstat13 220 struct aoutm68k_stat ast; local in function:aoutm68k_sys_fhstat [all...] |
/src/sys/external/bsd/drm2/dist/drm/ast/ |
ast_main.c | 45 void ast_set_index_reg_mask(struct ast_private *ast, 50 ast_io_write8(ast, base, index); 51 tmp = (ast_io_read8(ast, base + 1) & mask) | val; 52 ast_set_index_reg(ast, base, index, tmp); 55 uint8_t ast_get_index_reg(struct ast_private *ast, 59 ast_io_write8(ast, base, index); 60 ret = ast_io_read8(ast, base + 1); 64 uint8_t ast_get_index_reg_mask(struct ast_private *ast, 68 ast_io_write8(ast, base, index); 69 ret = ast_io_read8(ast, base + 1) & mask 76 struct ast_private *ast = dev->dev_private; local in function:ast_detect_config_mode 126 struct ast_private *ast = dev->dev_private; local in function:ast_detect_chip 279 struct ast_private *ast = dev->dev_private; local in function:ast_get_dram_info 401 struct ast_private *ast = dev->dev_private; local in function:ast_mode_config_mode_valid 427 struct ast_private *ast = dev->dev_private; local in function:ast_get_vram_info 459 struct ast_private *ast; local in function:ast_driver_load 555 struct ast_private *ast = dev->dev_private; local in function:ast_driver_unload [all...] |
ast_dp501.c | 18 struct ast_private *ast = dev->dev_private; local in function:ast_load_dp501_microcode 20 return request_firmware(&ast->dp501_fw, "ast_dp501_fw.bin", dev->dev); 23 static void send_ack(struct ast_private *ast) 26 sendack = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, 0xff); 28 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, 0x00, sendack); 31 static void send_nack(struct ast_private *ast) 34 sendack = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, 0xff); 36 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, 0x00, sendack); 39 static bool wait_ack(struct ast_private *ast) 44 waitack = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xd2, 0xff) 101 struct ast_private *ast = dev->dev_private; local in function:ast_write_cmd 123 struct ast_private *ast = dev->dev_private; local in function:ast_write_data 180 struct ast_private *ast = dev->dev_private; local in function:ast_backup_fw 196 struct ast_private *ast = dev->dev_private; local in function:ast_launch_m68k 263 struct ast_private *ast = dev->dev_private; local in function:ast_get_dp501_max_clk 291 struct ast_private *ast = dev->dev_private; local in function:ast_dp501_read_edid 320 struct ast_private *ast = dev->dev_private; local in function:ast_init_dvo 393 struct ast_private *ast = dev->dev_private; local in function:ast_init_analog 420 struct ast_private *ast = dev->dev_private; local in function:ast_init_3rdtx 446 struct ast_private *ast = dev->dev_private; local in function:ast_release_firmware [all...] |
ast_post.c | 47 struct ast_private *ast = dev->dev_private; local in function:ast_enable_vga 49 ast_io_write8(ast, AST_IO_VGA_ENABLE_PORT, 0x01); 50 ast_io_write8(ast, AST_IO_MISC_PORT_WRITE, 0x01); 55 struct ast_private *ast = dev->dev_private; local in function:ast_enable_mmio 57 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xa1, 0x06); 63 struct ast_private *ast = dev->dev_private; local in function:ast_is_vga_enabled 66 if (ast->chip == AST1180) { 69 ch = ast_io_read8(ast, AST_IO_VGA_ENABLE_PORT); 82 struct ast_private *ast = dev->dev_private; local in function:ast_set_def_ext_reg 88 ast_set_index_reg(ast, AST_IO_CRTC_PORT, i, 0x00) 284 struct ast_private *ast = dev->dev_private; local in function:ast_init_dram_reg 378 struct ast_private *ast = dev->dev_private; local in function:ast_post_gpu 1608 struct ast_private *ast = dev->dev_private; local in function:ast_post_chip_2300 2040 struct ast_private *ast = dev->dev_private; local in function:ast_post_chip_2500 [all...] |
Makefile | 6 ast-y := ast_drv.o ast_main.o ast_mode.o ast_ttm.o ast_post.o ast_dp501.o 8 obj-$(CONFIG_DRM_AST) := ast.o
|
ast_ttm.c | 41 int ast_mm_init(struct ast_private *ast) 45 struct drm_device *dev = ast->dev; 49 ast->vram_size); 58 ast->fb_mtrr = arch_phys_wc_add(pci_resource_start(dev->pdev, 0), 64 void ast_mm_fini(struct ast_private *ast) 66 struct drm_device *dev = ast->dev; 70 arch_phys_wc_del(ast->fb_mtrr);
|
ast_mode.c | 5 * Parts based on xf86-video-ast 61 static void ast_cursor_set_base(struct ast_private *ast, u64 address); 65 static inline void ast_load_palette_index(struct ast_private *ast, 69 ast_io_write8(ast, AST_IO_DAC_INDEX_WRITE, index); 70 ast_io_read8(ast, AST_IO_SEQ_PORT); 71 ast_io_write8(ast, AST_IO_DAC_DATA, red); 72 ast_io_read8(ast, AST_IO_SEQ_PORT); 73 ast_io_write8(ast, AST_IO_DAC_DATA, green); 74 ast_io_read8(ast, AST_IO_SEQ_PORT); 75 ast_io_write8(ast, AST_IO_DAC_DATA, blue) 571 struct ast_private *ast = plane->dev->dev_private; local in function:ast_primary_plane_helper_atomic_update 591 struct ast_private *ast = plane->dev->dev_private; local in function:ast_primary_plane_helper_atomic_disable 628 struct ast_private *ast; local in function:ast_cursor_plane_helper_prepare_fb 711 struct ast_private *ast = plane->dev->dev_private; local in function:ast_cursor_plane_helper_atomic_update 744 struct ast_private *ast = plane->dev->dev_private; local in function:ast_cursor_plane_helper_atomic_disable 772 struct ast_private *ast = crtc->dev->dev_private; local in function:ast_crtc_dpms 798 struct ast_private *ast = crtc->dev->dev_private; local in function:ast_crtc_helper_atomic_check 826 struct ast_private *ast = crtc->dev->dev_private; local in function:ast_crtc_helper_atomic_begin 835 struct ast_private *ast = dev->dev_private; local in function:ast_crtc_helper_atomic_flush 940 struct ast_private *ast = dev->dev_private; local in function:ast_crtc_init 999 struct ast_private *ast = connector->dev->dev_private; local in function:ast_get_modes 1030 struct ast_private *ast = connector->dev->dev_private; local in function:ast_mode_valid 1144 struct ast_private *ast = dev->dev_private; local in function:ast_cursor_init 1182 struct ast_private *ast = dev->dev_private; local in function:ast_cursor_fini 1195 struct ast_private *ast = dev->dev_private; local in function:ast_mode_init 1239 struct ast_private *ast = i2c->dev->dev_private; local in function:get_clock 1261 struct ast_private *ast = i2c->dev->dev_private; local in function:get_data 1283 struct ast_private *ast = i2c->dev->dev_private; local in function:set_clock 1299 struct ast_private *ast = i2c->dev->dev_private; local in function:set_data 1447 struct ast_private *ast = crtc->dev->dev_private; local in function:ast_cursor_move [all...] |
ast_drv.h | 47 #define DRIVER_NAME "ast" 48 #define DRIVER_DESC "AST" 160 static inline u##x ast_read##x(struct ast_private *ast, u32 reg) { \ 162 val = ioread##x(ast->regs + reg); \ 171 static inline u##x ast_io_read##x(struct ast_private *ast, u32 reg) { \ 173 val = ioread##x(ast->ioregs + reg); \ 182 static inline void ast_write##x(struct ast_private *ast, u32 reg, u##x val) {\ 183 iowrite##x(val, ast->regs + reg);\ 191 static inline void ast_io_write##x(struct ast_private *ast, u32 reg, u##x val) {\ 192 iowrite##x(val, ast->ioregs + reg); [all...] |
/src/sys/arch/arm/arm/ |
ast.c | 1 /* $NetBSD: ast.c,v 1.32 2021/02/01 19:31:34 skrll Exp $ */ 36 * ast.c 38 * Code to handle ast's and returns to user mode 44 __KERNEL_RCSID(0, "$NetBSD: ast.c,v 1.32 2021/02/01 19:31:34 skrll Exp $"); 66 void ast(struct trapframe *); 105 ast(struct trapframe *tf) function in typeref:typename:void
|
/src/sys/arch/sh3/sh3/ |
exception_vector.S | 150 .Lg_ast: .long _C_LABEL(ast) 308 .L3_ast: .long _C_LABEL(ast) 467 .L4_ast: .long _C_LABEL(ast) 540 .Li_ast: .long _C_LABEL(ast)
|
exception.c | 131 void ast(struct lwp *, struct trapframe *); 465 * void ast(struct lwp *l, struct trapframe *tf): 473 ast(struct lwp *l, struct trapframe *tf) function in typeref:typename:void
|
/src/sys/arch/alpha/include/ |
alpha.h | 97 void ast(struct trapframe *);
|
/src/sys/dev/isa/ |
ast.c | 1 /* $NetBSD: ast.c,v 1.68 2021/08/07 16:19:12 thorpej Exp $ */ 37 __KERNEL_RCSID(0, "$NetBSD: ast.c,v 1.68 2021/08/07 16:19:12 thorpej Exp $"); 70 CFATTACH_DECL_NEW(ast, sizeof(struct ast_softc),
|
/src/sys/dev/usb/ |
umodem_common.c | 662 usb_cdc_abstract_state_t ast; local in function:umodem_set_comm_feature 672 USETW(ast.wState, state); 674 err = usbd_do_request(sc->sc_udev, &req, &ast);
|
/src/sys/external/bsd/drm2/dist/drm/ |
Makefile | 88 obj-$(CONFIG_DRM_AST) += ast/
|
/src/sys/arch/mips/mips/ |
locore_mips1.S | 690 INT_L v0, L_MD_ASTPENDING(MIPS_CURLWP)# any pending ast? 692 beqz v0, MIPSX(user_return) # if no, skip ast processing 698 j _C_LABEL(ast) 711 * the remaining state and call ast(). 864 INT_L v0, L_MD_ASTPENDING(MIPS_CURLWP)# any pending ast? 866 beqz v0, MIPSX(user_intr_return) # if no, skip ast processing 886 j _C_LABEL(ast) # ast() 980 INT_L v0, L_MD_ASTPENDING(MIPS_CURLWP)# any pending ast? 982 beqz v0, MIPSX(user_return) # no, skip ast processin [all...] |
mipsX_subr.S | 1443 INT_L v0, L_MD_ASTPENDING(MIPS_CURLWP)# any pending ast? 1444 beqz v0, MIPSX(user_return) # if no, skip ast processing 1450 j _C_LABEL(ast) 1463 * the remaining state and call ast(). 1622 INT_L v0, L_MD_ASTPENDING(MIPS_CURLWP)# any pending ast? 1623 beqz v0, MIPSX(user_intr_return) # if no, skip ast processing 1651 j _C_LABEL(ast) # ast() 1757 INT_L v0, L_MD_ASTPENDING(MIPS_CURLWP)# any pending ast? 1758 beqz v0, MIPSX(user_return) # no, skip ast processin [all...] |
trap.c | 132 void ast(void); 753 ast(void) function in typeref:typename:void 854 printf("ast %#018lx v0 %#018lx v1 %#018lx\n",
|
/src/sys/arch/usermode/usermode/ |
trap.c | 185 /* ast and userret */ 187 ast(struct lwp *l) function in typeref:typename:void 217 ast(l); 656 userret(l); /* or ast? */
|
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
aspeed-bmc-facebook-wedge400.dts | 60 ast-adc-hwmon {
|
aspeed-bmc-facebook-cmm.dts | 286 ast-adc-hwmon {
|
/src/sys/arch/arm/include/arm32/ |
frame.h | 155 1: ldr r1, [r5, #L_MD_ASTPENDING] /* Pending AST? */ ;\ 158 bic r0, r1, #1 /* clear AST */ ;\ 162 bl _C_LABEL(ast) /* ast(frame) */ ;\ 214 DO_PENDING_AST(2f) /* Pending AST? */ ;\ 241 DO_PENDING_AST(2f) /* Pending AST? */ ;\
|
/src/sys/arch/mips/include/ |
locore.h | 339 void ast(void);
|
/src/share/man/man4/ |
Makefile | 122 MAN+= aha.4 ai.4 aic.4 ast.4 ate.4 boca.4 cs.4 cy.4 ec.4 ef.4 \
|
/src/sys/arch/alpha/alpha/ |
trap.c | 587 ast(struct trapframe *framep) function in typeref:typename:void 592 * We may not have a current process to do AST processing
|