Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
u-boot-2015.04
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vesta
u-boot-2015.04
Commits
29127b6a
Commit
29127b6a
authored
21 years ago
by
dzu
Browse files
Options
Downloads
Patches
Plain Diff
Add support for the Sharp LQ065T9DR51U LCD display
parent
1d70468b
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG
+13
-0
13 additions, 0 deletions
CHANGELOG
cpu/mpc8xx/lcd.c
+12
-0
12 additions, 0 deletions
cpu/mpc8xx/lcd.c
with
25 additions
and
0 deletions
CHANGELOG
+
13
−
0
View file @
29127b6a
...
@@ -2,6 +2,8 @@
...
@@ -2,6 +2,8 @@
Changes for U-Boot 1.0.0:
Changes for U-Boot 1.0.0:
======================================================================
======================================================================
* Add support for the Sharp LQ065T9DR51U LCD display
* Patch by Rune Torgersen, 17 Sep 2003:
* Patch by Rune Torgersen, 17 Sep 2003:
- Fixes for MPC8266 default config
- Fixes for MPC8266 default config
- Allow eth_loopback_test() on 8260 to use a subset of the FCC's
- Allow eth_loopback_test() on 8260 to use a subset of the FCC's
...
@@ -85,6 +87,14 @@ Changes for U-Boot 1.0.0:
...
@@ -85,6 +87,14 @@ Changes for U-Boot 1.0.0:
Changes for U-Boot 0.4.8:
Changes for U-Boot 0.4.8:
======================================================================
======================================================================
<<<<<<< CHANGELOG
<<<<<<< CHANGELOG
<<<<<<< CHANGELOG
* Add I2C and RTC support for RMU board
=======
=======
=======
* Patches by Denis Peter, 9 Sep 2003:
* Patches by Denis Peter, 9 Sep 2003:
add FAT support for IDE, SCSI and USB
add FAT support for IDE, SCSI and USB
...
@@ -117,6 +127,7 @@ Changes for U-Boot 0.4.8:
...
@@ -117,6 +127,7 @@ Changes for U-Boot 0.4.8:
* Avoid flicker on TRAB's VFD
* Avoid flicker on TRAB's VFD
>>>>>>> 1.130
* Add support for SK98xx driver
* Add support for SK98xx driver
* Add PCI support for SL8245 board
* Add PCI support for SL8245 board
...
@@ -162,6 +173,7 @@ Changes for U-Boot 0.4.7:
...
@@ -162,6 +173,7 @@ Changes for U-Boot 0.4.7:
* Add GCC library to examples/Makefile so GCC utility functions will
* Add GCC library to examples/Makefile so GCC utility functions will
be resolved, too
be resolved, too
>>>>>>> 1.118
* Add I2C and RTC support for RMU board using software I2C driver
* Add I2C and RTC support for RMU board using software I2C driver
(because of better response to iprobe command); fix problem with
(because of better response to iprobe command); fix problem with
"reset" command
"reset" command
...
@@ -170,6 +182,7 @@ Changes for U-Boot 0.4.7:
...
@@ -170,6 +182,7 @@ Changes for U-Boot 0.4.7:
Added CONFIG_BOOTP_DNS2 and CONFIG_BOOTP_SEND_HOSTNAME to
Added CONFIG_BOOTP_DNS2 and CONFIG_BOOTP_SEND_HOSTNAME to
CONFIG_BOOTP_MAKS (see README).
CONFIG_BOOTP_MAKS (see README).
>>>>>>> 1.112
* Fix ICU862 environment problem
* Fix ICU862 environment problem
* Fix RAM size detection for RMU board
* Fix RAM size detection for RMU board
...
...
This diff is collapsed.
Click to expand it.
cpu/mpc8xx/lcd.c
+
12
−
0
View file @
29127b6a
...
@@ -224,6 +224,18 @@ static vidinfo_t panel_info = {
...
@@ -224,6 +224,18 @@ static vidinfo_t panel_info = {
};
};
#endif
/* CONFIG_SHARP_LQ64D341 */
#endif
/* CONFIG_SHARP_LQ64D341 */
#ifdef CONFIG_SHARP_LQ065T9DR51U
/*
* Sharp LQ065T9DR51U display, 400x240. Active, color, single scan.
*/
static
vidinfo_t
panel_info
=
{
400
,
240
,
143
,
79
,
CFG_HIGH
,
CFG_HIGH
,
CFG_HIGH
,
CFG_HIGH
,
CFG_HIGH
,
3
,
0
,
0
,
1
,
1
,
248
,
4
,
0
,
35
/* wbl, vpw, lcdac, wbf */
};
#define LCD_INFO_BELOW_LOGO
#endif
/* CONFIG_SHARP_LQ065T9DR51U */
#ifdef CONFIG_SHARP_LQ084V1DG21
#ifdef CONFIG_SHARP_LQ084V1DG21
/*
/*
* Sharp LQ084V1DG21 display, 640x480. Active, color, single scan.
* Sharp LQ084V1DG21 display, 640x480. Active, color, single scan.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment