Home
last modified time | relevance | path

Searched refs:fbs (Results 1 – 10 of 10) sorted by relevance

/linux/drivers/mmc/host/
H A Dvub300.c332 u16 fbs[8]; /* Function Block Size */ member
856 vub300->fbs[1] = (cmd_arg << 8) | (0x00FF & vub300->fbs[1]); in snoop_block_size_and_bus_width()
858 vub300->fbs[1] = (0xFF & cmd_arg) | (0xFF00 & vub300->fbs[1]); in snoop_block_size_and_bus_width()
860 vub300->fbs[2] = (cmd_arg << 8) | (0x00FF & vub300->fbs[2]); in snoop_block_size_and_bus_width()
862 vub300->fbs[2] = (0xFF & cmd_arg) | (0xFF00 & vub300->fbs[2]); in snoop_block_size_and_bus_width()
864 vub300->fbs[3] = (cmd_arg << 8) | (0x00FF & vub300->fbs[3]); in snoop_block_size_and_bus_width()
866 vub300->fbs[3] = (0xFF & cmd_arg) | (0xFF00 & vub300->fbs[3]); in snoop_block_size_and_bus_width()
868 vub300->fbs[4] = (cmd_arg << 8) | (0x00FF & vub300->fbs[4]); in snoop_block_size_and_bus_width()
870 vub300->fbs[4] = (0xFF & cmd_arg) | (0xFF00 & vub300->fbs[4]); in snoop_block_size_and_bus_width()
872 vub300->fbs[5] = (cmd_arg << 8) | (0x00FF & vub300->fbs[5]); in snoop_block_size_and_bus_width()
[all …]
/linux/drivers/gpu/drm/
H A Ddrm_framebuffer.c347 list_add(&fb->filp_head, &file_priv->fbs); in drm_mode_addfb2()
379 struct list_head fbs; member
386 while (!list_empty(&arg->fbs)) { in drm_mode_rmfb_work_fn()
388 list_first_entry(&arg->fbs, typeof(*fb), filp_head); in drm_mode_rmfb_work_fn()
405 list_for_each_entry(fbl, &file_priv->fbs, filp_head) in drm_mode_closefb()
464 INIT_LIST_HEAD(&arg.fbs); in drm_mode_rmfb()
466 list_add_tail(&fb->filp_head, &arg.fbs); in drm_mode_rmfb()
794 INIT_LIST_HEAD(&arg.fbs); in drm_fb_release()
806 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) { in drm_fb_release()
808 list_move_tail(&fb->filp_head, &arg.fbs); in drm_fb_release()
[all …]
H A Ddrm_mode_config.c112 list_for_each_entry(fb, &file_priv->fbs, filp_head) { in drm_mode_getresources()
H A Ddrm_file.c150 INIT_LIST_HEAD(&file->fbs); in drm_file_alloc()
/linux/drivers/ata/
H A Dlibahci.c1727 u32 fbs = readl(port_mmio + PORT_FBS); in ahci_fbs_dec_intr() local
1735 writel(fbs | PORT_FBS_DEC, port_mmio + PORT_FBS); in ahci_fbs_dec_intr()
1736 fbs = readl(port_mmio + PORT_FBS); in ahci_fbs_dec_intr()
1737 while ((fbs & PORT_FBS_DEC) && retries--) { in ahci_fbs_dec_intr()
1739 fbs = readl(port_mmio + PORT_FBS); in ahci_fbs_dec_intr()
1742 if (fbs & PORT_FBS_DEC) in ahci_fbs_dec_intr()
1760 u32 fbs = readl(port_mmio + PORT_FBS); in ahci_error_intr() local
1761 int pmp = fbs >> PORT_FBS_DWE_OFFSET; in ahci_error_intr()
1763 if ((fbs & PORT_FBS_SDE) && (pmp < ap->nr_pmp_links)) { in ahci_error_intr()
2059 u32 fbs = readl(port_mmio + PORT_FBS); in ahci_qc_issue() local
[all …]
/linux/drivers/video/fbdev/omap2/omapfb/
H A Domapfb-sysfs.c169 struct omapfb_info *ofbi = FB2OFB(fbdev->fbs[i]); in get_overlay_fb()
456 struct omapfb_info *ofbi2 = FB2OFB(fbdev->fbs[i]); in store_size()
563 r = device_create_file(fbdev->fbs[i]->dev, in omapfb_create_sysfs()
584 device_remove_file(fbdev->fbs[i]->dev, in omapfb_remove_sysfs()
H A Domapfb-main.c1345 struct fb_info *fbi = fbdev->fbs[i]; in omapfb_free_all_fbmem()
1544 r = omapfb_alloc_fbmem_display(fbdev->fbs[i], in omapfb_allocate_all_fbs()
1553 struct omapfb_info *ofbi = FB2OFB(fbdev->fbs[i]); in omapfb_allocate_all_fbs()
1832 unregister_framebuffer(fbdev->fbs[i]); in omapfb_free_resources()
1838 fbinfo_cleanup(fbdev, fbdev->fbs[i]); in omapfb_free_resources()
1839 framebuffer_release(fbdev->fbs[i]); in omapfb_free_resources()
1884 fbdev->fbs[i] = fbi; in omapfb_create_framebuffers()
1906 struct omapfb_info *ofbi = FB2OFB(fbdev->fbs[i]); in omapfb_create_framebuffers()
1923 struct fb_info *fbi = fbdev->fbs[i]; in omapfb_create_framebuffers()
1937 struct fb_info *fbi = fbdev->fbs[i]; in omapfb_create_framebuffers()
[all …]
H A Domapfb.h87 struct fb_info *fbs[10]; member
H A Domapfb-ioctl.c233 struct omapfb_info *ofbi2 = FB2OFB(fbdev->fbs[i]); in omapfb_setup_mem()
/linux/include/drm/
H A Ddrm_file.h334 struct list_head fbs; member