blob: 43dfca1c970250bc9f34c04ae1787e3afb79c035 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Johannes Poehlmann242b4762017-07-25 13:27:11 +02002/* MFD cell driver data for the DS1WM driver
3 *
4 * to be defined in the MFD device that is
5 * using this driver for one of his sub devices
6 */
Philipp Zabela23a1752009-02-17 10:06:41 +01007
8struct ds1wm_driver_data {
9 int active_high;
Philipp Zabel7d33ccb2009-02-17 10:09:19 +010010 int clock_rate;
Johannes Poehlmann242b4762017-07-25 13:27:11 +020011 /* in milliseconds, the amount of time to
12 * sleep following a reset pulse. Zero
13 * should work if your bus devices recover
14 * time respects the 1-wire spec since the
15 * ds1wm implements the precise timings of
16 * a reset pulse/presence detect sequence.
17 */
Jean-François Dagenaisf607e7f2011-07-08 15:39:44 -070018 unsigned int reset_recover_delay;
Johannes Poehlmann242b4762017-07-25 13:27:11 +020019
Johannes Poehlmannbaa80552017-07-25 13:27:12 +020020 /* Say 1 here for big endian Hardware
21 * (only relevant with bus-shift > 0
22 */
23 bool is_hw_big_endian;
24
Johannes Poehlmann242b4762017-07-25 13:27:11 +020025 /* left shift of register number to get register address offsett.
26 * Only 0,1,2 allowed for 8,16 or 32 bit bus width respectively
27 */
28 unsigned int bus_shift;
Philipp Zabela23a1752009-02-17 10:06:41 +010029};