-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 198492 b: refs/heads/master c: 5b696a6 h: refs/heads/master v: v3
- Loading branch information
Marek Szyprowski
authored and
Ben Dooks
committed
May 20, 2010
1 parent
6518e5f
commit 2045938
Showing
8 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: b315032f530c58b973ade659f3b880fcc7017e92 | ||
refs/heads/master: 5b696a67c327f21fc67b60a1518f65e4e7f2749f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* linux/arch/arm/plat-s5pv210/setup-fb-24bpp.c | ||
* | ||
* Copyright (c) 2009-2010 Samsung Electronics Co., Ltd. | ||
* http://www.samsung.com/ | ||
* | ||
* Base s5pv210 setup information for 24bpp LCD framebuffer | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/types.h> | ||
#include <linux/fb.h> | ||
|
||
#include <mach/regs-fb.h> | ||
#include <mach/gpio.h> | ||
#include <mach/map.h> | ||
#include <plat/fb.h> | ||
#include <mach/regs-clock.h> | ||
#include <plat/gpio-cfg.h> | ||
|
||
void s5pv210_fb_gpio_setup_24bpp(void) | ||
{ | ||
unsigned int gpio = 0; | ||
|
||
for (gpio = S5PV210_GPF0(0); gpio <= S5PV210_GPF0(7); gpio++) { | ||
s3c_gpio_cfgpin(gpio, S3C_GPIO_SFN(2)); | ||
s3c_gpio_setpull(gpio, S3C_GPIO_PULL_NONE); | ||
s5p_gpio_set_drvstr(gpio, S5P_GPIO_DRVSTR_LV4); | ||
} | ||
|
||
for (gpio = S5PV210_GPF1(0); gpio <= S5PV210_GPF1(7); gpio++) { | ||
s3c_gpio_cfgpin(gpio, S3C_GPIO_SFN(2)); | ||
s3c_gpio_setpull(gpio, S3C_GPIO_PULL_NONE); | ||
s5p_gpio_set_drvstr(gpio, S5P_GPIO_DRVSTR_LV4); | ||
} | ||
|
||
for (gpio = S5PV210_GPF2(0); gpio <= S5PV210_GPF2(7); gpio++) { | ||
s3c_gpio_cfgpin(gpio, S3C_GPIO_SFN(2)); | ||
s3c_gpio_setpull(gpio, S3C_GPIO_PULL_NONE); | ||
s5p_gpio_set_drvstr(gpio, S5P_GPIO_DRVSTR_LV4); | ||
} | ||
|
||
for (gpio = S5PV210_GPF3(0); gpio <= S5PV210_GPF3(3); gpio++) { | ||
s3c_gpio_cfgpin(gpio, S3C_GPIO_SFN(2)); | ||
s3c_gpio_setpull(gpio, S3C_GPIO_PULL_NONE); | ||
s5p_gpio_set_drvstr(gpio, S5P_GPIO_DRVSTR_LV4); | ||
} | ||
|
||
/* Set DISPLAY_CONTROL register for Display path selection. | ||
* | ||
* ouput | RGB | I80 | ITU | ||
* ----------------------------------- | ||
* 00 | MIE | FIMD | FIMD | ||
* 01 | MDNIE | MDNIE | FIMD | ||
* 10 | FIMD | FIMD | FIMD | ||
* 11 | FIMD | FIMD | FIMD | ||
*/ | ||
writel(0x2, S5P_MDNIE_SEL); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters