blob: 00bc71fe98d15ae8c11f3708e4be1de7977ac2a2 [file] [log] [blame]
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001/*
2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors: Dave Airlie
25 * Alex Deucher
26 * Jerome Glisse
27 */
Jerome Glissec010f802009-09-30 22:09:06 +020028/* RS600 / Radeon X1250/X1270 integrated GPU
29 *
30 * This file gather function specific to RS600 which is the IGP of
31 * the X1250/X1270 family supporting intel CPU (while RS690/RS740
32 * is the X1250/X1270 supporting AMD CPU). The display engine are
33 * the avivo one, bios is an atombios, 3D block are the one of the
34 * R4XX family. The GART is different from the RS400 one and is very
35 * close to the one of the R600 family (R600 likely being an evolution
36 * of the RS600 GART block).
37 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +020038#include "drmP.h"
Jerome Glisse771fe6b2009-06-05 14:42:42 +020039#include "radeon.h"
Jerome Glissec010f802009-09-30 22:09:06 +020040#include "atom.h"
41#include "rs600d.h"
Jerome Glisse771fe6b2009-06-05 14:42:42 +020042
Dave Airlie3f7dc91a2009-08-27 11:10:15 +100043#include "rs600_reg_safe.h"
44
Jerome Glisse771fe6b2009-06-05 14:42:42 +020045void rs600_gpu_init(struct radeon_device *rdev);
46int rs600_mc_wait_for_idle(struct radeon_device *rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020047
Jerome Glisse771fe6b2009-06-05 14:42:42 +020048/*
49 * GART.
50 */
51void rs600_gart_tlb_flush(struct radeon_device *rdev)
52{
53 uint32_t tmp;
54
Jerome Glissec010f802009-09-30 22:09:06 +020055 tmp = RREG32_MC(R_000100_MC_PT0_CNTL);
56 tmp &= C_000100_INVALIDATE_ALL_L1_TLBS & C_000100_INVALIDATE_L2_CACHE;
57 WREG32_MC(R_000100_MC_PT0_CNTL, tmp);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020058
Jerome Glissec010f802009-09-30 22:09:06 +020059 tmp = RREG32_MC(R_000100_MC_PT0_CNTL);
60 tmp |= S_000100_INVALIDATE_ALL_L1_TLBS(1) & S_000100_INVALIDATE_L2_CACHE(1);
61 WREG32_MC(R_000100_MC_PT0_CNTL, tmp);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020062
Jerome Glissec010f802009-09-30 22:09:06 +020063 tmp = RREG32_MC(R_000100_MC_PT0_CNTL);
64 tmp &= C_000100_INVALIDATE_ALL_L1_TLBS & C_000100_INVALIDATE_L2_CACHE;
65 WREG32_MC(R_000100_MC_PT0_CNTL, tmp);
66 tmp = RREG32_MC(R_000100_MC_PT0_CNTL);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020067}
68
Jerome Glisse4aac0472009-09-14 18:29:49 +020069int rs600_gart_init(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +020070{
Jerome Glisse771fe6b2009-06-05 14:42:42 +020071 int r;
72
Jerome Glisse4aac0472009-09-14 18:29:49 +020073 if (rdev->gart.table.vram.robj) {
74 WARN(1, "RS600 GART already initialized.\n");
75 return 0;
76 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +020077 /* Initialize common gart structure */
78 r = radeon_gart_init(rdev);
79 if (r) {
80 return r;
81 }
82 rdev->gart.table_size = rdev->gart.num_gpu_pages * 8;
Jerome Glisse4aac0472009-09-14 18:29:49 +020083 return radeon_gart_table_vram_alloc(rdev);
84}
85
86int rs600_gart_enable(struct radeon_device *rdev)
87{
Jerome Glissec010f802009-09-30 22:09:06 +020088 u32 tmp;
Jerome Glisse4aac0472009-09-14 18:29:49 +020089 int r, i;
90
91 if (rdev->gart.table.vram.robj == NULL) {
92 dev_err(rdev->dev, "No VRAM object for PCIE GART.\n");
93 return -EINVAL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020094 }
Jerome Glisse4aac0472009-09-14 18:29:49 +020095 r = radeon_gart_table_vram_pin(rdev);
96 if (r)
97 return r;
Jerome Glissec010f802009-09-30 22:09:06 +020098 /* Enable bus master */
99 tmp = RREG32(R_00004C_BUS_CNTL) & C_00004C_BUS_MASTER_DIS;
100 WREG32(R_00004C_BUS_CNTL, tmp);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200101 /* FIXME: setup default page */
Jerome Glissec010f802009-09-30 22:09:06 +0200102 WREG32_MC(R_000100_MC_PT0_CNTL,
103 (S_000100_EFFECTIVE_L2_CACHE_SIZE(6) |
104 S_000100_EFFECTIVE_L2_QUEUE_SIZE(6)));
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200105 for (i = 0; i < 19; i++) {
Jerome Glissec010f802009-09-30 22:09:06 +0200106 WREG32_MC(R_00016C_MC_PT0_CLIENT0_CNTL + i,
107 S_00016C_ENABLE_TRANSLATION_MODE_OVERRIDE(1) |
108 S_00016C_SYSTEM_ACCESS_MODE_MASK(
109 V_00016C_SYSTEM_ACCESS_MODE_IN_SYS) |
110 S_00016C_SYSTEM_APERTURE_UNMAPPED_ACCESS(
111 V_00016C_SYSTEM_APERTURE_UNMAPPED_DEFAULT_PAGE) |
112 S_00016C_EFFECTIVE_L1_CACHE_SIZE(1) |
113 S_00016C_ENABLE_FRAGMENT_PROCESSING(1) |
114 S_00016C_EFFECTIVE_L1_QUEUE_SIZE(1));
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200115 }
116
117 /* System context map to GART space */
Jerome Glissec010f802009-09-30 22:09:06 +0200118 WREG32_MC(R_000112_MC_PT0_SYSTEM_APERTURE_LOW_ADDR, rdev->mc.gtt_start);
119 WREG32_MC(R_000114_MC_PT0_SYSTEM_APERTURE_HIGH_ADDR, rdev->mc.gtt_end);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200120
121 /* enable first context */
Jerome Glissec010f802009-09-30 22:09:06 +0200122 WREG32_MC(R_00013C_MC_PT0_CONTEXT0_FLAT_START_ADDR, rdev->mc.gtt_start);
123 WREG32_MC(R_00014C_MC_PT0_CONTEXT0_FLAT_END_ADDR, rdev->mc.gtt_end);
124 WREG32_MC(R_000102_MC_PT0_CONTEXT0_CNTL,
125 S_000102_ENABLE_PAGE_TABLE(1) |
126 S_000102_PAGE_TABLE_DEPTH(V_000102_PAGE_TABLE_FLAT));
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200127 /* disable all other contexts */
128 for (i = 1; i < 8; i++) {
Jerome Glissec010f802009-09-30 22:09:06 +0200129 WREG32_MC(R_000102_MC_PT0_CONTEXT0_CNTL + i, 0);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200130 }
131
132 /* setup the page table */
Jerome Glissec010f802009-09-30 22:09:06 +0200133 WREG32_MC(R_00012C_MC_PT0_CONTEXT0_FLAT_BASE_ADDR,
134 rdev->gart.table_addr);
135 WREG32_MC(R_00011C_MC_PT0_CONTEXT0_DEFAULT_READ_ADDR, 0);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200136
137 /* enable page tables */
Jerome Glissec010f802009-09-30 22:09:06 +0200138 tmp = RREG32_MC(R_000100_MC_PT0_CNTL);
139 WREG32_MC(R_000100_MC_PT0_CNTL, (tmp | S_000100_ENABLE_PT(1)));
140 tmp = RREG32_MC(R_000009_MC_CNTL1);
141 WREG32_MC(R_000009_MC_CNTL1, (tmp | S_000009_ENABLE_PAGE_TABLES(1)));
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200142 rs600_gart_tlb_flush(rdev);
143 rdev->gart.ready = true;
144 return 0;
145}
146
147void rs600_gart_disable(struct radeon_device *rdev)
148{
Jerome Glisse4c788672009-11-20 14:29:23 +0100149 u32 tmp;
150 int r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200151
152 /* FIXME: disable out of gart access */
Jerome Glissec010f802009-09-30 22:09:06 +0200153 WREG32_MC(R_000100_MC_PT0_CNTL, 0);
154 tmp = RREG32_MC(R_000009_MC_CNTL1);
155 WREG32_MC(R_000009_MC_CNTL1, tmp & C_000009_ENABLE_PAGE_TABLES);
Jerome Glisse4aac0472009-09-14 18:29:49 +0200156 if (rdev->gart.table.vram.robj) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100157 r = radeon_bo_reserve(rdev->gart.table.vram.robj, false);
158 if (r == 0) {
159 radeon_bo_kunmap(rdev->gart.table.vram.robj);
160 radeon_bo_unpin(rdev->gart.table.vram.robj);
161 radeon_bo_unreserve(rdev->gart.table.vram.robj);
162 }
Jerome Glisse4aac0472009-09-14 18:29:49 +0200163 }
164}
165
166void rs600_gart_fini(struct radeon_device *rdev)
167{
168 rs600_gart_disable(rdev);
169 radeon_gart_table_vram_free(rdev);
170 radeon_gart_fini(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200171}
172
173#define R600_PTE_VALID (1 << 0)
174#define R600_PTE_SYSTEM (1 << 1)
175#define R600_PTE_SNOOPED (1 << 2)
176#define R600_PTE_READABLE (1 << 5)
177#define R600_PTE_WRITEABLE (1 << 6)
178
179int rs600_gart_set_page(struct radeon_device *rdev, int i, uint64_t addr)
180{
181 void __iomem *ptr = (void *)rdev->gart.table.vram.ptr;
182
183 if (i < 0 || i > rdev->gart.num_gpu_pages) {
184 return -EINVAL;
185 }
186 addr = addr & 0xFFFFFFFFFFFFF000ULL;
187 addr |= R600_PTE_VALID | R600_PTE_SYSTEM | R600_PTE_SNOOPED;
188 addr |= R600_PTE_READABLE | R600_PTE_WRITEABLE;
189 writeq(addr, ((void __iomem *)ptr) + (i * 8));
190 return 0;
191}
192
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200193int rs600_irq_set(struct radeon_device *rdev)
194{
195 uint32_t tmp = 0;
196 uint32_t mode_int = 0;
197
198 if (rdev->irq.sw_int) {
Jerome Glissec010f802009-09-30 22:09:06 +0200199 tmp |= S_000040_SW_INT_EN(1);
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200200 }
201 if (rdev->irq.crtc_vblank_int[0]) {
Jerome Glissec010f802009-09-30 22:09:06 +0200202 mode_int |= S_006540_D1MODE_VBLANK_INT_MASK(1);
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200203 }
204 if (rdev->irq.crtc_vblank_int[1]) {
Jerome Glissec010f802009-09-30 22:09:06 +0200205 mode_int |= S_006540_D2MODE_VBLANK_INT_MASK(1);
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200206 }
Jerome Glissec010f802009-09-30 22:09:06 +0200207 WREG32(R_000040_GEN_INT_CNTL, tmp);
208 WREG32(R_006540_DxMODE_INT_MASK, mode_int);
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200209 return 0;
210}
211
212static inline uint32_t rs600_irq_ack(struct radeon_device *rdev, u32 *r500_disp_int)
213{
Jerome Glisse01ceae82009-10-07 11:08:22 +0200214 uint32_t irqs = RREG32(R_000044_GEN_INT_STATUS);
215 uint32_t irq_mask = ~C_000044_SW_INT;
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200216
Jerome Glisse01ceae82009-10-07 11:08:22 +0200217 if (G_000044_DISPLAY_INT_STAT(irqs)) {
Jerome Glissec010f802009-09-30 22:09:06 +0200218 *r500_disp_int = RREG32(R_007EDC_DISP_INTERRUPT_STATUS);
219 if (G_007EDC_LB_D1_VBLANK_INTERRUPT(*r500_disp_int)) {
220 WREG32(R_006534_D1MODE_VBLANK_STATUS,
221 S_006534_D1MODE_VBLANK_ACK(1));
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200222 }
Jerome Glissec010f802009-09-30 22:09:06 +0200223 if (G_007EDC_LB_D2_VBLANK_INTERRUPT(*r500_disp_int)) {
224 WREG32(R_006D34_D2MODE_VBLANK_STATUS,
225 S_006D34_D2MODE_VBLANK_ACK(1));
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200226 }
227 } else {
228 *r500_disp_int = 0;
229 }
230
231 if (irqs) {
Jerome Glisse01ceae82009-10-07 11:08:22 +0200232 WREG32(R_000044_GEN_INT_STATUS, irqs);
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200233 }
234 return irqs & irq_mask;
235}
236
Jerome Glisseac447df2009-09-30 22:18:43 +0200237void rs600_irq_disable(struct radeon_device *rdev)
238{
239 u32 tmp;
240
241 WREG32(R_000040_GEN_INT_CNTL, 0);
242 WREG32(R_006540_DxMODE_INT_MASK, 0);
243 /* Wait and acknowledge irq */
244 mdelay(1);
245 rs600_irq_ack(rdev, &tmp);
246}
247
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200248int rs600_irq_process(struct radeon_device *rdev)
249{
Alex Deucher3e5cb982009-10-16 12:21:24 -0400250 uint32_t status, msi_rearm;
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200251 uint32_t r500_disp_int;
252
253 status = rs600_irq_ack(rdev, &r500_disp_int);
254 if (!status && !r500_disp_int) {
255 return IRQ_NONE;
256 }
257 while (status || r500_disp_int) {
258 /* SW interrupt */
Jerome Glissec010f802009-09-30 22:09:06 +0200259 if (G_000040_SW_INT_EN(status))
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200260 radeon_fence_process(rdev);
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200261 /* Vertical blank interrupts */
Jerome Glissec010f802009-09-30 22:09:06 +0200262 if (G_007EDC_LB_D1_VBLANK_INTERRUPT(r500_disp_int))
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200263 drm_handle_vblank(rdev->ddev, 0);
Jerome Glissec010f802009-09-30 22:09:06 +0200264 if (G_007EDC_LB_D2_VBLANK_INTERRUPT(r500_disp_int))
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200265 drm_handle_vblank(rdev->ddev, 1);
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200266 status = rs600_irq_ack(rdev, &r500_disp_int);
267 }
Alex Deucher3e5cb982009-10-16 12:21:24 -0400268 if (rdev->msi_enabled) {
269 switch (rdev->family) {
270 case CHIP_RS600:
271 case CHIP_RS690:
272 case CHIP_RS740:
273 msi_rearm = RREG32(RADEON_BUS_CNTL) & ~RS600_MSI_REARM;
274 WREG32(RADEON_BUS_CNTL, msi_rearm);
275 WREG32(RADEON_BUS_CNTL, msi_rearm | RS600_MSI_REARM);
276 break;
277 default:
278 msi_rearm = RREG32(RADEON_MSI_REARM_EN) & ~RV370_MSI_REARM_EN;
279 WREG32(RADEON_MSI_REARM_EN, msi_rearm);
280 WREG32(RADEON_MSI_REARM_EN, msi_rearm | RV370_MSI_REARM_EN);
281 break;
282 }
283 }
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200284 return IRQ_HANDLED;
285}
286
287u32 rs600_get_vblank_counter(struct radeon_device *rdev, int crtc)
288{
289 if (crtc == 0)
Jerome Glissec010f802009-09-30 22:09:06 +0200290 return RREG32(R_0060A4_D1CRTC_STATUS_FRAME_COUNT);
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200291 else
Jerome Glissec010f802009-09-30 22:09:06 +0200292 return RREG32(R_0068A4_D2CRTC_STATUS_FRAME_COUNT);
Michel Dänzer7ed220d2009-08-13 11:10:51 +0200293}
294
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200295int rs600_mc_wait_for_idle(struct radeon_device *rdev)
296{
297 unsigned i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200298
299 for (i = 0; i < rdev->usec_timeout; i++) {
Jerome Glissec010f802009-09-30 22:09:06 +0200300 if (G_000000_MC_IDLE(RREG32_MC(R_000000_MC_STATUS)))
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200301 return 0;
Jerome Glissec010f802009-09-30 22:09:06 +0200302 udelay(1);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200303 }
304 return -1;
305}
306
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200307void rs600_gpu_init(struct radeon_device *rdev)
308{
309 /* FIXME: HDP same place on rs600 ? */
310 r100_hdp_reset(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200311 /* FIXME: is this correct ? */
312 r420_pipes_init(rdev);
Jerome Glissec010f802009-09-30 22:09:06 +0200313 /* Wait for mc idle */
314 if (rs600_mc_wait_for_idle(rdev))
315 dev_warn(rdev->dev, "Wait MC idle timeout before updating MC.\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200316}
317
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200318void rs600_vram_info(struct radeon_device *rdev)
319{
320 /* FIXME: to do or is these values sane ? */
321 rdev->mc.vram_is_ddr = true;
322 rdev->mc.vram_width = 128;
Alex Deucher722f2942009-12-03 16:18:19 -0500323
324 rdev->mc.real_vram_size = RREG32(RADEON_CONFIG_MEMSIZE);
325 rdev->mc.mc_vram_size = rdev->mc.real_vram_size;
326
327 rdev->mc.aper_base = drm_get_resource_start(rdev->ddev, 0);
328 rdev->mc.aper_size = drm_get_resource_len(rdev->ddev, 0);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200329}
330
Jerome Glissec93bb852009-07-13 21:04:08 +0200331void rs600_bandwidth_update(struct radeon_device *rdev)
332{
333 /* FIXME: implement, should this be like rs690 ? */
334}
335
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200336uint32_t rs600_mc_rreg(struct radeon_device *rdev, uint32_t reg)
337{
Jerome Glissec010f802009-09-30 22:09:06 +0200338 WREG32(R_000070_MC_IND_INDEX, S_000070_MC_IND_ADDR(reg) |
339 S_000070_MC_IND_CITF_ARB0(1));
340 return RREG32(R_000074_MC_IND_DATA);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200341}
342
343void rs600_mc_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v)
344{
Jerome Glissec010f802009-09-30 22:09:06 +0200345 WREG32(R_000070_MC_IND_INDEX, S_000070_MC_IND_ADDR(reg) |
346 S_000070_MC_IND_CITF_ARB0(1) | S_000070_MC_IND_WR_EN(1));
347 WREG32(R_000074_MC_IND_DATA, v);
348}
349
350void rs600_debugfs(struct radeon_device *rdev)
351{
352 if (r100_debugfs_rbbm_init(rdev))
353 DRM_ERROR("Failed to register debugfs file for RBBM !\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200354}
Dave Airlie3f7dc91a2009-08-27 11:10:15 +1000355
Jerome Glisse3bc68532009-10-01 09:39:24 +0200356void rs600_set_safe_registers(struct radeon_device *rdev)
Dave Airlie3f7dc91a2009-08-27 11:10:15 +1000357{
358 rdev->config.r300.reg_safe_bm = rs600_reg_safe_bm;
359 rdev->config.r300.reg_safe_bm_size = ARRAY_SIZE(rs600_reg_safe_bm);
Jerome Glisse3bc68532009-10-01 09:39:24 +0200360}
361
Jerome Glissec010f802009-09-30 22:09:06 +0200362static void rs600_mc_program(struct radeon_device *rdev)
363{
364 struct rv515_mc_save save;
365
366 /* Stops all mc clients */
367 rv515_mc_stop(rdev, &save);
368
369 /* Wait for mc idle */
370 if (rs600_mc_wait_for_idle(rdev))
371 dev_warn(rdev->dev, "Wait MC idle timeout before updating MC.\n");
372
373 /* FIXME: What does AGP means for such chipset ? */
374 WREG32_MC(R_000005_MC_AGP_LOCATION, 0x0FFFFFFF);
375 WREG32_MC(R_000006_AGP_BASE, 0);
376 WREG32_MC(R_000007_AGP_BASE_2, 0);
377 /* Program MC */
378 WREG32_MC(R_000004_MC_FB_LOCATION,
379 S_000004_MC_FB_START(rdev->mc.vram_start >> 16) |
380 S_000004_MC_FB_TOP(rdev->mc.vram_end >> 16));
381 WREG32(R_000134_HDP_FB_LOCATION,
382 S_000134_HDP_FB_START(rdev->mc.vram_start >> 16));
383
384 rv515_mc_resume(rdev, &save);
385}
386
387static int rs600_startup(struct radeon_device *rdev)
388{
389 int r;
390
391 rs600_mc_program(rdev);
392 /* Resume clock */
393 rv515_clock_startup(rdev);
394 /* Initialize GPU configuration (# pipes, ...) */
395 rs600_gpu_init(rdev);
396 /* Initialize GART (initialize after TTM so we can allocate
397 * memory through TTM but finalize after TTM) */
398 r = rs600_gart_enable(rdev);
399 if (r)
400 return r;
401 /* Enable IRQ */
Jerome Glissec010f802009-09-30 22:09:06 +0200402 rs600_irq_set(rdev);
403 /* 1M ring buffer */
404 r = r100_cp_init(rdev, 1024 * 1024);
405 if (r) {
406 dev_err(rdev->dev, "failled initializing CP (%d).\n", r);
407 return r;
408 }
409 r = r100_wb_init(rdev);
410 if (r)
411 dev_err(rdev->dev, "failled initializing WB (%d).\n", r);
412 r = r100_ib_init(rdev);
413 if (r) {
414 dev_err(rdev->dev, "failled initializing IB (%d).\n", r);
415 return r;
416 }
417 return 0;
418}
419
420int rs600_resume(struct radeon_device *rdev)
421{
422 /* Make sur GART are not working */
423 rs600_gart_disable(rdev);
424 /* Resume clock before doing reset */
425 rv515_clock_startup(rdev);
426 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
427 if (radeon_gpu_reset(rdev)) {
428 dev_warn(rdev->dev, "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
429 RREG32(R_000E40_RBBM_STATUS),
430 RREG32(R_0007C0_CP_STAT));
431 }
432 /* post */
433 atom_asic_init(rdev->mode_info.atom_context);
434 /* Resume clock after posting */
435 rv515_clock_startup(rdev);
436 return rs600_startup(rdev);
437}
438
439int rs600_suspend(struct radeon_device *rdev)
440{
441 r100_cp_disable(rdev);
442 r100_wb_disable(rdev);
Jerome Glisseac447df2009-09-30 22:18:43 +0200443 rs600_irq_disable(rdev);
Jerome Glissec010f802009-09-30 22:09:06 +0200444 rs600_gart_disable(rdev);
445 return 0;
446}
447
448void rs600_fini(struct radeon_device *rdev)
449{
450 rs600_suspend(rdev);
451 r100_cp_fini(rdev);
452 r100_wb_fini(rdev);
453 r100_ib_fini(rdev);
454 radeon_gem_fini(rdev);
455 rs600_gart_fini(rdev);
456 radeon_irq_kms_fini(rdev);
457 radeon_fence_driver_fini(rdev);
Jerome Glisse4c788672009-11-20 14:29:23 +0100458 radeon_bo_fini(rdev);
Jerome Glissec010f802009-09-30 22:09:06 +0200459 radeon_atombios_fini(rdev);
460 kfree(rdev->bios);
461 rdev->bios = NULL;
462}
463
Jerome Glisse3bc68532009-10-01 09:39:24 +0200464int rs600_init(struct radeon_device *rdev)
465{
Jerome Glissec010f802009-09-30 22:09:06 +0200466 int r;
467
Jerome Glissec010f802009-09-30 22:09:06 +0200468 /* Disable VGA */
469 rv515_vga_render_disable(rdev);
470 /* Initialize scratch registers */
471 radeon_scratch_init(rdev);
472 /* Initialize surface registers */
473 radeon_surface_init(rdev);
474 /* BIOS */
475 if (!radeon_get_bios(rdev)) {
476 if (ASIC_IS_AVIVO(rdev))
477 return -EINVAL;
478 }
479 if (rdev->is_atom_bios) {
480 r = radeon_atombios_init(rdev);
481 if (r)
482 return r;
483 } else {
484 dev_err(rdev->dev, "Expecting atombios for RS600 GPU\n");
485 return -EINVAL;
486 }
487 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
488 if (radeon_gpu_reset(rdev)) {
489 dev_warn(rdev->dev,
490 "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
491 RREG32(R_000E40_RBBM_STATUS),
492 RREG32(R_0007C0_CP_STAT));
493 }
494 /* check if cards are posted or not */
Dave Airlie72542d72009-12-01 14:06:31 +1000495 if (radeon_boot_test_post_card(rdev) == false)
496 return -EINVAL;
497
Jerome Glissec010f802009-09-30 22:09:06 +0200498 /* Initialize clocks */
499 radeon_get_clock_info(rdev->ddev);
Rafał Miłecki74338742009-11-03 00:53:02 +0100500 /* Initialize power management */
501 radeon_pm_init(rdev);
Jerome Glissec010f802009-09-30 22:09:06 +0200502 /* Get vram informations */
503 rs600_vram_info(rdev);
504 /* Initialize memory controller (also test AGP) */
505 r = r420_mc_init(rdev);
506 if (r)
507 return r;
508 rs600_debugfs(rdev);
509 /* Fence driver */
510 r = radeon_fence_driver_init(rdev);
511 if (r)
512 return r;
513 r = radeon_irq_kms_init(rdev);
514 if (r)
515 return r;
516 /* Memory manager */
Jerome Glisse4c788672009-11-20 14:29:23 +0100517 r = radeon_bo_init(rdev);
Jerome Glissec010f802009-09-30 22:09:06 +0200518 if (r)
519 return r;
520 r = rs600_gart_init(rdev);
521 if (r)
522 return r;
523 rs600_set_safe_registers(rdev);
524 rdev->accel_working = true;
525 r = rs600_startup(rdev);
526 if (r) {
527 /* Somethings want wront with the accel init stop accel */
528 dev_err(rdev->dev, "Disabling GPU acceleration\n");
529 rs600_suspend(rdev);
530 r100_cp_fini(rdev);
531 r100_wb_fini(rdev);
532 r100_ib_fini(rdev);
533 rs600_gart_fini(rdev);
534 radeon_irq_kms_fini(rdev);
535 rdev->accel_working = false;
536 }
Dave Airlie3f7dc91a2009-08-27 11:10:15 +1000537 return 0;
538}