diff options
author | Tomi Valkeinen <tomi.valkeinen@nokia.com> | 2009-08-07 12:01:55 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@nokia.com> | 2009-12-09 12:04:33 +0200 |
commit | afedec183e95bd5e126a7846a644acfdddb86a66 (patch) | |
tree | 4e4fdfa45487d450b510d926ec35450dd4bc4ca7 /drivers/video/Kconfig | |
parent | dadd2bb931a08a4b6b17f9e82d9bbe7bedebbc98 (diff) | |
download | blackbird-obmc-linux-afedec183e95bd5e126a7846a644acfdddb86a66.tar.gz blackbird-obmc-linux-afedec183e95bd5e126a7846a644acfdddb86a66.zip |
OMAP: Add VRAM manager
Add a Video RAM manager for OMAP 2 and 3 platforms. VRAM manager is used
to allocate large continuous blocks of SDRAM or SRAM. The features VRAM
manager has that are missing from dma_alloc_* functions are:
- Support for OMAP2's SRAM
- Allocate without ioremapping
- Allocate at defined physical addresses
- Allows larger VRAM area and larger allocations
The upcoming DSS2 uses VRAM manager.
VRAM area size can be defined in kernel config, board file or with
kernel boot parameters. Board file definition overrides kernel config,
and boot parameter overrides kernel config and board file.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r-- | drivers/video/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 6b89eb55ed32..8be523f9a3f7 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -2164,6 +2164,7 @@ config FB_BROADSHEET a bridge adapter. source "drivers/video/omap/Kconfig" +source "drivers/video/omap2/Kconfig" source "drivers/video/backlight/Kconfig" source "drivers/video/display/Kconfig" |