From f913829d06f706e0f7df3b791835edd41fc487c4 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Wed, 2 Sep 2020 12:55:02 -0400 Subject: xduoox3: Disable the LCD and MSC0 clocks as we don't use them Change-Id: If2261aed464fcbe3ea1f036dd18376fa8ff42e69 --- firmware/target/mips/ingenic_jz47xx/xduoo_x3/lcd-xduoo_x3.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'firmware/target/mips/ingenic_jz47xx/xduoo_x3') diff --git a/firmware/target/mips/ingenic_jz47xx/xduoo_x3/lcd-xduoo_x3.c b/firmware/target/mips/ingenic_jz47xx/xduoo_x3/lcd-xduoo_x3.c index a7449f144d..0446fb2cce 100644 --- a/firmware/target/mips/ingenic_jz47xx/xduoo_x3/lcd-xduoo_x3.c +++ b/firmware/target/mips/ingenic_jz47xx/xduoo_x3/lcd-xduoo_x3.c @@ -118,6 +118,8 @@ void lcd_hw_init(void) udelay(1); __gpio_set_pin(PIN_LCD_RES); __gpio_clear_pin(PIN_LCD_CS); + + __cpm_stop_lcd(); /* We don't use the LCD controller */ } void lcd_write_command(int byte) @@ -167,7 +169,7 @@ int lcd_default_contrast(void) void lcd_set_contrast(int val) { static int last_val = 0xFFFFFF; - + if (val >= 0) /* brightness menu */ { lcd_write_command(LCD_CNTL_CONTRAST); @@ -175,7 +177,7 @@ void lcd_set_contrast(int val) } else if (val != last_val) { - /* here we change the voltage level and drive times + /* here we change the voltage level and drive times * longer precharge = dimmer display * higher voltage = shorter precharge required */ -- cgit v1.2.3