Thomas Gleixner | 74ba920 | 2019-05-20 09:19:02 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Guenter Roeck | 442aba7 | 2011-01-26 20:09:02 -0800 | [diff] [blame] | 2 | /* |
| 3 | * Hardware monitoring driver for PMBus devices |
| 4 | * |
| 5 | * Copyright (c) 2010, 2011 Ericsson AB. |
Guenter Roeck | 442aba7 | 2011-01-26 20:09:02 -0800 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef _PMBUS_H_ |
| 9 | #define _PMBUS_H_ |
| 10 | |
Guenter Roeck | 9e34772 | 2019-12-12 09:14:34 -0800 | [diff] [blame] | 11 | #include <linux/bits.h> |
| 12 | |
Guenter Roeck | 442aba7 | 2011-01-26 20:09:02 -0800 | [diff] [blame] | 13 | /* flags */ |
| 14 | |
| 15 | /* |
| 16 | * PMBUS_SKIP_STATUS_CHECK |
| 17 | * |
| 18 | * During register detection, skip checking the status register for |
| 19 | * communication or command errors. |
| 20 | * |
| 21 | * Some PMBus chips respond with valid data when trying to read an unsupported |
| 22 | * register. For such chips, checking the status register is mandatory when |
| 23 | * trying to determine if a chip register exists or not. |
| 24 | * Other PMBus chips don't support the STATUS_CML register, or report |
| 25 | * communication errors for no explicable reason. For such chips, checking |
| 26 | * the status register must be disabled. |
| 27 | */ |
Guenter Roeck | 9e34772 | 2019-12-12 09:14:34 -0800 | [diff] [blame] | 28 | #define PMBUS_SKIP_STATUS_CHECK BIT(0) |
| 29 | |
| 30 | /* |
| 31 | * PMBUS_WRITE_PROTECTED |
| 32 | * Set if the chip is write protected and write protection is not determined |
| 33 | * by the standard WRITE_PROTECT command. |
| 34 | */ |
| 35 | #define PMBUS_WRITE_PROTECTED BIT(1) |
Guenter Roeck | 442aba7 | 2011-01-26 20:09:02 -0800 | [diff] [blame] | 36 | |
| 37 | struct pmbus_platform_data { |
| 38 | u32 flags; /* Device specific flags */ |
Alan Tull | ddbb4db | 2014-10-15 13:55:09 -0500 | [diff] [blame] | 39 | |
| 40 | /* regulator support */ |
| 41 | int num_regulators; |
| 42 | struct regulator_init_data *reg_init_data; |
Guenter Roeck | 442aba7 | 2011-01-26 20:09:02 -0800 | [diff] [blame] | 43 | }; |
| 44 | |
| 45 | #endif /* _PMBUS_H_ */ |