mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 10:17:47 +07:00
faa38b5e0e
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6: (214 commits) ALSA: hda - Add pin-fix for HP dc5750 ALSA: als4000: Fix potentially invalid DMA mode setup ALSA: als4000: enable burst mode ALSA: hda - Fix initial capsrc selection in patch_alc269() ASoC: TWL4030: Capture route runtime DAPM ordering fix ALSA: hda - Add PC-beep whitelist for an Intel board ALSA: hda - More relax for pending period handling ALSA: hda - Define AC_FMT_* constants ALSA: hda - Fix beep frequency on IDT 92HD73xx and 92HD71Bxx codecs ALSA: hda - Add support for HDMI HBR passthrough ALSA: hda - Set Stream Type in Stream Format according to AES0 ALSA: hda - Fix Thinkpad X300 so SPDIF is not exposed ALSA: hda - FIX to not expose SPDIF on Thinkpad X301, since it does not have the ability to use SPDIF ASoC: wm9081: fix resource reclaim in wm9081_register error path ASoC: wm8978: fix a memory leak if a wm8978_register fail ASoC: wm8974: fix a memory leak if another WM8974 is registered ASoC: wm8961: fix resource reclaim in wm8961_register error path ASoC: wm8955: fix resource reclaim in wm8955_register error path ASoC: wm8940: fix a memory leak if wm8940_register return error ASoC: wm8904: fix resource reclaim in wm8904_register error path ...
69 lines
2.0 KiB
C
69 lines
2.0 KiB
C
/*
|
|
* arch/arm/mach-ep93xx/include/mach/platform.h
|
|
*/
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
struct i2c_gpio_platform_data;
|
|
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);
|
|
|
|
/* EP93xx System Controller software locked register write */
|
|
void ep93xx_syscon_swlocked_write(unsigned int val, void __iomem *reg);
|
|
void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits);
|
|
|
|
static inline void ep93xx_devcfg_set_bits(unsigned int bits)
|
|
{
|
|
ep93xx_devcfg_set_clear(bits, 0x00);
|
|
}
|
|
|
|
static inline void ep93xx_devcfg_clear_bits(unsigned int bits)
|
|
{
|
|
ep93xx_devcfg_set_clear(0x00, bits);
|
|
}
|
|
|
|
#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_gpio_platform_data *data,
|
|
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(unsigned i2s_pins, unsigned i2s_config);
|
|
void ep93xx_i2s_release(void);
|
|
|
|
void ep93xx_init_devices(void);
|
|
extern struct sys_timer ep93xx_timer;
|
|
|
|
#endif
|