Lines Matching refs:pins
11 … concept designed to uniformly manage SoC pins, implement pin multiplexing, and set electrical fea…
19 …When the number of pins of a chip cannot handle the increasing connection requests, you can set so…
30 …atching pin resources, adding and removing a pin controller, and managing pins. The core layer int…
49 To enable the upper layer to successfully operate pins by calling the pin driver APIs, hook functio…
121 …device0 :: deviceNode { // Used to manage pins and release services i…
161 pinCount = 0; // (Mandatory) Number of pins.
230 uint32_t pinCount; // Number of pins.
241 uint16_t pinCount; // Number of pins.
242 struct PinDesc *pins; // Pin resources.
299 … hi35xx->cntlr.pins = (struct PinDesc *)OsalMemCalloc(sizeof(struct PinDesc) * hi35xx->pinCount);
301 HDF_LOGE("%s: memcalloc hi35xx cntlr pins failed", __func__);
389 hi35xx->cntlr.pins[index].pinName = hi35xx->desc[index].pinName;
390 hi35xx->cntlr.pins[index].priv = (void *)node;