Home
last modified time | relevance | path

Searched refs:zr (Results 1 – 14 of 14) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/staging/media/zoran/
H A Dzoran_device.c53 int zr_set_buf(struct zoran *zr);
57 static void zr36057_init_vfe(struct zoran *zr) in zr36057_init_vfe() argument
85 void GPIO(struct zoran *zr, int bit, unsigned int value) in GPIO() argument
107 int post_office_wait(struct zoran *zr) in post_office_wait() argument
116 if ((por & ZR36057_POR_PO_TIME) && !zr->card.gws_not_connected) { in post_office_wait()
118 pci_info(zr->pci_dev, "pop timeout %08x\n", por); in post_office_wait()
125 int post_office_write(struct zoran *zr, unsigned int guest, in post_office_write() argument
135 return post_office_wait(zr); in post_office_write()
138 int post_office_read(struct zoran *zr, unsigned int guest, unsigned int reg) in post_office_read() argument
144 if (post_office_wait(zr) < 0) in post_office_read()
[all …]
H A Dzoran_card.c121 struct zoran *zr = (struct zoran *)codec->master_data->data; in zr36060_read() local
124 if (post_office_wait(zr) || post_office_write(zr, 0, 1, reg >> 8) || in zr36060_read()
125 post_office_write(zr, 0, 2, reg & 0xff)) in zr36060_read()
128 data = post_office_read(zr, 0, 3) & 0xff; in zr36060_read()
134 struct zoran *zr = (struct zoran *)codec->master_data->data; in zr36060_write() local
136 if (post_office_wait(zr) || post_office_write(zr, 0, 1, reg >> 8) || in zr36060_write()
137 post_office_write(zr, 0, 2, reg & 0xff)) in zr36060_write()
140 post_office_write(zr, 0, 3, val & 0xff); in zr36060_write()
146 struct zoran *zr = (struct zoran *)codec->master_data->data; in zr36050_read() local
149 if (post_office_wait(zr) || post_office_write(zr, 1, 0, reg >> 2)) // reg. HIGHBYTES in zr36050_read()
[all …]
H A Dzoran_driver.c167 static int zoran_v4l_set_format(struct zoran *zr, int width, int height, in zoran_v4l_set_format() argument
176 pci_err(zr->pci_dev, "%s - wrong frame size (%dx%d)\n", __func__, width, height); in zoran_v4l_set_format()
182 zr->buffer_size = height * width * bpp; in zoran_v4l_set_format()
185 if (height * width * bpp > zr->buffer_size) { in zoran_v4l_set_format()
186 pci_err(zr->pci_dev, "%s - video buffer size (%d kB) is too small\n", in zoran_v4l_set_format()
187 __func__, zr->buffer_size >> 10); in zoran_v4l_set_format()
194 pci_err(zr->pci_dev, "%s - wrong frame alignment\n", __func__); in zoran_v4l_set_format()
198 zr->v4l_settings.width = width; in zoran_v4l_set_format()
199 zr->v4l_settings.height = height; in zoran_v4l_set_format()
200 zr->v4l_settings.format = format; in zoran_v4l_set_format()
[all …]
H A Dzoran_device.h16 extern void GPIO(struct zoran *zr, int bit, unsigned int value);
19 extern int post_office_wait(struct zoran *zr);
20 extern int post_office_write(struct zoran *zr, unsigned int guest, unsigned int reg, unsigned int v…
21 extern int post_office_read(struct zoran *zr, unsigned int guest, unsigned int reg);
23 extern void detect_guest_activity(struct zoran *zr);
25 extern void jpeg_codec_sleep(struct zoran *zr, int sleep);
26 extern int jpeg_codec_reset(struct zoran *zr);
29 extern void zr36057_overlay(struct zoran *zr, int on);
31 extern void zr36057_set_memgrab(struct zoran *zr, int mode);
32 extern int wait_grab_pending(struct zoran *zr);
[all …]
H A Dzoran.h46 #define ZR_DEVNAME(zr) ((zr)->name) argument
48 #define BUZ_MAX_WIDTH (zr->timing->wa)
49 #define BUZ_MAX_HEIGHT (zr->timing->ha)
167 struct zoran *zr; member
203 void (*init)(struct zoran *zr);
308 #define btwrite(dat, adr) writel((dat), zr->zr36057_mem + (adr))
309 #define btread(adr) readl(zr->zr36057_mem + (adr))
317 int zoran_queue_init(struct zoran *zr, struct vb2_queue *vq, int dir);
318 void zoran_queue_exit(struct zoran *zr);
319 int zr_set_buf(struct zoran *zr);
H A Dzoran_card.h22 extern int zoran_check_jpg_settings(struct zoran *zr,
25 extern void zoran_open_init_params(struct zoran *zr);
/OK3568_Linux_fs/u-boot/fs/ubifs/
H A Dtnc_misc.c32 struct ubifs_znode *ubifs_tnc_levelorder_next(struct ubifs_znode *zr, in ubifs_tnc_levelorder_next() argument
38 ubifs_assert(zr); in ubifs_tnc_levelorder_next()
41 return zr; in ubifs_tnc_levelorder_next()
43 if (unlikely(znode == zr)) { in ubifs_tnc_levelorder_next()
46 return ubifs_tnc_find_child(zr, 0); in ubifs_tnc_levelorder_next()
53 ubifs_assert(znode->level <= zr->level); in ubifs_tnc_levelorder_next()
59 while (znode->parent != zr && iip >= znode->parent->child_cnt) { in ubifs_tnc_levelorder_next()
64 if (unlikely(znode->parent == zr && in ubifs_tnc_levelorder_next()
79 znode = ubifs_tnc_find_child(zr, 0); in ubifs_tnc_levelorder_next()
H A Dubifs.h2222 struct ubifs_znode *ubifs_tnc_levelorder_next(struct ubifs_znode *zr,
2229 long ubifs_destroy_tnc_subtree(struct ubifs_znode *zr);
/OK3568_Linux_fs/kernel/fs/ubifs/
H A Dtnc_misc.c30 struct ubifs_znode *zr, in ubifs_tnc_levelorder_next() argument
36 ubifs_assert(c, zr); in ubifs_tnc_levelorder_next()
39 return zr; in ubifs_tnc_levelorder_next()
41 if (unlikely(znode == zr)) { in ubifs_tnc_levelorder_next()
44 return ubifs_tnc_find_child(zr, 0); in ubifs_tnc_levelorder_next()
51 ubifs_assert(c, znode->level <= zr->level); in ubifs_tnc_levelorder_next()
57 while (znode->parent != zr && iip >= znode->parent->child_cnt) { in ubifs_tnc_levelorder_next()
62 if (unlikely(znode->parent == zr && in ubifs_tnc_levelorder_next()
77 znode = ubifs_tnc_find_child(zr, 0); in ubifs_tnc_levelorder_next()
H A Dubifs.h1862 struct ubifs_znode *zr,
1871 struct ubifs_znode *zr);
/OK3568_Linux_fs/buildroot/package/p7zip/
H A Dp7zip.mk20 -C $(@D) 7zr
24 $(INSTALL) -D -m 0755 $(@D)/bin/7zr $(TARGET_DIR)/usr/bin/7zr
/OK3568_Linux_fs/u-boot/lib/lzma/
H A Dlzma.txt56 7zr.exe - 7-Zip with 7z/lzma/xz support.
101 Alone7z - 7zr.exe: Standalone version of 7z.exe that supports only 7z/LZMA/BCJ/BCJ2
103 …Format7zR - 7zr.dll: Reduced version of 7za.dll: extracting/compressing to 7z/LZMA/BCJ/BCJ2
108 Client7z - Test application for 7za.dll, 7zr.dll, 7zxr.dll
/OK3568_Linux_fs/device/rockchip/common/images/userdata/userdata_normal/media/
H A Dyuv420_p352x288.yuv216 …*,..,,--./.-.+,.,14++2.''(*+04-:NGML=;BZI0AVZML6V�{~�aWy������������������zr|zvxn_\b^RF834/$ …
424 …}~~~~}{}~|{|}|~~~~}}}}}|~}}|}~}~}|~~}}||}}}}}|~}}~}}}~�~�~~~�zr{xnmnllkjkiikmmkjlmkk…
430 vh\���������������������������������~ut~�zr������������������~}zwtplg`WRRXB-9@/I�Ї(Nllkm…
455 …��������������������������������������qX��������������������Ů�u������ͼ�~rq}zr�uFE=.>?3%/c��������…
480 …���������������������������������������W��������������������Ⱥ�v��������va��zr���e<BADEEI_iXn������…
503 …X~��������������������������������jGD\��������������������\��[R������������zr��������������������Q…
575 …������������������y{���������s�������KAJCDDAMedW����������������������oz��zr~���p`v��������������…
576 …24221-,-/..0//011000001.)x�GF^0=��������yl]Yd|�����vnvv������������z�����zr��{x~{tiiw~ytuy}����}…
602 …24221-,-/..0//011000001/)u�NF_3:~�������{m[Ub}�{v��zlqp������������}~���{zr}��{|vngdowurrtz����…
670 …������������������œxy������ӪTKRPWx���PAIDCEBMddWw����������������������px��zr~���m`|��������������…
[all …]
/OK3568_Linux_fs/recovery/
HDrootfs.cpio.gz107070100A8AEB0000041ED0000000000000000000000116841B48100000000000000FD0000000200000000000000000000000200000000.�07070100A8B07C000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000900000000.gitkeep��07070100A8B07D000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000B00000000.skip_fsck����07070100A8AEB10000A1FF0000000000000000000000016841B0B600000007000000FD0000000200000000000000000000000400000000bin���usr/bin�07070100A8B07E000081A400000000000000000000000168412635000001CC000000FD0000000200000000000000000000001100000000busybox. ...