| /OK3568_Linux_fs/kernel/drivers/media/platform/davinci/ |
| H A D | vpbe_osd.c | 50 struct osd_state *osd = sd; in osd_read() local 52 return readl(osd->osd_base + offset); in osd_read() 57 struct osd_state *osd = sd; in osd_write() local 59 writel(val, osd->osd_base + offset); in osd_write() 66 struct osd_state *osd = sd; in osd_set() local 68 void __iomem *addr = osd->osd_base + offset; in osd_set() 78 struct osd_state *osd = sd; in osd_clear() local 80 void __iomem *addr = osd->osd_base + offset; in osd_clear() 91 struct osd_state *osd = sd; in osd_modify() local 93 void __iomem *addr = osd->osd_base + offset; in osd_modify() [all …]
|
| /OK3568_Linux_fs/kernel/net/ceph/ |
| H A D | osd_client.c | 49 static void link_request(struct ceph_osd *osd, struct ceph_osd_request *req); 50 static void unlink_request(struct ceph_osd *osd, struct ceph_osd_request *req); 51 static void link_linger(struct ceph_osd *osd, 53 static void unlink_linger(struct ceph_osd *osd, 55 static void clear_backoffs(struct ceph_osd *osd); 77 static inline void verify_osd_locked(struct ceph_osd *osd) in verify_osd_locked() argument 79 struct ceph_osd_client *osdc = osd->o_osdc; in verify_osd_locked() 81 WARN_ON(!(mutex_is_locked(&osd->lock) && in verify_osd_locked() 92 static inline void verify_osd_locked(struct ceph_osd *osd) { } in verify_osd_locked() argument 428 t->osd = CEPH_HOMELESS_OSD; in target_init() [all …]
|
| H A D | debugfs.c | 108 pg->pgid.seed, pg->primary_temp.osd); in osdmap_show() 187 seq_printf(s, "osd%d\t%llu.%x\t", t->osd, t->pgid.pool, t->pgid.seed); in dump_target() 234 static void dump_requests(struct seq_file *s, struct ceph_osd *osd) in dump_requests() argument 238 mutex_lock(&osd->lock); in dump_requests() 239 for (n = rb_first(&osd->o_requests); n; n = rb_next(n)) { in dump_requests() 246 mutex_unlock(&osd->lock); in dump_requests() 260 static void dump_linger_requests(struct seq_file *s, struct ceph_osd *osd) in dump_linger_requests() argument 264 mutex_lock(&osd->lock); in dump_linger_requests() 265 for (n = rb_first(&osd->o_linger_requests); n; n = rb_next(n)) { in dump_linger_requests() 272 mutex_unlock(&osd->lock); in dump_linger_requests() [all …]
|
| H A D | osdmap.c | 1459 u32 osd; in __decode_primary_temp() local 1461 ceph_decode_32_safe(p, end, osd, e_inval); in __decode_primary_temp() 1462 if (osd == (u32)-1 && incremental) in __decode_primary_temp() 1469 pg->primary_temp.osd = osd; in __decode_primary_temp() 1489 u32 ceph_get_primary_affinity(struct ceph_osdmap *map, int osd) in ceph_get_primary_affinity() argument 1491 BUG_ON(osd >= map->max_osd); in ceph_get_primary_affinity() 1496 return map->osd_primary_affinity[osd]; in ceph_get_primary_affinity() 1499 static int set_primary_affinity(struct ceph_osdmap *map, int osd, u32 aff) in set_primary_affinity() argument 1501 BUG_ON(osd >= map->max_osd); in set_primary_affinity() 1517 map->osd_primary_affinity[osd] = aff; in set_primary_affinity() [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/ceph/ |
| H A D | osdmap.h | 161 int osd; member 201 static inline bool ceph_osd_exists(struct ceph_osdmap *map, int osd) in ceph_osd_exists() argument 203 return osd >= 0 && osd < map->max_osd && in ceph_osd_exists() 204 (map->osd_state[osd] & CEPH_OSD_EXISTS); in ceph_osd_exists() 207 static inline bool ceph_osd_is_up(struct ceph_osdmap *map, int osd) in ceph_osd_is_up() argument 209 return ceph_osd_exists(map, osd) && in ceph_osd_is_up() 210 (map->osd_state[osd] & CEPH_OSD_UP); in ceph_osd_is_up() 213 static inline bool ceph_osd_is_down(struct ceph_osdmap *map, int osd) in ceph_osd_is_down() argument 215 return !ceph_osd_is_up(map, osd); in ceph_osd_is_down() 219 extern u32 ceph_get_primary_affinity(struct ceph_osdmap *map, int osd); [all …]
|
| H A D | osd_client.h | 175 int osd; member 258 struct ceph_osd *osd; member
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/zte/ |
| H A D | zx_vou.c | 171 void __iomem *osd; member 553 zplane->layer = vou->osd + MAIN_GL_OFFSET; in zx_crtc_init() 554 zplane->csc = vou->osd + MAIN_GL_CSC_OFFSET; in zx_crtc_init() 555 zplane->hbsc = vou->osd + MAIN_HBSC_OFFSET; in zx_crtc_init() 558 zcrtc->chnreg = vou->osd + OSD_MAIN_CHN; in zx_crtc_init() 559 zcrtc->chncsc = vou->osd + MAIN_CHN_CSC_OFFSET; in zx_crtc_init() 560 zcrtc->dither = vou->osd + MAIN_DITHER_OFFSET; in zx_crtc_init() 564 zplane->layer = vou->osd + AUX_GL_OFFSET; in zx_crtc_init() 565 zplane->csc = vou->osd + AUX_GL_CSC_OFFSET; in zx_crtc_init() 566 zplane->hbsc = vou->osd + AUX_HBSC_OFFSET; in zx_crtc_init() [all …]
|
| /OK3568_Linux_fs/u-boot/board/gdsys/common/ |
| H A D | Makefile | 12 obj-$(CONFIG_IOCON) += osd.o mclink.o dp501.o phy.o ch7301.o 13 obj-$(CONFIG_DLVISION_10G) += osd.o dp501.o 15 obj-$(CONFIG_HRCON) += osd.o mclink.o dp501.o phy.o ioep-fpga.o fanctrl.o 18 obj-$(CONFIG_STRIDER_CON) += osd.o 19 obj-$(CONFIG_STRIDER_CON_DP) += osd.o
|
| /OK3568_Linux_fs/external/mpp/mpp/hal/rkenc/common/ |
| H A D | vepu541_common.c | 602 MppEncOSDData2 osd; in vepu541_set_osd() local 604 if (copy2osd2(&osd, cfg->osd_data, cfg->osd_data2)) in vepu541_set_osd() 607 if (osd.num_region == 0) in vepu541_set_osd() 610 if (osd.num_region > 8) { in vepu541_set_osd() 612 osd.num_region); in vepu541_set_osd() 613 mpp_assert(osd.num_region <= 8); in vepu541_set_osd() 637 MppEncOSDRegion2 *region = osd.region; in vepu541_set_osd() 639 RK_U32 num = osd.num_region; in vepu541_set_osd() 806 MppEncOSDData2 osd; in vepu540_set_osd() local 808 if (copy2osd2(&osd, cfg->osd_data, cfg->osd_data2)) in vepu540_set_osd() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/test-drivers/vivid/ |
| H A D | vivid-cec.c | 231 char osd[14]; in vivid_received() local 241 cec_ops_set_osd_string(msg, &disp_ctl, osd); in vivid_received() 244 strscpy(dev->osd, osd, sizeof(dev->osd)); in vivid_received() 248 strscpy(dev->osd, osd, sizeof(dev->osd)); in vivid_received() 252 dev->osd[0] = 0; in vivid_received()
|
| H A D | vivid-kthread-cap.c | 52 u16 *cap, const u16 *osd) in copy_pix() argument 62 *cap = *osd; in copy_pix() 81 *osd != dev->chromakey_out) in copy_pix() 361 u8 *osd = vosdbuf + vid_overlay_y * stride_osd; in vivid_copy_buffer() local 369 dev->blended_line + offset, osd, in vivid_copy_buffer() 373 osd, (dev->loop_vid_overlay.width * twopixsize) / 2); in vivid_copy_buffer() 538 if (dev->osd[0]) { in vivid_fillbuff() 541 " OSD \"%s\"", dev->osd); in vivid_fillbuff() 547 dev->osd[0] = 0; in vivid_fillbuff()
|
| H A D | Makefile | 6 vivid-osd.o vivid-meta-cap.o vivid-meta-out.o \
|
| /OK3568_Linux_fs/kernel/drivers/media/pci/ivtv/ |
| H A D | ivtvfb.c | 206 struct ivtv_osd_coords *osd) in ivtvfb_get_osd_coords() argument 213 osd->offset = data[0] - oi->video_rbase; in ivtvfb_get_osd_coords() 214 osd->max_offset = oi->display_width * oi->display_height * 4; in ivtvfb_get_osd_coords() 215 osd->pixel_stride = data[1]; in ivtvfb_get_osd_coords() 216 osd->lines = data[2]; in ivtvfb_get_osd_coords() 217 osd->x = data[3]; in ivtvfb_get_osd_coords() 218 osd->y = data[4]; in ivtvfb_get_osd_coords() 222 static int ivtvfb_set_osd_coords(struct ivtv *itv, const struct ivtv_osd_coords *osd) in ivtvfb_set_osd_coords() argument 226 oi->display_width = osd->pixel_stride; in ivtvfb_set_osd_coords() 227 oi->display_byte_stride = osd->pixel_stride * oi->bytes_per_pixel; in ivtvfb_set_osd_coords() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/media/drivers/ |
| H A D | cx2341x-devel.rst | 3010 osd on/off 3011 0 = osd off 3012 1 = osd on 3015 Decoder + osd video timing 3023 Decoder + osd 3029 Decoder & osd ?? unknown 3045 Decoder + osd ?? unknown 3060 osd ?? unknown 3061 Appears to affect the osd position stability. The higher the value the 3065 osd ?? unknown [all …]
|
| H A D | davinci-vpbe-devel.rst | 22 VPBE osd driver
|
| /OK3568_Linux_fs/kernel/fs/ceph/ |
| H A D | ioctl.c | 223 dl.osd = ceph_pg_to_acting_primary(osdc->osdmap, &pgid); in ceph_ioctl_get_dataloc() 224 if (dl.osd >= 0) { in ceph_ioctl_get_dataloc() 226 ceph_osd_addr(osdc->osdmap, dl.osd); in ceph_ioctl_get_dataloc()
|
| H A D | ioctl.h | 64 __s64 osd; /* out: osd # */ member
|
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/ |
| H A D | vidioc-g-fbuf.rst | 40 :ref:`Video Overlay <overlay>` or :ref:`Video Output Overlay <osd>` 113 :ref:`osd`). 295 ioctl, see :ref:`overlay` and :ref:`osd`. 299 and :ref:`osd`. 314 and :ref:`osd`. 328 and :ref:`osd`. Both chroma-keying are mutual exclusive to each
|
| H A D | devices.rst | 16 dev-osd
|
| H A D | pixfmt-indexed.rst | 11 :ref:`Video Output Overlays <osd>` only. There are no ioctls to access
|
| /OK3568_Linux_fs/device/rockchip/common/images/oem/oem_cvr/etc/rkadk/ |
| H A D | rkadk_setting.ini | 14 osd = TRUE key
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/display/ |
| H A D | zte,vou.txt | 25 "osd" 86 reg-names = "osd", "timing_ctrl",
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/dvb/ |
| H A D | ..install.cmd | 1 …clude/uapi/linux/dvb net.h dmx.h audio.h version.h ca.h frontend.h video.h osd.h; /bin/sh scripts/…
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/dvb/ |
| H A D | ..install.cmd | 1 …clude/uapi/linux/dvb net.h dmx.h audio.h version.h ca.h frontend.h video.h osd.h; /bin/sh scripts/…
|
| /OK3568_Linux_fs/kernel/include/media/davinci/ |
| H A D | vpbe.h | 80 struct osd_config_info osd; member
|