blob: 24c5410d1206669a4b9840ea216bc662b6cb69cd [file] [log] [blame]
Meenakshi Aggarwale088e582018-11-30 22:32:11 +05301/* SPDX-License-Identifier: GPL-2.0+ */
2/*
Wasim Khanc63edbc2020-08-27 19:13:34 +05303 * Copyright 2018-2020 NXP
Meenakshi Aggarwale088e582018-11-30 22:32:11 +05304 *
Meenakshi Aggarwale088e582018-11-30 22:32:11 +05305 */
6
7#ifndef __EMC2305_H_
8#define __EMC2305_H_
9
10#define I2C_EMC2305_CONF 0x20
11#define I2C_EMC2305_FAN1 0x30
12#define I2C_EMC2305_FAN2 0x40
13#define I2C_EMC2305_FAN3 0x50
14#define I2C_EMC2305_FAN4 0x60
15#define I2C_EMC2305_FAN5 0x70
16
17#define NUM_OF_FANS 5
18
Wasim Khanc63edbc2020-08-27 19:13:34 +053019void emc2305_init(int chip_addr);
20void set_fan_speed(u8 data, int chip_addr);
Meenakshi Aggarwale088e582018-11-30 22:32:11 +053021
22#endif /* __EMC2305_H_ */