Home
last modified time | relevance | path

Searched refs:lhc (Results 1 – 12 of 12) sorted by relevance

/Linux-v4.19/Documentation/devicetree/bindings/pinctrl/
Dpinctrl-aspeed.txt20 1: compatible with "aspeed,ast2500-lhc", "syscon"
129 aspeed,external-nodes = <&gfx &lhc>;
166 lhc: lhc@20 {
167 compatible = "aspeed,ast2500-lhc";
/Linux-v4.19/Documentation/devicetree/bindings/mfd/
Daspeed-lpc.txt167 "aspeed,ast2400-lhc";
168 "aspeed,ast2500-lhc";
175 lhc: lhc@20 {
176 compatible = "aspeed,ast2500-lhc";
/Linux-v4.19/arch/arm/boot/dts/
Daspeed-bmc-intel-s2600wf.dts119 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-bmc-arm-centriq2400-rep.dts215 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-bmc-opp-romulus.dts230 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-g5.dtsi212 aspeed,external-nodes = <&gfx &lhc>;
360 lhc: lhc@20 { label
361 compatible = "aspeed,ast2500-lhc";
Daspeed-bmc-opp-lanyang.dts264 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-g4.dtsi300 lhc: lhc@20 { label
301 compatible = "aspeed,ast2400-lhc";
Daspeed-bmc-opp-zaius.dts359 aspeed,external-nodes = <&gfx &lhc>;
Daspeed-bmc-opp-witherspoon.dts566 aspeed,external-nodes = <&gfx &lhc>;
/Linux-v4.19/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()