evergreen.c (cdd38c5f1ce4398ec58fec95904b75824daab7b5) | evergreen.c (519424d776ec5e629781855a57f05aac5ef60ecb) |
---|---|
1/* 2 * Copyright 2010 Advanced Micro Devices, Inc. 3 * 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 --- 5194 unchanged lines hidden (view full) --- 5203 evergreen_init_golden_registers(rdev); 5204 /* Initialize scratch registers */ 5205 r600_scratch_init(rdev); 5206 /* Initialize surface registers */ 5207 radeon_surface_init(rdev); 5208 /* Initialize clocks */ 5209 radeon_get_clock_info(rdev->ddev); 5210 /* Fence driver */ | 1/* 2 * Copyright 2010 Advanced Micro Devices, Inc. 3 * 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 --- 5194 unchanged lines hidden (view full) --- 5203 evergreen_init_golden_registers(rdev); 5204 /* Initialize scratch registers */ 5205 r600_scratch_init(rdev); 5206 /* Initialize surface registers */ 5207 radeon_surface_init(rdev); 5208 /* Initialize clocks */ 5209 radeon_get_clock_info(rdev->ddev); 5210 /* Fence driver */ |
5211 r = radeon_fence_driver_init(rdev); 5212 if (r) 5213 return r; | 5211 radeon_fence_driver_init(rdev); |
5214 /* initialize AGP */ 5215 if (rdev->flags & RADEON_IS_AGP) { 5216 r = radeon_agp_init(rdev); 5217 if (r) 5218 radeon_agp_disable(rdev); 5219 } 5220 /* initialize memory controller */ 5221 r = evergreen_mc_init(rdev); --- 310 unchanged lines hidden --- | 5212 /* initialize AGP */ 5213 if (rdev->flags & RADEON_IS_AGP) { 5214 r = radeon_agp_init(rdev); 5215 if (r) 5216 radeon_agp_disable(rdev); 5217 } 5218 /* initialize memory controller */ 5219 r = evergreen_mc_init(rdev); --- 310 unchanged lines hidden --- |