From a0bdf49e399e9e25e71081c5b3e73fc56c63a236 Mon Sep 17 00:00:00 2001 From: wdenk Date: Mon, 14 Mar 2005 13:14:58 +0000 Subject: INKA4x0: Allow initialization of LCD backlight dimming from "brightness" environment variable. --- board/inka4x0/inka4x0.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'board/inka4x0') diff --git a/board/inka4x0/inka4x0.c b/board/inka4x0/inka4x0.c index f5e32cc589..c17b8feb41 100644 --- a/board/inka4x0/inka4x0.c +++ b/board/inka4x0/inka4x0.c @@ -177,6 +177,16 @@ void flash_preinit(void) int misc_init_f (void) { + uchar tmp[10]; + int i, br; + + i = getenv_r("brightness", tmp, sizeof(tmp)); + br = (i > 0) + ? (int) simple_strtoul (tmp, NULL, 10) + : CFG_BRIGHTNESS; + if (br > 255) + br = 255; + /* Initialize GPIO output pins. */ /* Configure GPT as GPIO output */ @@ -187,6 +197,11 @@ int misc_init_f (void) *(vu_long *)MPC5XXX_GPT4_ENABLE = *(vu_long *)MPC5XXX_GPT5_ENABLE = 0x24; + /* Configure GPT7 as PWM timer, 1kHz, no ints. */ + *(vu_long *)MPC5XXX_GPT7_ENABLE = 0;/* Disable */ + *(vu_long *)MPC5XXX_GPT7_COUNTER = 0x020000fe; + *(vu_long *)MPC5XXX_GPT7_PWMCFG = (br << 16); + *(vu_long *)MPC5XXX_GPT7_ENABLE = 0x3;/* Enable PWM mode and start */ /* Configure PSC3_6,7 as GPIO output */ *(vu_long *)MPC5XXX_GPIO_ENABLE |= 0x00003000; -- cgit v1.2.1