/src/sys/arch/alpha/pci/ |
pci_consinit.c | 78 const struct ctb *ctb; local in function:pci_consinit 80 ctb = (struct ctb *)(((char *)hwrpb) + hwrpb->rpb_ctb_off); 82 switch (ctb->ctb_term_type) { 107 switch (CTB_TURBOSLOT_TYPE(ctb->ctb_turboslot)) { 116 CTB_TURBOSLOT_BUS(ctb->ctb_turboslot), 117 CTB_TURBOSLOT_SLOT(ctb->ctb_turboslot), 0); 126 printf("ctb->ctb_term_type = 0x%lx\n", ctb->ctb_term_type) [all...] |
pci_machdep.c | 150 struct ctb *ctb; local in function:device_pci_register 154 ctb = (struct ctb *)(((char *)hwrpb) + hwrpb->rpb_ctb_off); 156 ctb->ctb_term_type == CTB_GRAPHICS) {
|
/src/sys/arch/alpha/alpha/ |
dec_3000_300.c | 91 struct ctb *ctb; local in function:dec_3000_300_cons_init 93 ctb = (struct ctb *)(((char *)hwrpb) + hwrpb->rpb_ctb_off); 95 switch (ctb->ctb_term_type) { 101 CTB_TURBOSLOT_SLOT(ctb->ctb_turboslot)) == 0) { 106 printf("TURBOchannel slot 0x%lx.\n", ctb->ctb_turboslot); 133 printf("ctb->ctb_term_type = 0x%lx\n", ctb->ctb_term_type); 134 printf("ctb->ctb_turboslot = 0x%lx\n", ctb->ctb_turboslot) [all...] |
dec_3000_500.c | 111 struct ctb *ctb; local in function:dec_3000_500_cons_init 113 ctb = (struct ctb *)(((char *)hwrpb) + hwrpb->rpb_ctb_off); 115 switch (ctb->ctb_term_type) { 121 CTB_TURBOSLOT_SLOT(ctb->ctb_turboslot)) == 0) { 126 printf("TURBOchannel slot 0x%lx.\n", ctb->ctb_turboslot); 153 printf("ctb->ctb_term_type = 0x%lx\n", ctb->ctb_term_type); 154 printf("ctb->ctb_turboslot = 0x%lx\n", ctb->ctb_turboslot) [all...] |
dec_1000a.c | 128 struct ctb *ctb; local in function:dec_1000a_cons_init 151 ctb = (struct ctb *)(((char *)hwrpb) + hwrpb->rpb_ctb_off); 153 saveslot = ctb->ctb_turboslot; 155 if (ctb->ctb_term_type == CTB_GRAPHICS && 156 CTB_TURBOSLOT_TYPE(ctb->ctb_turboslot) != CTB_TURBOSLOT_TYPE_PCI) { 163 ctb->ctb_turboslot = CTB_TURBOSLOT_TYPE_ISA << 16; 168 ctb->ctb_turboslot = saveslot;
|
dec_2000_300.c | 125 struct ctb_tt *ctb; local in function:dec_2000_300_cons_init 132 ctb = (struct ctb_tt *)(((char *)hwrpb) + hwrpb->rpb_ctb_off); 135 * The Jensen uses an older (pre-Type 4) CTB format. The 143 switch (ctb->ctb_type) { 149 printf("CTB CSR = 0x%08lx\n", ctb->ctb_csr); 150 printf("CTB BAUD = %lu\n", ctb->ctb_baud); 157 DELAY(160000000 / ctb->ctb_baud); 160 ctb->ctb_baud, COM_FREQ, COM_TYPE_NORMAL [all...] |
dec_2100_a500.c | 120 struct ctb *ctb; local in function:dec_2100_a500_cons_init 125 ctb = (struct ctb *)(((char *)hwrpb) + hwrpb->rpb_ctb_off); 126 ctbslot = ctb->ctb_turboslot; 133 switch (ctb->ctb_term_type) {
|
dec_6600.c | 105 struct ctb *ctb; local in function:dec_6600_cons_init 110 ctb = (struct ctb *)(((char *)hwrpb) + hwrpb->rpb_ctb_off); 111 ctbslot = ctb->ctb_turboslot; 121 switch (ctb->ctb_term_type) {
|
/src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/ |
intel_guc_ct.c | 280 * DOC: CTB Host to GuC request 282 * Format of the CTB Host to GuC request message is as follows:: 297 static int ctb_write(struct intel_guc_ct_buffer *ctb, 303 struct guc_ct_buffer_desc *desc = ctb->desc; 309 u32 *cmds = ctb->cmds; 482 struct intel_guc_ct_buffer *ctb = &ct->ctbs[CTB_SEND]; local in function:ct_send 483 struct guc_ct_buffer_desc *desc = ctb->desc; 504 err = ctb_write(ctb, action, len, fence, !!response_buf); 587 static int ctb_read(struct intel_guc_ct_buffer *ctb, u32 *data) 589 struct guc_ct_buffer_desc *desc = ctb->desc 829 struct intel_guc_ct_buffer *ctb = &ct->ctbs[CTB_RECV]; local in function:intel_guc_ct_event_handler [all...] |
/src/sys/arch/alpha/include/ |
rpb.h | 217 uint64_t rpb_ctb_size; /* B0: ctb size in bytes */ 218 u_long rpb_ctb_off; /* B8: offset to ctb */ 366 * CTB: Console Terminal Block 368 struct ctb { struct 369 uint64_t ctb_type; /* 0: CTB type */ 381 #define CTB_TYPE4 0x04 /* type 4 CTB */ 414 uint64_t ctb_type; /* 0: CTB type */
|