LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Embedded & Single-board computer (https://www.linuxquestions.org/questions/linux-embedded-and-single-board-computer-78/)
-   -   Modifying framebuffer (/dev/graphics/fb0) parameters using a Loadable Kernel Module (https://www.linuxquestions.org/questions/linux-embedded-and-single-board-computer-78/modifying-framebuffer-dev-graphics-fb0-parameters-using-a-loadable-kernel-module-4175489098/)

mahengunawardena 12-25-2013 12:16 AM

Modifying framebuffer (/dev/graphics/fb0) parameters using a Loadable Kernel Module
 
Problem: I have to configure various LCD displays to be used by Android Platform. Almost in all cases there are no electrical specifications freely available for LCD displays on interest. But through experience and reverse engineering the parameters can be guessed reasonably well. I am trying to use Loadable Kernel Modules to fine tune the display parameters (any other suggestions are welcome too). Please find the relevant information below.

HW: Atmel SAMA5D31-EK (ARM 5 processor)

SW: Andriod Linux (Target), Ubuntu (Host System), Sourcery CodeBench (Cross Compiler) Code Snippets from board-dt.c file

Code:

static struct fb_videomode at91_tft_vga_modes[] = {
.....
.xres =435;
.yres=235;
....
}
static struct fb_monspecs at91fb_default_monspecs = {
.........
.modedb = at91_tft_vga_modes,
......
}
static struct atmel_lcd_fb_info __initdata ek_lcdc_data = {
..........
.default_monspecs = & at91fb_default_monspecs;
.........
}

I added this code so the Loadable Kernel Module has access to lcdc_data structure extern void
Code:

set_fb_video(struct fb_videomode *mg_set_tft_vga_modes)

{
  ek_lcdc_data.default_monspecs->modedb->xres = mg_set_tft_vga_modes->xres;
}
EXPORT_SYMBOL(set_fb_video);

When I execute the loadable kernel module I don’t notice any change in the display. I suspect although I am changing the variable (memory) but registers are not been affected.

I have read about making calls to platform_driver_register() and platform_driver_unregister().

Question: What am I missing? .

Thank you for your help in advance.


All times are GMT -5. The time now is 04:23 PM.