mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
4008e6a9bc
Pull i2c updates from Wolfram Sang: "This contains two bigger than usual tree-wide changes this time. They all have proper acks, caused no merge conflicts in linux-next where they have been for a while. They are namely: - to-gpiod conversion of the i2c-gpio driver and its users (touching arch/* and drivers/mfd/*) - adding a sbs-manager based on I2C core updates to SMBus alerts (touching drivers/power/*) Other notable changes: - i2c_boardinfo can now carry a dev_name to be used when the device is created. This is because some devices in ACPI world need fixed names to find the regulators. - the designware driver got a long discussed overhaul of its PM handling. img-scb and davinci got PM support, too. - at24 driver has way better OF support. And it has a new maintainer. Thanks Bartosz for stepping up! The rest is regular driver updates and fixes" * 'i2c/for-4.15' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/wsa/linux: (55 commits) ARM: sa1100: simpad: Correct I2C GPIO offsets i2c: aspeed: Deassert reset in probe eeprom: at24: Add OF device ID table MAINTAINERS: new maintainer for AT24 driver i2c: nuc900: remove platform_data, too i2c: thunderx: Remove duplicate NULL check i2c: taos-evm: Remove duplicate NULL check i2c: Make i2c_unregister_device() NULL-aware i2c: xgene-slimpro: Support v2 i2c: mpc: remove useless variable initialization i2c: omap: Trigger bus recovery in lockup case i2c: gpio: Add support for named gpios in DT dt-bindings: i2c: i2c-gpio: Add support for named gpios i2c: gpio: Local vars in probe i2c: gpio: Augment all boardfiles to use open drain i2c: gpio: Enforce open drain through gpiolib gpio: Make it possible for consumers to enforce open drain i2c: gpio: Convert to use descriptors power: supply: sbs-message: fix some code style issues power: supply: sbs-battery: remove unchecked return var ...
71 lines
1.9 KiB
C
71 lines
1.9 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* arch/arm/mach-ep93xx/include/mach/platform.h
|
|
*/
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#include <linux/reboot.h>
|
|
|
|
struct device;
|
|
struct i2c_board_info;
|
|
struct spi_board_info;
|
|
struct platform_device;
|
|
struct ep93xxfb_mach_info;
|
|
struct ep93xx_keypad_platform_data;
|
|
struct ep93xx_spi_info;
|
|
|
|
struct ep93xx_eth_data
|
|
{
|
|
unsigned char dev_addr[6];
|
|
unsigned char phy_id;
|
|
};
|
|
|
|
void ep93xx_map_io(void);
|
|
void ep93xx_init_irq(void);
|
|
|
|
#define EP93XX_CHIP_REV_D0 3
|
|
#define EP93XX_CHIP_REV_D1 4
|
|
#define EP93XX_CHIP_REV_E0 5
|
|
#define EP93XX_CHIP_REV_E1 6
|
|
#define EP93XX_CHIP_REV_E2 7
|
|
|
|
unsigned int ep93xx_chip_revision(void);
|
|
|
|
void ep93xx_register_flash(unsigned int width,
|
|
resource_size_t start, resource_size_t size);
|
|
|
|
void ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr);
|
|
void ep93xx_register_i2c(struct i2c_board_info *devices, int num);
|
|
void ep93xx_register_spi(struct ep93xx_spi_info *info,
|
|
struct spi_board_info *devices, int num);
|
|
void ep93xx_register_fb(struct ep93xxfb_mach_info *data);
|
|
void ep93xx_register_pwm(int pwm0, int pwm1);
|
|
int ep93xx_pwm_acquire_gpio(struct platform_device *pdev);
|
|
void ep93xx_pwm_release_gpio(struct platform_device *pdev);
|
|
void ep93xx_register_keypad(struct ep93xx_keypad_platform_data *data);
|
|
int ep93xx_keypad_acquire_gpio(struct platform_device *pdev);
|
|
void ep93xx_keypad_release_gpio(struct platform_device *pdev);
|
|
void ep93xx_register_i2s(void);
|
|
int ep93xx_i2s_acquire(void);
|
|
void ep93xx_i2s_release(void);
|
|
void ep93xx_register_ac97(void);
|
|
void ep93xx_register_ide(void);
|
|
void ep93xx_register_adc(void);
|
|
int ep93xx_ide_acquire_gpio(struct platform_device *pdev);
|
|
void ep93xx_ide_release_gpio(struct platform_device *pdev);
|
|
|
|
struct device *ep93xx_init_devices(void);
|
|
extern void ep93xx_timer_init(void);
|
|
|
|
void ep93xx_restart(enum reboot_mode, const char *);
|
|
void ep93xx_init_late(void);
|
|
|
|
#ifdef CONFIG_CRUNCH
|
|
int crunch_init(void);
|
|
#else
|
|
static inline int crunch_init(void) { return 0; }
|
|
#endif
|
|
|
|
#endif
|