HomeSort by: relevance | last modified time | path
    Searched defs:board (Results 1 - 24 of 24) sorted by relevancy

  /src/sys/arch/sparc64/dev/
fhc_central.c 69 u_int32_t board; local
117 board = bus_space_read_4(sc->sc_bt, sc->sc_preg, FHC_P_BSR);
118 sc->sc_board = ((board >> 16) & 0x1) | ((board >> 12) & 0xe);
  /src/usr.sbin/installboot/arch/
evbarm.c 67 evb_board board; local
71 warnx("Unable to load board db.");
75 board = evb_db_get_board(params);
76 if (board == NULL)
79 rv = evb_uboot_setboot(params, board);
108 warnx("Unable to load board db.");
112 fprintf(stderr, "Known boards (for -o board=...) are:\n");
evbmips.c 67 evb_board board; local
71 warnx("Unable to load board db.");
75 board = evb_db_get_board(params);
76 if (board == NULL)
79 rv = evb_uboot_setboot(params, board);
108 warnx("Unable to load board db.");
112 fprintf(stderr, "Known boards (for -o board=...) are:\n");
riscv.c 67 evb_board board; local
71 warnx("Unable to load board db.");
75 board = evb_db_get_board(params);
76 if (board == NULL)
79 rv = evb_uboot_setboot(params, board);
108 warnx("Unable to load board db.");
112 fprintf(stderr, "Known boards (for -o board=...) are:\n");
  /src/sys/arch/evbmips/alchemy/
obio.c 50 #include <evbmips/alchemy/board.h>
81 const struct alchemy_board *board; local
86 board = board_info();
87 for (od = board->ab_devices; od->od_name != NULL; od++) {
machdep.c 114 #include <evbmips/alchemy/board.h>
151 const struct alchemy_board *board; local
155 board = board_info();
156 KASSERT(board != NULL);
163 cpu_setmodel("%s", board->ab_name);
205 * Perform board-specific initialization.
207 board->ab_init();
350 const struct alchemy_board *board; local
355 board = board_info();
356 KASSERT(board != NULL)
443 const struct alchemy_board *board; local
454 const struct alchemy_board *board; local
463 const struct alchemy_board *board; local
    [all...]
  /src/sys/arch/mips/atheros/
ar5312_board.c 60 * Locate the Board Configuration data using heuristics.
68 static const struct ar531x_boarddata *board = NULL; local
72 if (board == NULL) {
99 board = (const struct ar531x_boarddata *) ptr;
103 return board;
108 * to the board configuration data.
114 const struct ar531x_boarddata *board; local
118 board = ar5312_get_board_info();
119 if (board == NULL)
121 baddr = (const uint8_t *) board;
    [all...]
ar5315_board.c 45 * This file provides code to locate board-specific configuration and radio
79 * Locate the Board Configuration data using heuristics.
87 static const struct ar531x_boarddata *board = NULL; local
90 if (board == NULL) {
99 board = (const struct ar531x_boarddata *) ptr;
103 return board;
108 * board configuration data.
114 const struct ar531x_boarddata *board; local
120 board = ar5315_get_board_info();
121 if (board == NULL
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/therm/
nouveau_nvkm_subdev_therm_ic.c 105 struct nvkm_i2c_bus_probe board[] = { local
110 nvkm_i2c_bus_probe(bus, "monitoring device", board,
117 struct nvkm_i2c_bus_probe board[] = { local
122 nvkm_i2c_bus_probe(bus, "monitoring device", board,
  /src/sys/external/isc/atheros_hal/dist/ar5312/
ar5312_attach.c 288 const struct ar531x_boarddata *board = AR5312_BOARDCONFIG(ah); local
294 macAddr = board->wlan0Mac;
297 macAddr = board->wlan1Mac;
  /src/sys/dev/usb/
auvitek.c 67 enum auvitek_board board; member in struct:__anon3699
115 sc->sc_board = auvitek_devices[i].board;
  /src/games/monop/
monop.c 105 printboard, /* print board |* 1 *| */
175 SQUARE board[N_SQRS+1] = { /* board itself (+1 for Jail) */ variable
246 cur_p->money, board[cur_p->loc].name);
358 mp->sq[i] = &board[mp->sqnums[i]];
  /src/games/tetris/
tetris.c 62 cell board[B_SIZE]; /* 1 => occupied, 0 => empty */ variable
65 int Offset; /* used to center board & shapes */
85 * Set up the initial board. The bottom display row is completely set,
95 p = board;
111 p = &board[base];
115 memset(&board[base], 0, B_COLS - 2);
119 board[base + B_COLS] = board[base];
121 memset(&board[1], 0, B_COLS - 2);
  /src/games/backgammon/common_source/
init.c 57 int bflag = 0; /* flag for automatic board printing */
79 int board[26]; variable
  /src/games/boggle/boggle/
bog.c 102 char board[17]; variable
191 /* This board is assumed to be valid... */
200 errx(1, "must give both -b and a board setup");
325 showboard(board);
418 * Check if the given word is present on the board, with the constraint
505 * the current board
537 * Check each word in the dictionary against the board
615 * If the argument is non-null then it is assumed to be a legal board spec
616 * in ascending cube order, oth. make a random board
633 * Shake the cubes and make the board
    [all...]
  /src/sys/external/isc/atheros_hal/dist/
ah_soc.h 26 * This is board-specific data that is stored in a "known"
30 * start of Board Configuration. Typically one gives up if
34 uint32_t magic; /* board data is valid */
39 char boardName[64]; /* Name of board */
40 uint16_t major; /* Board major number */
41 uint16_t minor; /* Board minor number */
42 uint32_t config; /* Board configuration */
80 * Board support data. The driver is required to locate
86 const struct ar531x_boarddata *board; /* board config data * member in struct:ar531x_config
    [all...]
  /src/games/gomoku/
main.c 76 struct spotstr board[BAREA]; /* info for board */ variable in typeref:struct:spotstr
236 if (s != RESIGN && board[s].s_occ != EMPTY) {
351 init_board(); /* initialize board contents */
354 bdisp_init(); /* initialize display of board */
509 board[game.moves[game.nmoves]].s_occ = EMPTY;
519 board[game.moves[game.nmoves]].s_occ =
551 n = board[s1].s_frame[r1] * FAREA
552 + board[s2].s_frame[r2];
560 sp = &board[s = ctos(input + 1)]
    [all...]
  /src/usr.sbin/installboot/
installboot.h 71 IB_BOARD = 1<<23, /* evb*: board specification */
106 const char *board; /* board specification */ member in struct:__anon8465
evboards.c 75 * The board database is implemented as a property list. The base
82 * base board plist is specific to the $MACHINE (e.g. "evbarm"), and
95 * The schema of the base board plist is as follows:
101 * -- Value: dictionary representing a board object.
104 * <key>example,example-board</key>
108 * -- Value: string containing the board description.
112 * <string>Example Co. Example Board</string>
116 * -- Value: string representing the board-specific
163 * Each overlay includes complete board objects that entirely replace
164 * the system-provided board objects in memory. Some of the keys i
794 prop_dictionary_t board; local
929 prop_dictionary_t board; local
1066 evb_board board; local
1143 evb_board board = NULL; local
1210 evb_board board = NULL; local
1310 evb_board board; local
    [all...]
  /src/sys/arch/amiga/dev/
mscreg.h 33 * - Added 6502 field to mscmemory so board can be halted while
38 * - Added Jukka's turbo board detection support and tmpbuf for copys. 950918
77 * - Added 6502 field to mscmemory so board can be halted while
82 * - Added Jukka's turbo board detection support and tmpbuf for copys. 950918
100 char Crystal; /* normal (1) or turbo (2) board? */
142 u_short Enable6502Reset; /* 0x8000 Stop board, */
145 u_short ResetBoard; /* 0xc000 reset board & run, */
153 volatile struct mscmemory *board; /* where the board is located */ member in struct:mscdevice
156 u_char unit; /* which unit (ie. which board) */
    [all...]
  /src/sys/arch/hp300/dev/
dcm.c 136 * Per board interrupt scheme. 16.7ms is the polling interrupt rate
250 struct dcmischeme sc_scheme; /* interrupt scheme for board */
262 #define DCM_ACTIVE 0x00000001 /* indicates board is alive */
263 #define DCM_ISCONSOLE 0x00000002 /* indicates board is console */
377 * Note that we always assume port 1 on the board.
577 int s, unit, board, port; local
582 board = DCMBOARD(unit);
585 sc = device_lookup_private(&dcm_cd,board);
613 int unit, board, port; local
618 board = DCMBOARD(unit)
630 int unit, board, port; local
647 int unit, board, port; local
664 int unit, board, port; local
965 int board, port, unit = DCMUNIT(dev); local
1079 int unit, board, port, mode, cflag = t->c_cflag; local
1161 int unit, board, port, nch; local
    [all...]
  /src/sys/dev/pci/
cz.c 47 * - The PLX can map the either the board's RAM or host RAM
59 * messages (one for every TTY, up to 64 per board!). So
61 * were the max of 64 ports per board.
150 * Per-board state.
212 * Macros to read and write the firmware control structures in board RAM.
261 * Determine if the given PCI device is a Cyclades-Z board.
281 * A Cyclades-Z board was found; attach it.
320 * Make sure that the board is completely stopped.
326 * Load the board's firmware.
446 * Reset the board via the PLX
481 const char *board; local
    [all...]
ips.c 301 u_int8_t board[8]; member in struct:ips_conf::ips_hw
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/ti/
Makefile 8 # Entries are grouped as per SoC present on the board. Groups are sorted
67 k3-am654-gp-evm-dtbs := k3-am654-base-board.dtb \
68 k3-am654-base-board-rocktech-rk101-panel.dtbo \
70 k3-am654-evm-dtbs := k3-am654-base-board.dtb k3-am654-icssg2.dtbo
84 dtb-$(CONFIG_ARCH_K3) += k3-am654-base-board.dtb
88 dtb-$(CONFIG_ARCH_K3) += k3-am654-base-board-rocktech-rk101-panel.dtbo
93 k3-j7200-evm-dtbs := k3-j7200-common-proc-board.dtb k3-j7200-evm-quad-port-eth-exp.dtbo
97 k3-j721e-evm-dtbs := k3-j721e-common-proc-board.dtb k3-j721e-evm-quad-port-eth-exp.dtbo
99 dtb-$(CONFIG_ARCH_K3) += k3-j721e-common-proc-board-infotainment.dtbo
101 dtb-$(CONFIG_ARCH_K3) += k3-j721e-evm-gesi-exp-board.dtb
    [all...]

Completed in 48 milliseconds