summaryrefslogtreecommitdiffstats
path: root/firmware/target/sh/archos/player/lcd-player.c
blob: 31ff8025311ecbf9b5a385155d5f2cedc37c5488 (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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2007 by Jens Arnold
 * Based on the work of Alan Korr, Kjell Ericson and others
 *
 * All files in this archive are subject to the GNU General Public License.
 * See the file COPYING in the source tree root for full license agreement.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/

#include "config.h"
#include <string.h>
#include "hwcompat.h"
#include "system.h"
#include "lcd.h"
#include "lcd-charcell.h"

#define OLD_LCD_DDRAM        ((char)0xB0) /* Display data (characters) */
#define OLD_LCD_CGRAM        ((char)0x80) /* Character generator (patterns) */
#define OLD_LCD_ICONRAM      ((char)0xE0)
#define OLD_LCD_CONTRAST_SET ((char)0xA8)
#define OLD_LCD_SYSTEM_SET                 ((char)0x60)
#define OLD_LCD_SET_POWER_SAVE_OSC_CONTROL ((char)0x40)
#define OLD_LCD_SET_POWER_CONTROL          ((char)0x50)
#define OLD_LCD_SET_DISPLAY_CONTROL        ((char)0x30)

#define NEW_LCD_DDRAM        ((char)0x80) /* Display data (characters) */
#define NEW_LCD_CGRAM        ((char)0xC0) /* Character generator (patterns) */
#define NEW_LCD_ICONRAM      ((char)0x40)
#define NEW_LCD_CONTRAST_SET ((char)0x50)
#define NEW_LCD_FUNCTION_SET               ((char)0x10)
#define NEW_LCD_SET_POWER_SAVE_OSC_CONTROL ((char)0x0c)
#define NEW_LCD_SET_POWER_CONTROL_REG      ((char)0x20)
#define NEW_LCD_SET_DISPLAY_CONTROL        ((char)0x28)
#define NEW_LCD_SET_DOUBLE_HEIGHT          ((char)0x08)

#define LCD_CURSOR(x,y)      ((char)(lcd_ddram+((y)*16+(x))))
#define LCD_ICON(i)          ((char)(lcd_iconram+i))

static bool new_lcd;
static char lcd_contrast_set;
static char lcd_ddram;
static char lcd_cgram;
static char lcd_iconram;

/* hardware configuration */

int lcd_default_contrast(void)
{
    return 30;
}

void lcd_set_contrast(int val)
{
    lcd_write_command_e(lcd_contrast_set, 31 - val);
}

/* charcell specific */

void lcd_double_height(bool on)
{
    if(new_lcd)
        lcd_write_command(on ? (NEW_LCD_SET_DOUBLE_HEIGHT|1)
                             : NEW_LCD_SET_DOUBLE_HEIGHT);
}

void lcd_icon(int icon, bool enable)
{
    static const struct {
        char pos;
        char mask;
    } icontab[] = {
        { 0, 0x02}, { 0, 0x08}, { 0, 0x04}, { 0, 0x10}, /* Battery */
        { 2, 0x04}, /* USB */
        { 3, 0x10}, /* Play */
        { 4, 0x10}, /* Record */
        { 5, 0x02}, /* Pause */
        { 5, 0x10}, /* Audio */
        { 6, 0x02}, /* Repeat */
        { 7, 0x01}, /* 1 */
        { 9, 0x04}, /* Volume */
        { 9, 0x02}, { 9, 0x01}, {10, 0x08}, {10, 0x04}, {10, 0x01}, /* Vol 1-5 */
        {10, 0x10}, /* Param */
    };
    static char icon_mirror[11] = {0};

    int pos, mask;

    pos = icontab[icon].pos;
    mask = icontab[icon].mask;
      
    if (enable)
        icon_mirror[pos] |= mask;
    else
        icon_mirror[pos] &= ~mask;
    
    lcd_write_command_e(LCD_ICON(pos), icon_mirror[pos]);
}

/* device specific init */
void lcd_init_device(void)
{
    unsigned char data_vector[64];

    new_lcd = is_new_player();

    if (new_lcd)
    {
        lcd_contrast_set = NEW_LCD_CONTRAST_SET;
        lcd_ddram = NEW_LCD_DDRAM;
        lcd_cgram = NEW_LCD_CGRAM;
        lcd_iconram = NEW_LCD_ICONRAM;

        /* LCD init for cold start */
        PBCR2 &= 0xff00;                    /* Set PB0..PB3 to GPIO */
        or_b(0x0f, &PBDRL);                 /* ... high */
        or_b(0x0f, &PBIORL);                /* ... and output */

        lcd_write_command(NEW_LCD_FUNCTION_SET|1); /* CGRAM selected */
        lcd_write_command_e(NEW_LCD_CONTRAST_SET, 0x08);
        lcd_write_command(NEW_LCD_SET_POWER_SAVE_OSC_CONTROL|2);
                                            /* oscillator on */
        lcd_write_command(NEW_LCD_SET_POWER_CONTROL_REG|7);
        /* opamp buffer + voltage booster on */

        memset(data_vector, 0x20, 64);
        lcd_write_command(NEW_LCD_DDRAM);   /* Set DDRAM address */
        lcd_write_data(data_vector, 64);    /* all spaces */

        memset(data_vector, 0, 64);
        lcd_write_command(NEW_LCD_CGRAM);   /* Set CGRAM address */
        lcd_write_data(data_vector, 64);    /* zero out */
        lcd_write_command(NEW_LCD_ICONRAM); /* Set ICONRAM address */
        lcd_write_data(data_vector, 16);    /* zero out */

        lcd_write_command(NEW_LCD_SET_DISPLAY_CONTROL|1); /* display on */
    }
    else
    {
        lcd_contrast_set = OLD_LCD_CONTRAST_SET;
        lcd_ddram = OLD_LCD_DDRAM;
        lcd_cgram = OLD_LCD_CGRAM;
        lcd_iconram = OLD_LCD_ICONRAM;

#if 1
        /* LCD init for cold start */
        PBCR2 &= 0xff00;                    /* Set PB0..PB3 to GPIO */
        or_b(0x0f, &PBDRL);                 /* ... high */
        or_b(0x0f, &PBIORL);                /* ... and output */

        lcd_write_command(OLD_LCD_SYSTEM_SET|1);  /* CGRAM selected */
        lcd_write_command(OLD_LCD_SET_POWER_SAVE_OSC_CONTROL|2); 
                                            /* oscillator on */
        lcd_write_command(OLD_LCD_SET_POWER_CONTROL|7);
        /* voltage regulator, voltage follower and booster on */

        memset(data_vector, 0x24, 13);
        lcd_write_command(OLD_LCD_DDRAM);   /* Set DDRAM address */
        lcd_write_data(data_vector, 13);    /* all spaces */
        lcd_write_command(OLD_LCD_DDRAM + 0x10);
        lcd_write_data(data_vector, 13);
        lcd_write_command(OLD_LCD_DDRAM + 0x20);
        lcd_write_data(data_vector, 13);

        memset(data_vector, 0, 32);
        lcd_write_command(OLD_LCD_CGRAM);   /* Set CGRAM address */
        lcd_write_data(data_vector, 32);    /* zero out */
        lcd_write_command(OLD_LCD_ICONRAM); /* Set ICONRAM address */
        lcd_write_data(data_vector, 13);    /* zero out */
        lcd_write_command(OLD_LCD_ICONRAM + 0x10);
        lcd_write_data(data_vector, 13);

        lcd_write_command(OLD_LCD_SET_DISPLAY_CONTROL|1); /* display on */
#else  
        /* archos look-alike code, left here for reference. As soon as the
         * rockbox version is confirmed working, this will go away */
        {
        int i;

        PBCR2 &= 0xc000;
        PBIOR |= 0x000f;
        PBDR |= 0x0002;
        PBDR |= 0x0001;
        PBDR |= 0x0004;
        PBDR |= 0x0008;

        for (i=0; i<200; i++) asm volatile ("nop"); /* wait 100 us */

        PBDR &= 0xfffd; /* CS low (assert) */

        for (i=0; i<100; i++) asm volatile ("nop"); /* wait 50 us */

        lcd_write_command(OLD_LCD_SYSTEM_SET|1);
        lcd_write_command(OLD_LCD_SET_POWER_SAVE_OSC_CONTROL|2);
        lcd_write_command(OLD_LCD_SET_POWER_CONTROL|7);

        memset(data_vector, 0x24, 13);
        lcd_write_command(OLD_LCD_DDRAM);   /* Set DDRAM address */
        lcd_write_data(data_vector, 13);    /* all spaces */
        lcd_write_command(OLD_LCD_DDRAM + 0x10);
        lcd_write_data(data_vector, 13);
        lcd_write_command(OLD_LCD_DDRAM + 0x20);
        lcd_write_data(data_vector, 13);

        memset(data_vector, 0, 32);
        lcd_write_command(OLD_LCD_CGRAM);   /* Set CGRAM address */
        lcd_write_data(data_vector, 32);    /* zero out */
        lcd_write_command(OLD_LCD_ICONRAM); /* Set ICONRAM address */
        lcd_write_data(data_vector, 13); /* zero out */
        lcd_write_command(OLD_LCD_ICONRAM + 0x10);
        lcd_write_data(data_vector, 13);

        for (i=0; i<300000; i++) asm volatile ("nop"); /* wait 150 ms */

        lcd_write_command(OLD_LCD_SET_DISPLAY_CONTROL|1);
        lcd_write_command_e(OLD_LCD_CONTRAST_SET, 0);  /* Set contrast */
        }
#endif
    }
    lcd_set_contrast(lcd_default_contrast());
}

/*** Update functions ***/

void lcd_update(void)
{
    int y;
    
    for (y = 0; y < lcd_pattern_count; y++)
    {
        if (lcd_patterns[y].count > 0)
        {
            lcd_write_command(lcd_cgram | (y << 3));
            lcd_write_data(lcd_patterns[y].pattern, 7);
        }
    }
    for (y = 0; y < LCD_HEIGHT; y++)
    {
        lcd_write_command(LCD_CURSOR(0, y));
        lcd_write_data(lcd_charbuffer[y], LCD_WIDTH);
    }
    if (lcd_cursor.visible)
    {
        lcd_write_command_e(LCD_CURSOR(lcd_cursor.x, lcd_cursor.y),
                            lcd_cursor.hw_char);
    }
}