HomeSort by relevance Sort by last modified time
    Searched defs:vdd (Results 1 - 7 of 7) sorted by null

  /external/u-boot/board/freescale/ls1088a/
ddr.c 18 int vdd; local
20 vdd = get_core_volt_from_fuse();
22 if (vdd < 0)
25 if (vdd == 900) {
  /external/u-boot/cmd/
adc.c 39 int ret, vss, vdd; local
56 ret = adc_vdd_value(dev, &vdd);
58 printf("vdd: %duV\n", vdd);
  /external/u-boot/arch/arm/cpu/armv8/fsl-layerscape/
soc.c 363 /* Get VDD in the unit mV from voltage ID */
367 int vdd; local
383 vdd = -EINVAL;
387 vdd = 900;
390 vdd = 1000;
393 vdd = -EINVAL;
397 debug("%s: The required minimum volt of CORE is %dmV\n", __func__, vdd);
399 return vdd;
524 /* Get VDD in the unit mV from voltage ID */
528 int vdd; local
591 int vdd; local
    [all...]
  /external/u-boot/board/freescale/common/
vid.c 36 int __weak board_adjust_vdd(int vdd)
181 /* select the PAGE 0 using PMBus commands PAGE for VDD*/
185 printf("VID: failed to select VDD Page 0\n");
225 static int wait_for_new_voltage(int vdd, int i2caddress)
240 abs(vdd - vdd_current) > (IR_VDD_STEP_UP + IR_VDD_STEP_DOWN) &&
257 int timeout, vdd_current, vdd; local
259 vdd = read_voltage(i2caddress);
268 abs(vdd - vdd_current) > ADC_MIN_ACCURACY &&
270 vdd = vdd_current;
280 static int set_voltage_to_IR(int i2caddress, int vdd)
383 static const uint16_t vdd[32] = { local
419 static const uint16_t vdd[32] = { local
598 static const uint16_t vdd[32] = { local
    [all...]
  /external/u-boot/drivers/phy/
phy-stm32-usbphyc.c 55 struct udevice *vdd; member in struct:stm32_usbphyc::stm32_usbphyc_phy
227 if (usbphyc_phy->vdd) {
228 ret = regulator_set_enable(usbphyc_phy->vdd, true);
262 if (usbphyc_phy->vdd) {
263 ret = regulator_set_enable(usbphyc_phy->vdd, false);
366 &usbphyc_phy->vdd);
  /external/u-boot/board/freescale/b4860qds/
b4860qds.c 144 static const uint16_t vdd[32] = { local
192 vdd_target = vdd[vid];
193 debug("VID:Reading from from fuse,vid=%x vdd is %dmV\n",
196 /* check override variable for overriding VDD */
203 debug("VDD override is %lu\n", vdd_override);
  /external/u-boot/board/freescale/t4qds/
t4240qds.c 216 static const uint16_t vdd[32] = { local
264 vdd_target = vdd[vid];
266 /* check override variable for overriding VDD */
273 debug("VDD override is %lu\n", vdd_override);
722 int vdd, rcwsrc; local
732 vdd = read_voltage();
733 if (vdd > 0)
734 printf("Core voltage= %d mV\n", vdd);
885 "Override VDD",

Completed in 1716 milliseconds