HomeSort by: relevance | last modified time | path
    Searched refs:fbs (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/arch/hpcmips/stand/pbsdboot/
main.c 385 void SetBootInfo(struct bootinfo *bi, struct fb_setting *fbs);
808 SetBootInfo(struct bootinfo *bi, struct fb_setting *fbs)
817 bi->fb_addr = (unsigned char*)(fbs->addr + 0xA0000000);
818 bi->fb_type = fbs->type;
819 bi->fb_line_bytes = fbs->linebytes;
820 bi->fb_width = fbs->width;
821 bi->fb_height = fbs->height;
822 bi->platid_cpu = fbs->platid_cpu;
823 bi->platid_machine = fbs->platid_machine;
827 fbs->name
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/
drm_framebuffer.c 373 list_add(&fb->filp_head, &file_priv->fbs);
405 struct list_head fbs; member in struct:drm_mode_rmfb_work
412 while (!list_empty(&arg->fbs)) {
414 list_first_entry(&arg->fbs, typeof(*fb), filp_head);
449 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
464 * we now own the reference that was stored in the fbs list
474 INIT_LIST_HEAD(&arg.fbs);
475 list_add_tail(&fb->filp_head, &arg.fbs);
649 * drm_fb_release - remove and free the FBs on this file
652 * Destroy all the FBs associated with @filp
    [all...]
drm_mode_config.c 117 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
drm_file.c 152 INIT_LIST_HEAD(&file->fbs);
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_file.h 282 * @fbs:
287 * Protected by @fbs_lock. Note that the @fbs list holds a reference on
290 struct list_head fbs; member in struct:drm_file
292 /** @fbs_lock: Protects @fbs. */
  /src/sys/dev/ic/
ahcisata_core.c 1692 * Read FBS to get the drive which caused the error, if PM is in use.
1701 uint32_t fbs = AHCI_READ(sc, AHCI_P_FBS(chp->ch_channel)); local in function:ahci_channel_recover
1702 if (fbs & AHCI_P_FBS_SDE) {
1703 drive = (fbs & AHCI_P_FBS_DWE) >> AHCI_P_FBS_DWE_SHIFT;
1709 fbs |= AHCI_P_FBS_DEC;
1710 AHCI_WRITE(sc, AHCI_P_FBS(chp->ch_channel), fbs);
1712 fbs = AHCI_READ(sc,
1714 if ((fbs & AHCI_P_FBS_DEC) == 0)
1718 if ((fbs & AHCI_P_FBS_DEC) != 0) {

Completed in 26 milliseconds