]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
tegra: Support control of cache settings for LCD
authorSimon Glass <sjg@chromium.org>
Wed, 17 Oct 2012 13:24:57 +0000 (13:24 +0000)
committerTom Warren <twarren@nvidia.com>
Mon, 19 Nov 2012 15:15:39 +0000 (08:15 -0700)
Add support for selecting the required cache mode for the LCD:
off, write-through or write-back.

Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
drivers/video/tegra.c

index ab26ad09587d46c6635e8ac2e01eda60fae2cc23..750a2834383f035109ed2f6bd012f63bbfc64243 100644 (file)
@@ -146,6 +146,7 @@ static void update_panel_size(struct fdt_disp_config *config)
 void lcd_ctrl_init(void *lcdbase)
 {
        int line_length, size;
+       int type = DCACHE_OFF;
 
        assert(disp_config);
 
@@ -161,6 +162,16 @@ void lcd_ctrl_init(void *lcdbase)
                update_panel_size(disp_config);
        size = lcd_get_size(&line_length);
 
+       /* Set up the LCD caching as requested */
+       if (config.cache_type & FDT_LCD_CACHE_WRITE_THROUGH)
+               type = DCACHE_WRITETHROUGH;
+       else if (config.cache_type & FDT_LCD_CACHE_WRITE_BACK)
+               type = DCACHE_WRITEBACK;
+       mmu_set_region_dcache_behaviour(disp_config->frame_buffer, size, type);
+
+       /* Enable flushing after LCD writes if requested */
+       lcd_set_flush_dcache(config.cache_type & FDT_LCD_CACHE_FLUSH);
+
        debug("LCD frame buffer at %p\n", lcd_base);
 }