2006-01-13 17:19:13 +00:00
|
|
|
#ifndef __PPC_FSL_SOC_H
|
|
|
|
#define __PPC_FSL_SOC_H
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
2006-09-21 18:11:52 +00:00
|
|
|
#include <asm/mmu.h>
|
|
|
|
|
2009-03-31 22:24:36 +00:00
|
|
|
struct spi_device;
|
|
|
|
|
2006-01-13 17:19:13 +00:00
|
|
|
extern phys_addr_t get_immrbase(void);
|
2008-12-05 20:10:26 +00:00
|
|
|
#if defined(CONFIG_CPM2) || defined(CONFIG_QUICC_ENGINE) || defined(CONFIG_8xx)
|
2006-09-21 13:26:34 +00:00
|
|
|
extern u32 get_brgfreq(void);
|
|
|
|
extern u32 get_baudrate(void);
|
2008-12-05 20:10:26 +00:00
|
|
|
#else
|
|
|
|
static inline u32 get_brgfreq(void) { return -1; }
|
|
|
|
static inline u32 get_baudrate(void) { return -1; }
|
|
|
|
#endif
|
2008-04-15 18:52:34 +00:00
|
|
|
extern u32 fsl_get_sys_freq(void);
|
2006-01-13 17:19:13 +00:00
|
|
|
|
2007-08-23 11:35:56 +00:00
|
|
|
struct spi_board_info;
|
2007-10-09 17:37:13 +00:00
|
|
|
struct device_node;
|
2007-08-23 11:35:56 +00:00
|
|
|
|
2007-10-04 06:04:57 +00:00
|
|
|
extern void fsl_rstcr_restart(char *cmd);
|
2008-04-28 09:15:36 +00:00
|
|
|
|
|
|
|
#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
|
|
|
|
|
2006-01-13 17:19:13 +00:00
|
|
|
#endif
|
|
|
|
#endif
|