Home
last modified time | relevance | path

Searched full:solomon (Results 1 – 25 of 77) sorted by relevance

1234

/linux-6.12.1/Documentation/devicetree/bindings/display/
Dsolomon,ssd1307fb.yaml4 $id: http://devicetree.org/schemas/display/solomon,ssd1307fb.yaml#
7 title: Solomon SSD1307 OLED Controller Framebuffer
18 - solomon,ssd1305fb-i2c
19 - solomon,ssd1306fb-i2c
20 - solomon,ssd1307fb-i2c
21 - solomon,ssd1309fb-i2c
25 - solomon,ssd1305
26 - solomon,ssd1306
27 - solomon,ssd1307
28 - solomon,ssd1309
[all …]
Dsolomon,ssd132x.yaml4 $id: http://devicetree.org/schemas/display/solomon,ssd132x.yaml#
7 title: Solomon SSD132x OLED Display Controllers
15 - solomon,ssd1322
16 - solomon,ssd1325
17 - solomon,ssd1327
24 - $ref: solomon,ssd-common.yaml#
30 const: solomon,ssd1322
33 solomon,width:
35 solomon,height:
42 const: solomon,ssd1325
[all …]
Dsolomon,ssd133x.yaml4 $id: http://devicetree.org/schemas/display/solomon,ssd133x.yaml#
7 title: Solomon SSD133x OLED Display Controllers
13 - $ref: solomon,ssd-common.yaml#
18 - solomon,ssd1331
20 solomon,width:
23 solomon,height:
39 compatible = "solomon,ssd1331";
Dsolomon,ssd-common.yaml4 $id: http://devicetree.org/schemas/display/solomon,ssd-common.yaml#
7 title: Common properties for Solomon OLED Display Controllers
27 solomon,height:
33 solomon,width:
Dssd1289fb.txt1 * Solomon SSD1289 Framebuffer Driver
4 - compatible: Should be "solomon,ssd1289fb". The only supported bus for
11 compatible = "solomon,ssd1289fb";
/linux-6.12.1/drivers/gpu/drm/solomon/
Dssd130x-i2c.c3 * DRM driver for Solomon SSD13xx OLED displays (I2C bus)
17 #define DRIVER_DESC "DRM driver for Solomon SSD13xx OLED displays (I2C)"
63 .compatible = "solomon,ssd1305",
67 .compatible = "solomon,ssd1306",
71 .compatible = "solomon,ssd1307",
75 .compatible = "solomon,ssd1309",
80 .compatible = "solomon,ssd1305fb-i2c",
84 .compatible = "solomon,ssd1306fb-i2c",
88 .compatible = "solomon,ssd1307fb-i2c",
92 .compatible = "solomon,ssd1309fb-i2c",
[all …]
Dssd130x-spi.c3 * DRM driver for Solomon SSD13xx OLED displays (SPI bus)
14 #define DRIVER_DESC "DRM driver for Solomon SSD13xx OLED displays (SPI)"
117 .compatible = "solomon,ssd1305",
121 .compatible = "solomon,ssd1306",
125 .compatible = "solomon,ssd1307",
129 .compatible = "solomon,ssd1309",
134 .compatible = "solomon,ssd1322",
138 .compatible = "solomon,ssd1325",
142 .compatible = "solomon,ssd1327",
147 .compatible = "solomon,ssd1331",
DKconfig2 tristate "DRM support for Solomon SSD13xx OLED displays"
8 DRM driver for the SSD13xx Solomon and SINO WEALTH SH110x OLED
15 tristate "DRM support for Solomon SSD13xx OLED displays (I2C bus)"
25 tristate "DRM support for Solomon SSD13xx OLED displays (SPI bus)"
Dssd130x.c3 * DRM driver for Solomon SSD13xx OLED displays
40 #define DRIVER_DESC "DRM driver for Solomon SSD13xx OLED displays"
472 * property "solomon,com-seq". The value 0b means scan from COM0 to in ssd130x_init()
1819 if (device_property_read_u32(dev, "solomon,width", &ssd130x->width)) in ssd130x_parse_properties()
1822 if (device_property_read_u32(dev, "solomon,height", &ssd130x->height)) in ssd130x_parse_properties()
1825 if (device_property_read_u32(dev, "solomon,page-offset", &ssd130x->page_offset)) in ssd130x_parse_properties()
1828 if (device_property_read_u32(dev, "solomon,col-offset", &ssd130x->col_offset)) in ssd130x_parse_properties()
1831 if (device_property_read_u32(dev, "solomon,com-offset", &ssd130x->com_offset)) in ssd130x_parse_properties()
1834 if (device_property_read_u32(dev, "solomon,prechargep1", &ssd130x->prechargep1)) in ssd130x_parse_properties()
1837 if (device_property_read_u32(dev, "solomon,prechargep2", &ssd130x->prechargep2)) in ssd130x_parse_properties()
[all …]
/linux-6.12.1/arch/arm/boot/dts/nxp/mxs/
Dimx28-cfa10036.dts54 compatible = "solomon,ssd1306fb-i2c";
59 solomon,height = <32>;
60 solomon,width = <128>;
61 solomon,page-offset = <0>;
62 solomon,com-lrremap;
63 solomon,com-invdir;
64 solomon,com-offset = <32>;
/linux-6.12.1/drivers/video/fbdev/
Dssd1307fb.c3 * Driver for the Solomon SSD1307 OLED controller
98 .id = "Solomon SSD1307",
567 .compatible = "solomon,ssd1305fb-i2c",
571 .compatible = "solomon,ssd1306fb-i2c",
575 .compatible = "solomon,ssd1307fb-i2c",
579 .compatible = "solomon,ssd1309fb-i2c",
625 if (device_property_read_u32(dev, "solomon,width", &par->width)) in ssd1307fb_probe()
628 if (device_property_read_u32(dev, "solomon,height", &par->height)) in ssd1307fb_probe()
631 if (device_property_read_u32(dev, "solomon,page-offset", &par->page_offset)) in ssd1307fb_probe()
634 if (device_property_read_u32(dev, "solomon,col-offset", &par->col_offset)) in ssd1307fb_probe()
[all …]
/linux-6.12.1/Documentation/core-api/
Dlibrs.rst2 Reed-Solomon Library Programming Interface
10 The generic Reed-Solomon Library provides encoding, decoding and error
13 Reed-Solomon codes are used in communication and storage applications to
41 /* the Reed Solomon control structure */
56 The encoder calculates the Reed-Solomon code over the given data length
63 Reed-Solomon code for all 0x00 is all 0x00. The code is inverted before
179 which are used in the Reed-Solomon Library and are relevant for a
189 Reed-Solomon functions which are exported.
/linux-6.12.1/arch/arm/boot/dts/nxp/imx/
Dimx6dl-yapp4-common.dtsi334 compatible = "solomon,ssd1309fb-i2c";
336 solomon,height = <64>;
337 solomon,width = <128>;
338 solomon,page-offset = <0>;
339 solomon,segment-no-remap;
340 solomon,prechargep2 = <15>;
347 compatible = "solomon,ssd1305fb-i2c";
349 solomon,height = <64>;
350 solomon,width = <128>;
351 solomon,page-offset = <0>;
[all …]
Dimx6dl-yapp43-common.dtsi332 compatible = "solomon,ssd1309fb-i2c";
334 solomon,height = <64>;
335 solomon,width = <128>;
336 solomon,page-offset = <0>;
337 solomon,segment-no-remap;
338 solomon,prechargep2 = <15>;
345 compatible = "solomon,ssd1305fb-i2c";
347 solomon,height = <64>;
348 solomon,width = <128>;
349 solomon,page-offset = <0>;
[all …]
/linux-6.12.1/drivers/net/ethernet/intel/ice/
Dice_ptp_consts.h660 161132812, /* 162.1328125 MHz Reed Solomon gearbox */
662 161132812, /* 162.1328125 MHz Reed Solomon gearbox */
664 97656250, /* 97.62625 MHz Reed Solomon gearbox */
666 97656250, /* 97.62625 MHz Reed Solomon gearbox */
735 322265625, /* 322.265625 MHz Reed Solomon gearbox */
737 322265625, /* 322.265625 MHz Reed Solomon gearbox */
739 644531250, /* 644.53125 MHz Reed Solomon gearbox */
741 644531250, /* 644.53125 MHz Reed Solomon gearbox */
760 644531250, /* 644.53125 MHz Reed Solomon gearbox */
762 644531250, /* 644.53125 MHz Reed Solomon gearbox */
[all …]
/linux-6.12.1/arch/arm/boot/dts/ti/omap/
Dam335x-icev2.dts293 compatible = "solomon,ssd1306fb-i2c";
295 solomon,height = <16>;
296 solomon,width = <96>;
297 solomon,com-seq;
298 solomon,com-invdir;
299 solomon,page-offset = <0>;
300 solomon,prechargep1 = <2>;
301 solomon,prechargep2 = <13>;
/linux-6.12.1/lib/reed_solomon/
Dreed_solomon.c3 * Generic Reed Solomon encoder / decoder library
7 * Reed Solomon code lifted from reed solomon library written by Phil Karn
12 * The generic Reed Solomon library provides runtime configurable
58 * codec_init - Initialize a Reed-Solomon codec
422 MODULE_DESCRIPTION("Reed Solomon encoder/decoder");
DMakefile3 # This is a modified version of reed solomon lib,
Dencode_rs.c3 * Generic Reed Solomon encoder / decoder library
/linux-6.12.1/arch/arm64/boot/dts/ti/
Dk3-am642-evm.dts541 compatible = "solomon,ssd1306fb-i2c";
545 solomon,height = <16>;
546 solomon,width = <96>;
547 solomon,com-seq;
548 solomon,com-invdir;
549 solomon,page-offset = <0>;
550 solomon,prechargep1 = <2>;
551 solomon,prechargep2 = <13>;
/linux-6.12.1/include/linux/
Drslib.h3 * Generic Reed Solomon encoder / decoder library
7 * RS code lifted from reed solomon library written by Phil Karn
/linux-6.12.1/drivers/md/
Ddm-verity-fec.h14 /* Reed-Solomon(M, N) parameters */
55 struct rs_control *rs; /* Reed-Solomon state */
/linux-6.12.1/drivers/staging/vt6655/
Ddevice_cfg.h25 #define DEVICE_FULL_DRV_NAM "VIA Networking Solomon-A/B/G Wireless LAN Adapter Driver"
/linux-6.12.1/include/uapi/linux/dvb/
Dfrontend.h742 * enum atscmh_rs_frame_ensemble - Reed Solomon(RS) frame ensemble.
753 * enum atscmh_rs_frame_mode - Reed Solomon (RS) frame mode.
772 * enum atscmh_rs_code_mode - ATSC-M/H Reed Solomon modes
773 * @ATSCMH_RSCODE_211_187: Reed Solomon code (211,187).
774 * @ATSCMH_RSCODE_223_187: Reed Solomon code (223,187).
775 * @ATSCMH_RSCODE_235_187: Reed Solomon code (235,187).
/linux-6.12.1/drivers/mtd/nand/raw/ingenic/
DKconfig19 Enable this driver to support the Reed-Solomon error-correction

1234