Home
last modified time | relevance | path

Searched refs:omap (Results 1 – 25 of 80) sorted by relevance

1234

/third_party/uboot/u-boot-2020.01/drivers/usb/dwc3/
Ddwc3-omap.c148 static u32 dwc3_omap_read_utmi_status(struct dwc3_omap *omap) in dwc3_omap_read_utmi_status() argument
150 return dwc3_omap_readl(omap->base, USBOTGSS_UTMI_OTG_STATUS + in dwc3_omap_read_utmi_status()
151 omap->utmi_otg_offset); in dwc3_omap_read_utmi_status()
154 static void dwc3_omap_write_utmi_status(struct dwc3_omap *omap, u32 value) in dwc3_omap_write_utmi_status() argument
156 dwc3_omap_writel(omap->base, USBOTGSS_UTMI_OTG_STATUS + in dwc3_omap_write_utmi_status()
157 omap->utmi_otg_offset, value); in dwc3_omap_write_utmi_status()
161 static u32 dwc3_omap_read_irq0_status(struct dwc3_omap *omap) in dwc3_omap_read_irq0_status() argument
163 return dwc3_omap_readl(omap->base, USBOTGSS_IRQSTATUS_0 - in dwc3_omap_read_irq0_status()
164 omap->irq0_offset); in dwc3_omap_read_irq0_status()
167 static void dwc3_omap_write_irq0_status(struct dwc3_omap *omap, u32 value) in dwc3_omap_write_irq0_status() argument
[all …]
/third_party/boost/libs/intrusive/example/
Ddoc_map.cpp58 OrderedMap omap(values.begin(), values.end()); in main() local
64 assert(omap.find(i) != omap.end()); in main()
66 assert(omap.lower_bound(i) != omap.end()); in main()
67 assert(++omap.lower_bound(i) == omap.upper_bound(i)); in main()
68 assert(omap.equal_range(i).first != omap.equal_range(i).second); in main()
74 assert(1 == omap.count(i)); in main()
76 assert(1 == omap.erase(i)); in main()
79 assert(omap.empty()); in main()
/third_party/uboot/u-boot-2020.01/drivers/usb/phy/
Domap_usb_phy.c155 static void omap_enable_usb3_phy(struct omap_xhci *omap) in omap_enable_usb3_phy() argument
162 writel(val, &omap->otg_wrapper->sysconfig); in omap_enable_usb3_phy()
165 val = readl(&omap->otg_wrapper->utmi_otg_status); in omap_enable_usb3_phy()
166 writel(val, &omap->otg_wrapper->utmi_otg_status); in omap_enable_usb3_phy()
169 writel(USBOTGSS_COREIRQ_EN, &omap->otg_wrapper->irqenable_set_0); in omap_enable_usb3_phy()
179 writel(val, &omap->otg_wrapper->irqenable_set_1); in omap_enable_usb3_phy()
182 val = readl(&omap->otg_wrapper->irqstatus_1); in omap_enable_usb3_phy()
183 writel(val, &omap->otg_wrapper->irqstatus_1); in omap_enable_usb3_phy()
184 val = readl(&omap->otg_wrapper->irqstatus_0); in omap_enable_usb3_phy()
185 writel(val, &omap->otg_wrapper->irqstatus_0); in omap_enable_usb3_phy()
[all …]
/third_party/uboot/u-boot-2020.01/drivers/usb/host/
Dxhci-omap.c25 static struct omap_xhci omap; variable
27 static int omap_xhci_core_init(struct omap_xhci *omap) in omap_xhci_core_init() argument
32 omap_enable_phy(omap); in omap_xhci_core_init()
34 ret = dwc3_core_init(omap->dwc3_reg); in omap_xhci_core_init()
41 dwc3_set_mode(omap->dwc3_reg, DWC3_GCTL_PRTCAP_HOST); in omap_xhci_core_init()
46 static void omap_xhci_core_exit(struct omap_xhci *omap) in omap_xhci_core_exit() argument
53 struct omap_xhci *ctx = &omap; in xhci_hcd_init()
86 struct omap_xhci *ctx = &omap; in xhci_hcd_stop()
/third_party/gstreamer/gstplugins_bad/gst/pnm/
Dgstpnmenc.c187 GstMapInfo omap; in gst_pnmenc_handle_frame() local
245 if (gst_buffer_map (frame->output_buffer, &omap, GST_MAP_WRITE) == FALSE) { in gst_pnmenc_handle_frame()
252 gst_buffer_unmap (frame->output_buffer, &omap); in gst_pnmenc_handle_frame()
258 memcpy (omap.data, header, head_size); in gst_pnmenc_handle_frame()
276 g_snprintf ((char *) omap.data + head_size, maxbytes_per_pixel, in gst_pnmenc_handle_frame()
279 omap.data[head_size++] = ' '; in gst_pnmenc_handle_frame()
282 omap.data[head_size++] = '\n'; in gst_pnmenc_handle_frame()
290 g_snprintf ((char *) omap.data + head_size, maxbytes_per_pixel, in gst_pnmenc_handle_frame()
293 omap.data[head_size++] = ' '; in gst_pnmenc_handle_frame()
296 omap.data[head_size++] = '\n'; in gst_pnmenc_handle_frame()
[all …]
Dgstpnmdec.c364 GstMapInfo imap, omap; in gst_pnmdec_handle_frame() local
383 gst_buffer_map (frame->output_buffer, &omap, GST_MAP_WRITE); in gst_pnmdec_handle_frame()
391 omap.data[i * 8] = (imap.data[i] & 0x80) ? 0 : 255; in gst_pnmdec_handle_frame()
392 omap.data[i * 8 + 1] = (imap.data[i] & 0x40) ? 0 : 255; in gst_pnmdec_handle_frame()
393 omap.data[i * 8 + 2] = (imap.data[i] & 0x20) ? 0 : 255; in gst_pnmdec_handle_frame()
394 omap.data[i * 8 + 3] = (imap.data[i] & 0x10) ? 0 : 255; in gst_pnmdec_handle_frame()
395 omap.data[i * 8 + 4] = (imap.data[i] & 0x08) ? 0 : 255; in gst_pnmdec_handle_frame()
396 omap.data[i * 8 + 5] = (imap.data[i] & 0x04) ? 0 : 255; in gst_pnmdec_handle_frame()
397 omap.data[i * 8 + 6] = (imap.data[i] & 0x02) ? 0 : 255; in gst_pnmdec_handle_frame()
398 omap.data[i * 8 + 7] = (imap.data[i] & 0x01) ? 0 : 255; in gst_pnmdec_handle_frame()
[all …]
/third_party/uboot/u-boot-2020.01/doc/
DREADME.omap-ulpi-viewport1 Reference code ""drivers/usb/ulpi/omap-ulpi-viewport.c"
4 any ulpi phy port access on omap platform.
6 On omap ehci reg map contains INSNREG05_ULPI
11 omap-ulpi-viewport.c is a low level function
14 To enable and use omap-ulpi-viewport.c
20 omap-ulpi-viewport implementation.
23 omap-ehci driver code requests for ulpi phy reset if
DREADME.davinci64 http://focus.ti.com/docs/prod/folders/print/omap-l138.html
65 http://www.logicpd.com/products/development-kits/zoom-omap-l138-evm-development-kit
68 http://focus.ti.com/docs/prod/folders/print/omap-l138.html
/third_party/uboot/u-boot-2020.01/board/nokia/rx51/
Drx51.c53 static struct tag_omap omap[] = { variable
106 while (omap[i].hdr.tag) { in init_omap_tags()
107 switch (omap[i].hdr.tag) { in init_omap_tags()
109 boot_reason_ptr = omap[i].u.boot_reason.reason_str; in init_omap_tags()
112 component = omap[i].u.version.component; in init_omap_tags()
113 version = omap[i].u.version.version; in init_omap_tags()
254 for (i = 0; omap[i].hdr.tag; i++) { in setup_board_tags()
258 omap[i].hdr.tag == OMAP_TAG_SERIAL_CONSOLE) in setup_board_tags()
261 size = omap[i].hdr.size + sizeof(struct tag_omap_header); in setup_board_tags()
262 memcpy(t, &omap[i], size); in setup_board_tags()
[all …]
/third_party/gstreamer/gstplugins_bad/ext/bz2/
Dgstbz2enc.c116 GstMapInfo omap; in gst_bz2enc_event() local
121 gst_buffer_map (out, &omap, GST_MAP_WRITE); in gst_bz2enc_event()
122 b->stream.next_out = (char *) omap.data; in gst_bz2enc_event()
123 b->stream.avail_out = omap.size; in gst_bz2enc_event()
125 gst_buffer_unmap (out, &omap); in gst_bz2enc_event()
176 GstMapInfo map = GST_MAP_INFO_INIT, omap; in gst_bz2enc_chain() local
189 gst_buffer_map (out, &omap, GST_MAP_WRITE); in gst_bz2enc_chain()
190 b->stream.next_out = (char *) omap.data; in gst_bz2enc_chain()
191 b->stream.avail_out = omap.size; in gst_bz2enc_chain()
193 gst_buffer_unmap (out, &omap); in gst_bz2enc_chain()
Dgstbz2dec.c111 GstMapInfo map = GST_MAP_INFO_INIT, omap; in gst_bz2dec_chain() local
131 gst_buffer_map (out, &omap, GST_MAP_WRITE); in gst_bz2dec_chain()
132 b->stream.next_out = (char *) omap.data; in gst_bz2dec_chain()
133 b->stream.avail_out = omap.size; in gst_bz2dec_chain()
135 gst_buffer_unmap (out, &omap); in gst_bz2dec_chain()
/third_party/gstreamer/gstplugins_bad/gst/mpegtsmux/
Dmpegtsmux_ttxt.c108 GstMapInfo map, omap; in mpegtsmux_prepare_teletext() local
137 gst_buffer_map (out_buf, &omap, GST_MAP_WRITE); in mpegtsmux_prepare_teletext()
138 odata = omap.data; in mpegtsmux_prepare_teletext()
153 gst_buffer_unmap (out_buf, &omap); in mpegtsmux_prepare_teletext()
/third_party/libdrm/omap/
Dmeson.build38 install_headers('omap_drm.h', subdir : 'omap')
43 subdirs : ['.', 'libdrm', 'omap'],
46 description : 'Userspace interface to omap kernel DRM services',
50 'omap-symbols-check',
54 '--symbols-file', files('omap-symbols.txt'),
Dlibdrm_omap.pc.in7 Description: Userspace interface to omap kernel DRM services
10 Cflags: -I${includedir} -I${includedir}/libdrm -I${includedir}/omap
/third_party/gstreamer/gstplugins_bad/ext/gsm/
Dgstgsmenc.c155 GstMapInfo map, omap; in gst_gsmenc_handle_frame() local
174 gst_buffer_map (outbuf, &omap, GST_MAP_WRITE); in gst_gsmenc_handle_frame()
178 gsm_encode (gsmenc->state, data, (gsm_byte *) omap.data); in gst_gsmenc_handle_frame()
180 GST_LOG_OBJECT (gsmenc, "encoded to %d bytes", (gint) omap.size); in gst_gsmenc_handle_frame()
182 gst_buffer_unmap (outbuf, &omap); in gst_gsmenc_handle_frame()
Dgstgsmdec.c247 GstMapInfo map, omap; in gst_gsmdec_handle_frame() local
265 gst_buffer_map (outbuf, &omap, GST_MAP_WRITE); in gst_gsmdec_handle_frame()
266 out_data = (gsm_signal *) omap.data; in gst_gsmdec_handle_frame()
284 gst_buffer_unmap (outbuf, &omap); in gst_gsmdec_handle_frame()
/third_party/gstreamer/gstplugins_bad/gst/adpcmdec/
Dadpcmdec.c335 GstMapInfo omap; in adpcmdec_decode_block() local
347 gst_buffer_map (outbuf, &omap, GST_MAP_WRITE); in adpcmdec_decode_block()
348 res = adpcmdec_decode_ms_block (dec, samples, data, (gint16 *) omap.data); in adpcmdec_decode_block()
349 gst_buffer_unmap (outbuf, &omap); in adpcmdec_decode_block()
359 gst_buffer_map (outbuf, &omap, GST_MAP_WRITE); in adpcmdec_decode_block()
360 res = adpcmdec_decode_ima_block (dec, samples, data, (gint16 *) omap.data); in adpcmdec_decode_block()
361 gst_buffer_unmap (outbuf, &omap); in adpcmdec_decode_block()
/third_party/pyyaml/tests/data/
Dconstruct-omap.data2 Bestiary: !!omap
8 Numbers: !!omap [ one: 1, two: 2, three : 3 ]
/third_party/gstreamer/gstplugins_bad/ext/voamrwbenc/
Dgstvoamrwbenc.c274 GstMapInfo map, omap; in gst_voamrwbenc_handle_frame() local
296 gst_buffer_map (out, &omap, GST_MAP_WRITE); in gst_voamrwbenc_handle_frame()
299 (const short *) map.data, (unsigned char *) omap.data, 0); in gst_voamrwbenc_handle_frame()
302 gst_buffer_unmap (out, &omap); in gst_voamrwbenc_handle_frame()
/third_party/uboot/u-boot-2020.01/arch/arm/dts/
Dam4372-u-boot.dtsi22 compatible = "ti,am437x-ocp2scp", "ti,omap-ocp2scp", "simple-bus";
26 compatible = "ti,am437x-ocp2scp", "ti,omap-ocp2scp", "simple-bus";
Dam335x-brppt1-mmc.dts95 pwm0: omap-pwm@timer5 {
96 compatible = "ti,omap-dmtimer-pwm";
101 pwm1: omap-pwm@timer6 {
102 compatible = "ti,omap-dmtimer-pwm";
Dam335x-brppt1-spi.dts96 pwm0: omap-pwm@timer5 {
97 compatible = "ti,omap-dmtimer-pwm";
102 pwm1: omap-pwm@timer6 {
103 compatible = "ti,omap-dmtimer-pwm";
/third_party/gstreamer/gstplugins_base/ext/opus/
Dgstopusdec.c473 GstMapInfo map, omap; in opus_dec_chain_parse_data() local
638 gst_buffer_map (outbuf, &omap, GST_MAP_WRITE); in opus_dec_chain_parse_data()
639 out_data = (gint16 *) omap.data; in opus_dec_chain_parse_data()
667 gst_buffer_unmap (outbuf, &omap); in opus_dec_chain_parse_data()
675 gst_buffer_map (outbuf, &omap, GST_MAP_WRITE); in opus_dec_chain_parse_data()
676 out_data = (gint16 *) omap.data; in opus_dec_chain_parse_data()
679 gst_buffer_unmap (outbuf, &omap); in opus_dec_chain_parse_data()
753 gst_buffer_map (outbuf, &omap, GST_MAP_READWRITE); in opus_dec_chain_parse_data()
754 samples = (gint16 *) omap.data; in opus_dec_chain_parse_data()
755 rsize = omap.size; in opus_dec_chain_parse_data()
[all …]
/third_party/gstreamer/gstplugins_good/gst/audiofx/
Dgstscaletempo.c433 GstMapInfo imap, omap; in reverse_buffer() local
437 gst_buffer_map (outbuf, &omap, GST_MAP_WRITE); in reverse_buffer()
441 gint64 *op = (gint64 *) (omap.data + omap.size - 8 * st->samples_per_frame); in reverse_buffer()
453 gint32 *op = (gint32 *) (omap.data + omap.size - 4 * st->samples_per_frame); in reverse_buffer()
466 gst_buffer_unmap (outbuf, &omap); in reverse_buffer()
479 GstMapInfo omap; in gst_scaletempo_transform() local
486 gst_buffer_map (outbuf, &omap, GST_MAP_WRITE); in gst_scaletempo_transform()
487 pout = (gint8 *) omap.data; in gst_scaletempo_transform()
488 bytes_out = omap.size; in gst_scaletempo_transform()
519 gst_buffer_unmap (outbuf, &omap); in gst_scaletempo_transform()
/third_party/gstreamer/gstplugins_bad/ext/faac/
Dgstfaac.c644 GstMapInfo map, omap; in gst_faac_handle_frame() local
650 gst_buffer_map (out_buf, &omap, GST_MAP_WRITE); in gst_faac_handle_frame()
669 size / (info->finfo->width / 8), omap.data, omap.size)) < 0)) in gst_faac_handle_frame()
679 gst_buffer_unmap (out_buf, &omap); in gst_faac_handle_frame()
683 gst_buffer_unmap (out_buf, &omap); in gst_faac_handle_frame()
702 gst_buffer_unmap (out_buf, &omap); in gst_faac_handle_frame()

1234