mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
51 lines
1.5 KiB
C
51 lines
1.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2010,2011
|
|
* NVIDIA Corporation <www.nvidia.com>
|
|
*/
|
|
|
|
#ifndef _TPS6586X_H_
|
|
#define _TPS6586X_H_
|
|
|
|
enum {
|
|
/* SM0-2 PWM/PFM Mode Selection */
|
|
TPS6586X_PWM_SM0 = 1 << 0,
|
|
TPS6586X_PWM_SM1 = 1 << 1,
|
|
TPS6586X_PWM_SM2 = 1 << 2,
|
|
};
|
|
|
|
/**
|
|
* Enable PWM mode for selected SM0-2
|
|
*
|
|
* @param mask Mask of synchronous converter to enable (TPS6586X_PWM_...)
|
|
* @return 0 if ok, -1 on error
|
|
*/
|
|
int tps6586x_set_pwm_mode(int mask);
|
|
|
|
/**
|
|
* Adjust SM0 and SM1 voltages to the given targets in incremental steps.
|
|
*
|
|
* @param sm0_target Target voltage for SM0 in 25mW units, 0=725mV, 31=1.5V
|
|
* @param sm1_target Target voltage for SM1 in 25mW units, 0=725mV, 31=1.5V
|
|
* @param step Amount to change voltage in each step, in 25mW units
|
|
* @param rate Slew ratein mV/us: 0=instantly, 1=0.11, 2=0.22,
|
|
* 3=0.44, 4=0.88, 5=1.76, 6=3.52, 7=7.04
|
|
* @param min_sm0_over_sm1 Minimum amount by which sm0 must exceed sm1.
|
|
* If this condition is not met, no adjustment will be
|
|
* done and an error will be reported. Use -1 to skip
|
|
* this check.
|
|
* @return 0 if ok, -1 on error
|
|
*/
|
|
int tps6586x_adjust_sm0_sm1(int sm0_target, int sm1_target, int step, int rate,
|
|
int min_sm0_over_sm1);
|
|
|
|
/**
|
|
* Set up the TPS6586X I2C bus number. This will be used for all operations
|
|
* on the device. This function must be called before using other functions.
|
|
*
|
|
* @param bus I2C bus containing the TPS6586X chip
|
|
* @return 0 (always succeeds)
|
|
*/
|
|
int tps6586x_init(struct udevice *bus);
|
|
|
|
#endif /* _TPS6586X_H_ */
|