summaryrefslogtreecommitdiffstats
path: root/firmware/target/arm/philips/hdd6330/lcd-hdd6330.c
blob: 9d2fdc8519e2f1f283dfb79280f6f0cd6d00e03a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2009 by Mark Arigo
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/
#include "config.h"
#include "cpu.h"
#include "lcd.h"
#include "kernel.h"
#include "system.h"

/* register defines for Philips LCD 220x176x16 - model: LPH9165-2 */
#define LCD_REG_UNKNOWN_00        0x00
#define LCD_REG_UNKNOWN_01        0x01
#define LCD_REG_UNKNOWN_05        0x05
#define LCD_REG_WRITE_DATA_2_GRAM 0x06
#define LCD_REG_HORIZ_ADDR_START  0x08
#define LCD_REG_HORIZ_ADDR_END    0x09
#define LCD_REG_VERT_ADDR_START   0x0a
#define LCD_REG_VERT_ADDR_END     0x0b

/* whether the lcd is currently enabled or not */
static bool lcd_enabled;

/* Value used for flipping. Must be remembered when display is turned off. */
static unsigned short flip;

/* Used for flip offset correction */
static int x_offset;

/* Inverse value. Must be remembered when display is turned off. */
static unsigned short invert;

/* wait for LCD */
static inline void lcd_wait_write(void)
{
    while (LCD2_PORT & LCD2_BUSY_MASK);
}

/* send LCD data */
static void lcd_send_data(unsigned data)
{
    lcd_wait_write();
    LCD2_PORT = LCD2_DATA_MASK | (data & 0xff);
}

/* send LCD command */
static void lcd_send_reg(unsigned reg)
{
    lcd_wait_write();
    LCD2_PORT = LCD2_CMD_MASK | (reg & 0xff);
    lcd_wait_write();
}

void lcd_init_device(void)
{
    x_offset = 16;
    invert = 0x00;
    flip   = 0x40;

    lcd_enabled = true;
}

#ifdef HAVE_LCD_ENABLE
/* enable / disable lcd */
void lcd_enable(bool on)
{
    if (on == lcd_enabled)
        return;

    if (on) /* lcd_display_on() */
    {
        lcd_send_reg(LCD_REG_UNKNOWN_00);
        lcd_send_data(0x00 | invert);
        lcd_send_reg(LCD_REG_UNKNOWN_01);
        lcd_send_data(0x08 | flip);
        lcd_send_reg(LCD_REG_UNKNOWN_05);
        lcd_send_data(0x0f);
        sleep(HZ/10); /* 100ms */

        /* Probably out of sync and we don't wanna pepper the code with
           lcd_update() calls for this. */
        lcd_update();
        send_event(LCD_EVENT_ACTIVATION, NULL);

        lcd_enabled = true;
    }
    else /* lcd_display_off() */
    {
        lcd_send_reg(LCD_REG_UNKNOWN_00);
        lcd_send_data(0x08);

        lcd_enabled = false;
    }
}


bool lcd_active(void)
{
    return lcd_enabled;
}
#endif /* HAVE_LCD_ENABLE */


/*** hardware configuration ***/
int lcd_default_contrast(void)
{
    return DEFAULT_CONTRAST_SETTING;
}

void lcd_set_contrast(int val)
{
    (void)val;
}

void lcd_set_invert_display(bool yesno)
{
    invert = (yesno) ? 0x40 : 0x00;
    lcd_send_reg(LCD_REG_UNKNOWN_00);
    lcd_send_data(invert);
}

/* turn the display upside down (call lcd_update() afterwards) */
void lcd_set_flip(bool yesno)
{
    flip = (yesno) ? 0x80 : 0x40;
    x_offset = (yesno) ? 4 : 16;
    lcd_send_reg(LCD_REG_UNKNOWN_01);
    lcd_send_data(0x08 | flip);
}

/* Update the display.
   This must be called after all other LCD functions that change the display. */
void lcd_update(void)
{
    lcd_update_rect(0, 0, LCD_WIDTH, LCD_HEIGHT);
}

/* Update a fraction of the display. */
void lcd_update_rect(int x, int y, int width, int height)
{
    unsigned long *addr;
    int new_x, new_width;

    /* Ensure x and width are both even - so we can read 32-bit aligned
       data from lcd_framebuffer */
    new_x = x&~1;
    new_width = width&~1;
    if (new_x+new_width < x+width) new_width += 2;
    x = new_x;
    width = new_width;

    if (x + width >= LCD_WIDTH)
        width = LCD_WIDTH - x;
    if (y + height >= LCD_HEIGHT)
        height = LCD_HEIGHT - y;

    if ((width <= 0) || (height <= 0))
        return; /* Nothing left to do. */

    lcd_send_reg(LCD_REG_HORIZ_ADDR_START);
    lcd_send_data(y);

    lcd_send_reg(LCD_REG_HORIZ_ADDR_END);
    lcd_send_data(y + height - 1);

    lcd_send_reg(LCD_REG_VERT_ADDR_START);
    lcd_send_data(x + x_offset);

    lcd_send_reg(LCD_REG_VERT_ADDR_END);
    lcd_send_data(x + width - 1 + x_offset);

    lcd_send_reg(LCD_REG_WRITE_DATA_2_GRAM);

    addr = (unsigned long*)FBADDR(x,y);

    while (height > 0)
    {
        int c, r;
        int h, pixels_to_write;

        pixels_to_write = (width * height) * 2;
        h = height;

        /* calculate how much we can do in one go */
        if (pixels_to_write > 0x10000)
        {
            h = (0x10000/2) / width;
            pixels_to_write = (width * h) * 2;
        }

        LCD2_BLOCK_CTRL = 0x10000080;
        LCD2_BLOCK_CONFIG = 0xc0010000 | (pixels_to_write - 1);
        LCD2_BLOCK_CTRL = 0x34000000;

        /* for each row */
        for (r = 0; r < h; r++)
        {
            /* for each column */
            for (c = 0; c < width; c += 2)
            {
                while (!(LCD2_BLOCK_CTRL & LCD2_BLOCK_TXOK));

                /* output 2 pixels */
                LCD2_BLOCK_DATA = *addr++;
            }
            addr += (LCD_WIDTH - width)/2;
        }

        while (!(LCD2_BLOCK_CTRL & LCD2_BLOCK_READY));
        LCD2_BLOCK_CONFIG = 0;

        height -= h;
    }
}