blob: f55bf3cb11e991f1c3b58bc33ebb95a71da7e648 [file] [log] [blame]
wdenka5948882005-03-27 23:41:39 +00001/*
2 * (C) Copyright 2002
3 * Stäubli Faverges - <www.staubli.com>
4 * Pierre AUBERT p.aubert@staubli.com
5 *
6 * (C) Copyright 2005
7 * Martin Krause TQ-Systems GmbH martin.krause@tqs.de
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
28/*
29 * Basic video support for SMI SM501 "Voyager" graphic controller
30 */
31
32#include <common.h>
33
Anatolij Gustschin60cb7de2010-05-26 10:38:57 +020034#include <asm/io.h>
wdenka5948882005-03-27 23:41:39 +000035#include <video_fb.h>
36#include <sm501.h>
37
38#define read8(ptrReg) \
39 *(volatile unsigned char *)(sm501.isaBase + ptrReg)
40
41#define write8(ptrReg,value) \
42 *(volatile unsigned char *)(sm501.isaBase + ptrReg) = value
43
44#define read16(ptrReg) \
45 (*(volatile unsigned short *)(sm501.isaBase + ptrReg))
46
47#define write16(ptrReg,value) \
48 (*(volatile unsigned short *)(sm501.isaBase + ptrReg) = value)
49
50#define read32(ptrReg) \
51 (*(volatile unsigned int *)(sm501.isaBase + ptrReg))
52
53#define write32(ptrReg, value) \
54 (*(volatile unsigned int *)(sm501.isaBase + ptrReg) = value)
55
56GraphicDevice sm501;
57
Anatolij Gustschin60cb7de2010-05-26 10:38:57 +020058void write_be32(int off, unsigned int val)
59{
60 out_be32((unsigned __iomem *)(sm501.isaBase + off), val);
61}
62
63void write_le32(int off, unsigned int val)
64{
65 out_le32((unsigned __iomem *)(sm501.isaBase + off), val);
66}
67
68void (*write_reg32)(int off, unsigned int val) = write_be32;
69
wdenka5948882005-03-27 23:41:39 +000070/*-----------------------------------------------------------------------------
71 * SmiSetRegs --
72 *-----------------------------------------------------------------------------
73 */
74static void SmiSetRegs (void)
75{
76 /*
77 * The content of the chipset register depends on the board (clocks,
78 * ...)
79 */
80 const SMI_REGS *preg = board_get_regs ();
81 while (preg->Index) {
Anatolij Gustschin60cb7de2010-05-26 10:38:57 +020082 write_reg32 (preg->Index, preg->Value);
wdenka5948882005-03-27 23:41:39 +000083 /*
84 * Insert a delay between
85 */
86 udelay (1000);
87 preg ++;
88 }
89}
90
Anatolij Gustschin60cb7de2010-05-26 10:38:57 +020091#ifdef CONFIG_VIDEO_SM501_PCI
92static struct pci_device_id sm501_pci_tbl[] = {
93 { PCI_VENDOR_ID_SMI, PCI_DEVICE_ID_SMI_501 },
94 {}
95};
96#endif
97
wdenka5948882005-03-27 23:41:39 +000098/*-----------------------------------------------------------------------------
99 * video_hw_init --
100 *-----------------------------------------------------------------------------
101 */
102void *video_hw_init (void)
103{
Anatolij Gustschin60cb7de2010-05-26 10:38:57 +0200104#ifdef CONFIG_VIDEO_SM501_PCI
105 unsigned int pci_mem_base, pci_mmio_base;
106 unsigned int id;
107 unsigned short device_id;
108 pci_dev_t devbusfn;
109 int mem;
110#endif
wdenka5948882005-03-27 23:41:39 +0000111 unsigned int *vm, i;
112
113 memset (&sm501, 0, sizeof (GraphicDevice));
114
Anatolij Gustschin60cb7de2010-05-26 10:38:57 +0200115#ifdef CONFIG_VIDEO_SM501_PCI
116 printf("Video: ");
117
118 /* Look for SM501/SM502 chips */
119 devbusfn = pci_find_devices(sm501_pci_tbl, 0);
120 if (devbusfn < 0) {
121 printf ("PCI Controller not found.\n");
122 goto not_pci;
123 }
124
125 /* Setup */
126 pci_write_config_dword (devbusfn, PCI_COMMAND,
127 (PCI_COMMAND_MEMORY | PCI_COMMAND_IO));
128 pci_read_config_word (devbusfn, PCI_DEVICE_ID, &device_id);
129 pci_read_config_dword (devbusfn, PCI_REVISION_ID, &id);
130 pci_read_config_dword (devbusfn, PCI_BASE_ADDRESS_0, &pci_mem_base);
131 pci_read_config_dword (devbusfn, PCI_BASE_ADDRESS_1, &pci_mmio_base);
132 sm501.frameAdrs = pci_mem_to_phys (devbusfn, pci_mem_base);
133 sm501.isaBase = pci_mem_to_phys (devbusfn, pci_mmio_base);
134
135 if (sm501.isaBase)
136 write_reg32 = write_le32;
137
138 mem = in_le32 ((unsigned __iomem *)(sm501.isaBase + 0x10));
139 mem = (mem & 0x0000e000) >> 13;
140 switch (mem) {
141 case 1:
142 mem = 8;
143 break;
144 case 2:
145 mem = 16;
146 break;
147 case 3:
148 mem = 32;
149 break;
150 case 4:
151 mem = 64;
152 break;
153 case 5:
154 mem = 2;
155 break;
156 case 0:
157 default:
158 mem = 4;
159 }
160 printf ("PCI SM50%d %d MB\n", ((id & 0xff) == 0xC0) ? 2 : 1, mem);
161not_pci:
162#endif
wdenka5948882005-03-27 23:41:39 +0000163 /*
164 * Initialization of the access to the graphic chipset Retreive base
165 * address of the chipset (see board/RPXClassic/eccx.c)
166 */
Anatolij Gustschin60cb7de2010-05-26 10:38:57 +0200167 if (!sm501.isaBase) {
168 sm501.isaBase = board_video_init ();
169 if (!sm501.isaBase)
170 return NULL;
wdenka5948882005-03-27 23:41:39 +0000171 }
172
Anatolij Gustschin60cb7de2010-05-26 10:38:57 +0200173 if (!sm501.frameAdrs) {
174 sm501.frameAdrs = board_video_get_fb ();
175 if (!sm501.frameAdrs)
176 return NULL;
wdenka5948882005-03-27 23:41:39 +0000177 }
178
179 sm501.winSizeX = board_get_width ();
180 sm501.winSizeY = board_get_height ();
181
182#if defined(CONFIG_VIDEO_SM501_8BPP)
183 sm501.gdfIndex = GDF__8BIT_INDEX;
184 sm501.gdfBytesPP = 1;
185
186#elif defined(CONFIG_VIDEO_SM501_16BPP)
187 sm501.gdfIndex = GDF_16BIT_565RGB;
188 sm501.gdfBytesPP = 2;
189
190#elif defined(CONFIG_VIDEO_SM501_32BPP)
191 sm501.gdfIndex = GDF_32BIT_X888RGB;
192 sm501.gdfBytesPP = 4;
193#else
194#error Unsupported SM501 BPP
195#endif
196
197 sm501.memSize = sm501.winSizeX * sm501.winSizeY * sm501.gdfBytesPP;
198
199 /* Load Smi registers */
200 SmiSetRegs ();
201
202 /* (see board/RPXClassic/RPXClassic.c) */
203 board_validate_screen (sm501.isaBase);
204
205 /* Clear video memory */
206 i = sm501.memSize/4;
207 vm = (unsigned int *)sm501.frameAdrs;
208 while(i--)
209 *vm++ = 0;
210
211 return (&sm501);
212}