/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ |
H A D | table.c | 2898 "FCC", "2.4G", "20M", "CCK", "1T", "01", "36", 2899 "ETSI", "2.4G", "20M", "CCK", "1T", "01", "32", 2900 "MKK", "2.4G", "20M", "CCK", "1T", "01", "32", 2901 "FCC", "2.4G", "20M", "CCK", "1T", "02", "36", 2902 "ETSI", "2.4G", "20M", "CCK", "1T", "02", "32", 2903 "MKK", "2.4G", "20M", "CCK", "1T", "02", "32", 2904 "FCC", "2.4G", "20M", "CCK", "1T", "03", "36", 2905 "ETSI", "2.4G", "20M", "CCK", "1T", "03", "32", 2906 "MKK", "2.4G", "20M", "CCK", "1T", "03", "32", 2907 "FCC", "2.4G", "20M", "CCK", "1T", "04", "36", [all …]
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | subdev-formats.rst | 198 For instance, a format where pixels are encoded as 5-bits red, 5-bits 199 green and 5-bit blue values padded on the high bit, transferred as 2 259 - 5 294 - g\ :sub:`3` 295 - g\ :sub:`2` 296 - g\ :sub:`1` 297 - g\ :sub:`0` 366 - g\ :sub:`3` 367 - g\ :sub:`2` 368 - g\ :sub:`1` [all …]
|
H A D | pixfmt-srggb10-ipu3.rst | 40 - G\ :sub:`0001low`\ (bits 7--2) 45 G\ :sub:`0001high`\ (bits 3--0) 46 - G\ :sub:`0003low`\ (bits 7--6) 48 B\ :sub:`0002high`\ (bits 5--0) 50 - G\ :sub:`0003high` 52 - G\ :sub:`0005low`\ (bits 7--2) 57 G\ :sub:`0005high`\ (bits 3--0) 59 - G\ :sub:`0007low`\ (bits 7--6) 61 B\ :sub:`0006high`\ (bits 5--0) 62 - G\ :sub:`0007high` [all …]
|
H A D | pixfmt-rgb.rst | 45 - 'r', 'g' and 'b' denote bits of the red, green and blue components 59 R\ :sub:`0` G\ :sub:`5` G\ :sub:`4` G\ :sub:`3` G\ :sub:`2` G\ :sub:`1` 60 G\ :sub:`0` B\ :sub:`4` B\ :sub:`3` B\ :sub:`2` B\ :sub:`1` B\ :sub:`0`], and 62 R\ :sub:`0` G\ :sub:`5` G\ :sub:`4` G\ :sub:`3`] followed by [G\ :sub:`2` 63 G\ :sub:`1` G\ :sub:`0` B\ :sub:`4` B\ :sub:`3` B\ :sub:`2` B\ :sub:`1` 89 - 5 98 - 5 107 - 5 116 - 5 130 - g\ :sub:`2` [all …]
|
H A D | pixfmt-srggb14p.rst | 57 - G\ :sub:`01high` 61 - G\ :sub:`03high` 63 - G\ :sub:`01low bits 1--0`\ (bits 7--6) 65 B\ :sub:`00low bits 5--0`\ (bits 5--0) 69 G\ :sub:`01low bits 5--2`\ (bits 3--0) 71 - G\ :sub:`03low bits 5--0`\ (bits 7--2) 73 B\ :sub:`02low bits 5--4`\ (bits 1--0) 79 - G\ :sub:`10high` 83 - G\ :sub:`12high` 89 G\ :sub:`10low bits 5--0`\ (bits 5--0) [all …]
|
H A D | pixfmt-srggb10p.rst | 23 bits per sample. Every four consecutive samples are packed into 5 25 of the pixels, and the 5th byte contains the 2 least significants 45 - G\ :sub:`01high` 47 - G\ :sub:`03high` 48 - G\ :sub:`03low`\ (bits 7--6) B\ :sub:`02low`\ (bits 5--4) 50 G\ :sub:`01low`\ (bits 3--2) B\ :sub:`00low`\ (bits 1--0) 51 * - start + 5: 52 - G\ :sub:`10high` 54 - G\ :sub:`12high` 56 - R\ :sub:`13low`\ (bits 7--6) G\ :sub:`12low`\ (bits 5--4) [all …]
|
/openbmc/qemu/include/ui/ |
H A D | pixel_ops.h | 1 static inline unsigned int rgb_to_pixel8(unsigned int r, unsigned int g, in rgb_to_pixel8() argument 4 return ((r >> 5) << 5) | ((g >> 5) << 2) | (b >> 6); in rgb_to_pixel8() 7 static inline unsigned int rgb_to_pixel15(unsigned int r, unsigned int g, in rgb_to_pixel15() argument 10 return ((r >> 3) << 10) | ((g >> 3) << 5) | (b >> 3); in rgb_to_pixel15() 13 static inline unsigned int rgb_to_pixel15bgr(unsigned int r, unsigned int g, in rgb_to_pixel15bgr() argument 16 return ((b >> 3) << 10) | ((g >> 3) << 5) | (r >> 3); in rgb_to_pixel15bgr() 19 static inline unsigned int rgb_to_pixel16(unsigned int r, unsigned int g, in rgb_to_pixel16() argument 22 return ((r >> 3) << 11) | ((g >> 2) << 5) | (b >> 3); in rgb_to_pixel16() 25 static inline unsigned int rgb_to_pixel16bgr(unsigned int r, unsigned int g, in rgb_to_pixel16bgr() argument 28 return ((b >> 3) << 11) | ((g >> 2) << 5) | (r >> 3); in rgb_to_pixel16bgr() [all …]
|
/openbmc/qemu/hw/display/ |
H A D | pl110_template.h | 149 unsigned int r, g, b; in glue() local 164 data >>= 5; in glue() 165 g = data & 0x3f; in glue() 168 data >>= 5; in glue() 171 data >>= 5; in glue() 172 g = (data & 0x3f) << 2; in glue() 175 data >>= 5; in glue() 177 COPY_PIXEL(d, rgb_to_pixel32(r, g, b)); in glue() 179 data >>= 5; in glue() 180 g = (data & 0x3f) << 2; in glue() [all …]
|
/openbmc/linux/Documentation/RCU/Design/Memory-Ordering/ |
H A D | TreeRCU-gp-cleanup.svg | 2 <!-- Creator: fig2dev Version 3.2 Patchlevel 5e --> 46 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 60 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 74 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 116 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 145 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 159 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 173 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 224 id="Arrow2Lend-5" 340 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" [all …]
|
H A D | TreeRCU-gp-init-1.svg | 2 <!-- Creator: fig2dev Version 3.2 Patchlevel 5e --> 46 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 60 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 74 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 116 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 145 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 159 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 173 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 224 id="Arrow2Lend-5" 256 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" [all …]
|
H A D | TreeRCU-qs.svg | 2 <!-- Creator: fig2dev Version 3.2 Patchlevel 5e --> 46 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 60 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 74 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 116 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 145 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 159 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 173 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 224 id="Arrow2Lend-5" 256 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" [all …]
|
H A D | TreeRCU-gp.svg | 2 <!-- Creator: fig2dev Version 3.2 Patchlevel 5e --> 46 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 60 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 74 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 116 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 145 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 159 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 173 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 186 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 283 id="path3940-5" [all …]
|
H A D | TreeRCU-gp-init-2.svg | 2 <!-- Creator: fig2dev Version 3.2 Patchlevel 5e --> 46 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 60 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 74 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 116 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 145 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 159 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 173 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 224 id="Arrow2Lend-5" 268 fit-margin-top="5" [all …]
|
H A D | TreeRCU-gp-init-3.svg | 2 <!-- Creator: fig2dev Version 3.2 Patchlevel 5e --> 46 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 60 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 74 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 116 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 145 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 159 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 173 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 224 id="Arrow2Lend-5" 268 fit-margin-top="5" [all …]
|
H A D | TreeRCU-gp-fqs.svg | 2 <!-- Creator: fig2dev Version 3.2 Patchlevel 5e --> 46 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 60 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 74 d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" 116 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 145 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 159 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 173 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" 224 id="Arrow2Lend-5" 256 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" [all …]
|
/openbmc/linux/lib/crypto/ |
H A D | blake2s-generic.c | 20 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }, 21 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 }, 22 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 }, 23 { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 }, 24 { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 }, 25 { 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 }, 26 { 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 }, 27 { 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 }, 28 { 6, 15, 14, 9, 11, 3, 0, 8, 12, 2, 13, 7, 1, 4, 10, 5 }, 29 { 10, 2, 8, 4, 7, 6, 1, 5, 15, 11, 9, 14, 3, 12, 13, 0 }, [all …]
|
/openbmc/linux/include/dt-bindings/memory/ |
H A D | mt8195-memory-port.h | 13 * 0 ~ 4G; 4G ~ 8G; 8G ~ 12G; 12G ~ 16G, we could adjust these masters 16 * b) The iova of any master can NOT cross the 4G/8G/12G boundary. 21 * disp 0 ~ 4G larb0/1/2/3 22 * vcodec 4G ~ 8G larb19/20/21/22/23/24 23 * cam/mdp 8G ~ 12G the other larbs. 24 * N/A 12G ~ 16G 29 * iommu-vdo: larb0/2/5/7/9/10/11/13/17/19/21/24/25/28 40 #define M4U_PORT_L0_DISP_FAKE0 MTK_M4U_ID(0, 5) 48 #define M4U_PORT_L1_DISP_FAKE0 MTK_M4U_ID(1, 5) 63 #define M4U_PORT_L3_HDR_ADL MTK_M4U_ID(3, 5) [all …]
|
H A D | mt8186-memory-port.h | 15 * 0 ~ 4G; 4G ~ 8G; 8G ~ 12G; 12G ~ 16G, we could adjust these masters 18 * b) The iova of any master can NOT cross the 4G/8G/12G boundary. 23 * disp 0 ~ 4G larb0/1/2 24 * vcodec 4G ~ 8G larb4/7 25 * cam/mdp 8G ~ 12G the other larbs. 26 * N/A 12G ~ 16G 28 * CCU1 0x24400_0000 ~ 0x247ff_ffff larb14: port 4/5 58 #define IOMMU_PORT_L4_HW_VDEC_PPWRAP_EXT MTK_M4U_ID(4, 5) 74 #define IOMMU_PORT_L7_VENC_CUR_LUMA MTK_M4U_ID(7, 5) 94 #define IOMMU_PORT_L9_IMG_SMTI_D1 MTK_M4U_ID(9, 5) [all …]
|
/openbmc/linux/Documentation/gpu/amdgpu/display/ |
H A D | mpo-cursor.svg | 17 inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" 31 d="M 0,0 5,-5 -12.5,0 5,5 Z" 46 d="M 0,0 5,-5 -12.5,0 5,5 Z" 91 id="path1568-5" 92 d="M 0,0 5,-5 -12.5,0 5,5 Z" 106 id="path1568-5-2" 107 d="M 0,0 5,-5 -12.5,0 5,5 Z" 122 d="M 0,0 5,-5 -12.5,0 5,5 Z" 137 d="M 0,0 5,-5 -12.5,0 5,5 Z" 152 d="M 0,0 5,-5 -12.5,0 5,5 Z" [all …]
|
/openbmc/u-boot/include/ |
H A D | ipu_pixfmt.h | 31 #define IPU_PIX_FMT_RGB332 fourcc('R', 'G', 'B', '1') /*< 8 RGB-3-3-2 */ 32 #define IPU_PIX_FMT_RGB555 fourcc('R', 'G', 'B', 'O') /*< 16 RGB-5-5-5 */ 33 #define IPU_PIX_FMT_RGB565 fourcc('R', 'G', 'B', 'P') /*< 1 6 RGB-5-6-5 */ 34 #define IPU_PIX_FMT_RGB666 fourcc('R', 'G', 'B', '6') /*< 18 RGB-6-6-6 */ 35 #define IPU_PIX_FMT_BGR666 fourcc('B', 'G', 'R', '6') /*< 18 BGR-6-6-6 */ 36 #define IPU_PIX_FMT_BGR24 fourcc('B', 'G', 'R', '3') /*< 24 BGR-8-8-8 */ 37 #define IPU_PIX_FMT_RGB24 fourcc('R', 'G', 'B', '3') /*< 24 RGB-8-8-8 */ 38 #define IPU_PIX_FMT_BGR32 fourcc('B', 'G', 'R', '4') /*< 32 BGR-8-8-8-8 */ 39 #define IPU_PIX_FMT_BGRA32 fourcc('B', 'G', 'R', 'A') /*< 32 BGR-8-8-8-8 */ 40 #define IPU_PIX_FMT_RGB32 fourcc('R', 'G', 'B', '4') /*< 32 RGB-8-8-8-8 */ [all …]
|
/openbmc/openbmc/poky/documentation/overview-manual/svg/ |
H A D | git-workflow.svg | 231 d="M 0,0 5,-5 -12.5,0 5,5 Z" 288 d="M 0,0 5,-5 -12.5,0 5,5 Z" 316 d="M 0,0 5,-5 -12.5,0 5,5 Z" 353 id="stop5501-5" 487 <g 492 <g 495 <g 499 <g 500 id="layer1-3-5-2" 504 <g [all …]
|
/openbmc/linux/Documentation/dev-tools/kunit/ |
H A D | kunit_suitememorydiagram.svg | 3 <g transform="translate(-13.724 -17.943)"> 4 <g fill="#dad4d4" fill-opacity=".91765" stroke="#1a1a1a"> 9 </g> 10 <g> 13 </g> 14 <g transform="translate(0 -258.6)"> 17 </g> 18 <g transform="translate(0 -217.27)"> 21 </g> 22 <g transform="translate(0 -175.94)"> [all …]
|
/openbmc/linux/crypto/ |
H A D | blake2b_generic.c | 26 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }, 27 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 }, 28 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 }, 29 { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 }, 30 { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 }, 31 { 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 }, 32 { 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 }, 33 { 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 }, 34 { 6, 15, 14, 9, 11, 3, 0, 8, 12, 2, 13, 7, 1, 4, 10, 5 }, 35 { 10, 2, 8, 4, 7, 6, 1, 5, 15, 11, 9, 14, 3, 12, 13, 0 }, [all …]
|
/openbmc/linux/drivers/iio/accel/ |
H A D | bma400.h | 80 #define BMA400_LP_OSR_SHIFT 5 85 #define BMA400_LP_OSR_MASK GENMASK(6, 5) 86 #define BMA400_NP_OSR_MASK GENMASK(5, 4) 119 #define BMA400_TAP_QUIETDT_MSK GENMASK(5, 4) 124 * converting to micro values for +-2g range. 126 * For +-2g - 1 LSB = 0.976562 milli g = 0.009576 m/s^2 127 * For +-4g - 1 LSB = 1.953125 milli g = 0.019153 m/s^2 128 * For +-16g - 1 LSB = 7.8125 milli g = 0.076614 m/s^2 134 * Scale values for +-2g, +-4g, +-8g and +-16g are populated into bma400_scales 136 * e.g.: [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/hwmon/ |
H A D | moortec,mr75203.yaml | 19 *) Temperature Sensor (TS) - used to monitor core temperature (e.g. mr74137). 20 *) Voltage Monitor (VM) - used to monitor voltage levels (e.g. mr74138). 21 *) Process Detector (PD) - used to assess silicon speed (e.g. mr74139). 23 based transistors (e.g. mr76008 ring oscillator at 1.1V, mr76007 ring 26 be presented for VM for measurement within its range (e.g. mr76006 - 58 PVT controller has 5 VM (voltage monitor) sensors. 62 maxItems: 5 98 minimum: 5 100 default: 5 103 moortec,ts-coeff-g: [all …]
|