2 * Copyright 2013 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
22 * Authors: Christian König <christian.koenig@amd.com>
25 #include <linux/firmware.h>
28 #include "radeon_asic.h"
32 * uvd_v2_2_fence_emit - emit an fence & trap command
34 * @rdev: radeon_device pointer
35 * @fence: fence to emit
37 * Write a fence and a trap command to the ring.
39 void uvd_v2_2_fence_emit(struct radeon_device
*rdev
,
40 struct radeon_fence
*fence
)
42 struct radeon_ring
*ring
= &rdev
->ring
[fence
->ring
];
43 uint64_t addr
= rdev
->fence_drv
[fence
->ring
].gpu_addr
;
45 radeon_ring_write(ring
, PACKET0(UVD_CONTEXT_ID
, 0));
46 radeon_ring_write(ring
, fence
->seq
);
47 radeon_ring_write(ring
, PACKET0(UVD_GPCOM_VCPU_DATA0
, 0));
48 radeon_ring_write(ring
, addr
& 0xffffffff);
49 radeon_ring_write(ring
, PACKET0(UVD_GPCOM_VCPU_DATA1
, 0));
50 radeon_ring_write(ring
, upper_32_bits(addr
) & 0xff);
51 radeon_ring_write(ring
, PACKET0(UVD_GPCOM_VCPU_CMD
, 0));
52 radeon_ring_write(ring
, 0);
54 radeon_ring_write(ring
, PACKET0(UVD_GPCOM_VCPU_DATA0
, 0));
55 radeon_ring_write(ring
, 0);
56 radeon_ring_write(ring
, PACKET0(UVD_GPCOM_VCPU_DATA1
, 0));
57 radeon_ring_write(ring
, 0);
58 radeon_ring_write(ring
, PACKET0(UVD_GPCOM_VCPU_CMD
, 0));
59 radeon_ring_write(ring
, 2);
64 * uvd_v2_2_resume - memory controller programming
66 * @rdev: radeon_device pointer
68 * Let the UVD memory controller know it's offsets
70 int uvd_v2_2_resume(struct radeon_device
*rdev
)
73 uint32_t chip_id
, size
;
76 r
= radeon_uvd_resume(rdev
);
80 /* programm the VCPU memory controller bits 0-27 */
81 addr
= rdev
->uvd
.gpu_addr
>> 3;
82 size
= RADEON_GPU_PAGE_ALIGN(rdev
->uvd_fw
->size
+ 4) >> 3;
83 WREG32(UVD_VCPU_CACHE_OFFSET0
, addr
);
84 WREG32(UVD_VCPU_CACHE_SIZE0
, size
);
87 size
= RADEON_UVD_STACK_SIZE
>> 3;
88 WREG32(UVD_VCPU_CACHE_OFFSET1
, addr
);
89 WREG32(UVD_VCPU_CACHE_SIZE1
, size
);
92 size
= RADEON_UVD_HEAP_SIZE
>> 3;
93 WREG32(UVD_VCPU_CACHE_OFFSET2
, addr
);
94 WREG32(UVD_VCPU_CACHE_SIZE2
, size
);
97 addr
= (rdev
->uvd
.gpu_addr
>> 28) & 0xF;
98 WREG32(UVD_LMI_ADDR_EXT
, (addr
<< 12) | (addr
<< 0));
101 addr
= (rdev
->uvd
.gpu_addr
>> 32) & 0xFF;
102 WREG32(UVD_LMI_EXT40_ADDR
, addr
| (0x9 << 16) | (0x1 << 31));
104 /* tell firmware which hardware it is running on */
105 switch (rdev
->family
) {
109 chip_id
= 0x01000005;
112 chip_id
= 0x01000006;
115 chip_id
= 0x01000007;
119 chip_id
= 0x01000008;
122 chip_id
= 0x01000009;
125 chip_id
= 0x0100000a;
128 chip_id
= 0x0100000b;
132 chip_id
= 0x0100000c;
135 chip_id
= 0x0100000e;
138 chip_id
= 0x0100000f;
141 chip_id
= 0x01000010;
144 chip_id
= 0x01000011;
147 chip_id
= 0x01000012;
150 chip_id
= 0x01000014;
153 chip_id
= 0x01000015;
157 chip_id
= 0x01000016;
160 chip_id
= 0x01000017;
163 WREG32(UVD_VCPU_CHIP_ID
, chip_id
);