Home
last modified time | relevance | path

Searched full:lhc (Results 1 – 18 of 18) sorted by relevance

/Linux-v5.10/Documentation/devicetree/bindings/mfd/
Daspeed-lpc.txt169 "aspeed,ast2400-lhc";
170 "aspeed,ast2500-lhc";
172 - reg: contains offset/length values of the LHC memory regions. In the
177 lhc: lhc@20 {
178 compatible = "aspeed,ast2500-lhc";
192 - reg: offset and length of the IP in the LHC memory region
/Linux-v5.10/Documentation/devicetree/bindings/pinctrl/
Daspeed,ast2500-pinctrl.yaml36 1: compatible with "aspeed,ast2500-lhc", "syscon"
85 aspeed,external-nodes = <&gfx>, <&lhc>;
122 lhc: lhc@20 {
123 compatible = "aspeed,ast2500-lhc";
/Linux-v5.10/arch/arm/boot/dts/
Daspeed-bmc-intel-s2600wf.dts122 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-bmc-inspur-on5263m5.dts127 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-bmc-arm-centriq2400-rep.dts215 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-bmc-arm-stardragon4800-rep2.dts204 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-g5.dtsi245 aspeed,external-nodes = <&gfx>, <&lhc>;
504 lhc: lhc@20 { label
505 compatible = "aspeed,ast2500-lhc";
Daspeed-g6.dtsi519 lhc: lhc@20 { label
520 compatible = "aspeed,ast2600-lhc";
Daspeed-bmc-opp-lanyang.dts267 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-g4.dtsi376 lhc: lhc@20 { label
377 compatible = "aspeed,ast2400-lhc";
Daspeed-bmc-opp-nicole.dts288 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-bmc-opp-romulus.dts293 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-bmc-opp-zaius.dts469 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-bmc-opp-witherspoon.dts665 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-bmc-inspur-fp5280g2.dts784 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-bmc-opp-swift.dts942 aspeed,external-nodes = <&gfx &lhc>;
/Linux-v5.10/lib/zstd/
Ddecompress.c453 U32 const lhc = ZSTD_readLE32(istart); in ZSTD_decodeLiteralsBlock() local
461 litSize = (lhc >> 4) & 0x3FF; in ZSTD_decodeLiteralsBlock()
462 litCSize = (lhc >> 14) & 0x3FF; in ZSTD_decodeLiteralsBlock()
467 litSize = (lhc >> 4) & 0x3FFF; in ZSTD_decodeLiteralsBlock()
468 litCSize = lhc >> 18; in ZSTD_decodeLiteralsBlock()
473 litSize = (lhc >> 4) & 0x3FFFF; in ZSTD_decodeLiteralsBlock()
474 litCSize = (lhc >> 22) + (istart[4] << 10); in ZSTD_decodeLiteralsBlock()
Dcompress.c531 U32 const lhc = hType + ((!singleStream) << 2) + ((U32)srcSize << 4) + ((U32)cLitSize << 14); in ZSTD_compressLiterals() local
532 ZSTD_writeLE24(ostart, lhc); in ZSTD_compressLiterals()
537 U32 const lhc = hType + (2 << 2) + ((U32)srcSize << 4) + ((U32)cLitSize << 18); in ZSTD_compressLiterals() local
538 ZSTD_writeLE32(ostart, lhc); in ZSTD_compressLiterals()
544 U32 const lhc = hType + (3 << 2) + ((U32)srcSize << 4) + ((U32)cLitSize << 22); in ZSTD_compressLiterals() local
545 ZSTD_writeLE32(ostart, lhc); in ZSTD_compressLiterals()