mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 14:43:58 +08:00
31e4e292f8
r8a7779 INTC needs IRL pin mode settings to determine behavior of IRQ0 - IRQ3, and r8a7779_init_irq_extpin() is controlling it via irlm parameter. But this function registers renesas_intc_irqpin driver if irlm was set, and this value depends on platform. This is not good for DT. This patch splits r8a7779_init_irq_extpin() function into "mode settings" and "funtion register" parts Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
63 lines
1.7 KiB
C
63 lines
1.7 KiB
C
#ifndef __ASM_R8A7779_H__
|
|
#define __ASM_R8A7779_H__
|
|
|
|
#include <linux/sh_clk.h>
|
|
#include <linux/pm_domain.h>
|
|
#include <linux/sh_eth.h>
|
|
#include <linux/platform_data/camera-rcar.h>
|
|
|
|
/* HPB-DMA slave IDs */
|
|
enum {
|
|
HPBDMA_SLAVE_DUMMY,
|
|
HPBDMA_SLAVE_SDHI0_TX,
|
|
HPBDMA_SLAVE_SDHI0_RX,
|
|
};
|
|
|
|
struct platform_device;
|
|
|
|
struct r8a7779_pm_ch {
|
|
unsigned long chan_offs;
|
|
unsigned int chan_bit;
|
|
unsigned int isr_bit;
|
|
};
|
|
|
|
struct r8a7779_pm_domain {
|
|
struct generic_pm_domain genpd;
|
|
struct r8a7779_pm_ch ch;
|
|
};
|
|
|
|
static inline struct r8a7779_pm_ch *to_r8a7779_ch(struct generic_pm_domain *d)
|
|
{
|
|
return &container_of(d, struct r8a7779_pm_domain, genpd)->ch;
|
|
}
|
|
|
|
extern void r8a7779_init_delay(void);
|
|
extern void r8a7779_init_irq_extpin(int irlm);
|
|
extern void r8a7779_init_irq_extpin_dt(int irlm);
|
|
extern void r8a7779_init_irq_dt(void);
|
|
extern void r8a7779_map_io(void);
|
|
extern void r8a7779_earlytimer_init(void);
|
|
extern void r8a7779_add_early_devices(void);
|
|
extern void r8a7779_add_standard_devices(void);
|
|
extern void r8a7779_add_standard_devices_dt(void);
|
|
extern void r8a7779_add_ether_device(struct sh_eth_plat_data *pdata);
|
|
extern void r8a7779_add_vin_device(int idx,
|
|
struct rcar_vin_platform_data *pdata);
|
|
extern void r8a7779_init_late(void);
|
|
extern void r8a7779_clock_init(void);
|
|
extern void r8a7779_pinmux_init(void);
|
|
extern void r8a7779_pm_init(void);
|
|
extern void r8a7779_register_twd(void);
|
|
extern int r8a7779_sysc_power_down(struct r8a7779_pm_ch *r8a7779_ch);
|
|
extern int r8a7779_sysc_power_up(struct r8a7779_pm_ch *r8a7779_ch);
|
|
|
|
#ifdef CONFIG_PM
|
|
extern void __init r8a7779_init_pm_domains(void);
|
|
#else
|
|
static inline void r8a7779_init_pm_domains(void) {}
|
|
#endif /* CONFIG_PM */
|
|
|
|
extern struct smp_operations r8a7779_smp_ops;
|
|
|
|
#endif /* __ASM_R8A7779_H__ */
|