6b13f685e
김민수
BSP 최초 추가
|
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
|
#ifndef _PXA_LCD_H_
#define _PXA_LCD_H_
struct pxafb_dma_descriptor {
u_long fdadr;
u_long fsadr;
u_long fidr;
u_long ldcmd;
};
struct pxafb_info {
u_long reg_lccr3;
u_long reg_lccr2;
u_long reg_lccr1;
u_long reg_lccr0;
u_long fdadr0;
u_long fdadr1;
struct pxafb_dma_descriptor *dmadesc_fblow;
struct pxafb_dma_descriptor *dmadesc_fbhigh;
struct pxafb_dma_descriptor *dmadesc_palette;
u_long screen;
u_long palette;
u_int palette_size;
};
typedef struct vidinfo {
ushort vl_col;
ushort vl_row;
ushort vl_width;
ushort vl_height;
u_char vl_clkp;
u_char vl_oep;
u_char vl_hsp;
u_char vl_vsp;
u_char vl_dp;
u_char vl_bpix;
u_char vl_lbw;
u_char vl_splt;
u_char vl_clor;
u_char vl_tft;
ushort vl_hpw;
u_char vl_blw;
u_char vl_elw;
u_char vl_vpw;
u_char vl_bfw;
u_char vl_efw;
struct pxafb_info pxa;
} vidinfo_t;
#endif
|