e2801806de
The advantages of this: - Don't encourage legacy support; - Less external symbols, less code to compile-in for !MPC832x_RDB platforms. Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> Cc: David Brownell <david-b@pacbell.net> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Kumar Gala <galak@gate.crashing.org> Cc: Grant Likely <grant.likely@secretlab.ca> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
39 lines
1 KiB
C
39 lines
1 KiB
C
#ifndef __PPC_FSL_SOC_H
|
|
#define __PPC_FSL_SOC_H
|
|
#ifdef __KERNEL__
|
|
|
|
#include <asm/mmu.h>
|
|
|
|
struct spi_device;
|
|
|
|
extern phys_addr_t get_immrbase(void);
|
|
#if defined(CONFIG_CPM2) || defined(CONFIG_QUICC_ENGINE) || defined(CONFIG_8xx)
|
|
extern u32 get_brgfreq(void);
|
|
extern u32 get_baudrate(void);
|
|
#else
|
|
static inline u32 get_brgfreq(void) { return -1; }
|
|
static inline u32 get_baudrate(void) { return -1; }
|
|
#endif
|
|
extern u32 fsl_get_sys_freq(void);
|
|
|
|
struct spi_board_info;
|
|
struct device_node;
|
|
|
|
extern void fsl_rstcr_restart(char *cmd);
|
|
|
|
#if defined(CONFIG_FB_FSL_DIU) || defined(CONFIG_FB_FSL_DIU_MODULE)
|
|
struct platform_diu_data_ops {
|
|
unsigned int (*get_pixel_format) (unsigned int bits_per_pixel,
|
|
int monitor_port);
|
|
void (*set_gamma_table) (int monitor_port, char *gamma_table_base);
|
|
void (*set_monitor_port) (int monitor_port);
|
|
void (*set_pixel_clock) (unsigned int pixclock);
|
|
ssize_t (*show_monitor_port) (int monitor_port, char *buf);
|
|
int (*set_sysfs_monitor_port) (int val);
|
|
};
|
|
|
|
extern struct platform_diu_data_ops diu_ops;
|
|
#endif
|
|
|
|
#endif
|
|
#endif
|