Go to the documentation of this file.
22 unsigned int unit,
unsigned int to);
25 int clksrc,
unsigned long freq);
36 unsigned long set,
unsigned long clear);
52 #define SM501FB_FLAG_USE_INIT_MODE (1<<0)
53 #define SM501FB_FLAG_DISABLE_AT_EXIT (1<<1)
54 #define SM501FB_FLAG_USE_HWCURSOR (1<<2)
55 #define SM501FB_FLAG_USE_HWACCEL (1<<3)
56 #define SM501FB_FLAG_PANEL_NO_FPEN (1<<4)
57 #define SM501FB_FLAG_PANEL_NO_VBIASEN (1<<5)
58 #define SM501FB_FLAG_PANEL_INV_FPEN (1<<6)
59 #define SM501FB_FLAG_PANEL_INV_VBIASEN (1<<7)
75 #define SM501_FBPD_SWAP_FB_ENDIAN (1<<0)
115 #define SM501_USE_USB_HOST (1<<0)
116 #define SM501_USE_USB_SLAVE (1<<1)
117 #define SM501_USE_SSP0 (1<<2)
118 #define SM501_USE_SSP1 (1<<3)
119 #define SM501_USE_UART0 (1<<4)
120 #define SM501_USE_UART1 (1<<5)
121 #define SM501_USE_FBACCEL (1<<6)
122 #define SM501_USE_AC97 (1<<7)
123 #define SM501_USE_I2S (1<<8)
124 #define SM501_USE_GPIO (1<<9)
126 #define SM501_USE_ALL (0xffffffff)
151 #define SM501_FLAG_SUSPEND_OFF (1<<4)
176 #if defined(CONFIG_PPC32)
177 #define smc501_readl(addr) ioread32be((addr))
178 #define smc501_writel(val, addr) iowrite32be((val), (addr))
180 #define smc501_readl(addr) readl(addr)
181 #define smc501_writel(val, addr) writel(val, addr)