|
Linux Kernel
3.7.1
|
#include <linux/kernel.h>#include <linux/platform_device.h>#include <linux/dma-mapping.h>#include <linux/interrupt.h>#include <linux/clk.h>#include <linux/fb.h>#include <linux/init.h>#include <linux/delay.h>#include <linux/backlight.h>#include <linux/gfp.h>#include <linux/module.h>#include <mach/board.h>#include <mach/cpu.h>#include <asm/gpio.h>#include <video/atmel_lcdc.h>Go to the source code of this file.
Macros | |
| #define | lcdc_readl(sinfo, reg) __raw_readl((sinfo)->mmio+(reg)) |
| #define | lcdc_writel(sinfo, reg, val) __raw_writel((val), (sinfo)->mmio+(reg)) |
| #define | ATMEL_LCDC_CVAL_DEFAULT 0xc8 |
| #define | ATMEL_LCDC_DMA_BURST_LEN 8 /* words */ |
| #define | ATMEL_LCDC_FIFO_SIZE 512 /* words */ |
| #define | atmel_lcdfb_suspend NULL |
| #define | atmel_lcdfb_resume NULL |
Functions | |
| module_init (atmel_lcdfb_init) | |
| module_exit (atmel_lcdfb_exit) | |
| MODULE_DESCRIPTION ("AT91/AT32 LCD Controller framebuffer driver") | |
| MODULE_AUTHOR ("Nicolas Ferre <[email protected]>") | |
| MODULE_LICENSE ("GPL") | |
| #define ATMEL_LCDC_CVAL_DEFAULT 0xc8 |
Definition at line 33 of file atmel_lcdfb.c.
| #define ATMEL_LCDC_DMA_BURST_LEN 8 /* words */ |
Definition at line 34 of file atmel_lcdfb.c.
| #define ATMEL_LCDC_FIFO_SIZE 512 /* words */ |
Definition at line 35 of file atmel_lcdfb.c.
| #define atmel_lcdfb_resume NULL |
Definition at line 1139 of file atmel_lcdfb.c.
| #define atmel_lcdfb_suspend NULL |
Definition at line 1138 of file atmel_lcdfb.c.
| #define lcdc_readl | ( | sinfo, | |
| reg | |||
| ) | __raw_readl((sinfo)->mmio+(reg)) |
Definition at line 29 of file atmel_lcdfb.c.
Definition at line 30 of file atmel_lcdfb.c.
| MODULE_AUTHOR | ( | "Nicolas Ferre <[email protected]>" | ) |
| MODULE_DESCRIPTION | ( | "AT91/AT32 LCD Controller framebuffer driver" | ) |
| module_exit | ( | atmel_lcdfb_exit | ) |
| module_init | ( | atmel_lcdfb_init | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
1.8.2