aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/Makefile
diff options
context:
space:
mode:
authorBen Hutchings <ben@decadent.org.uk>2009-08-29 09:53:51 -0400
committerDave Airlie <airlied@redhat.com>2009-08-30 19:09:30 -0400
commit70967ab9c0c9017645d167d33675eab996633631 (patch)
tree5ec85349ccbf2bd21ab4929223d94ac11d17fa44 /firmware/Makefile
parent1ae70072f0699916c1a77a9bacad958ee46f7395 (diff)
radeon: Use request_firmware()
Loosely based on a patch by Jaswinder Singh Rajput <jaswinderlinux@gmail.com>. KMS support by Dave Airlie <airlied@redhat.com>. For Radeon 100- to 500-series, firmware blobs look like: struct { __be32 datah; __be32 datal; } cp_ucode[256]; For Radeon 600-series, there are two separate firmware blobs: __be32 me_ucode[PM4_UCODE_SIZE * 3]; __be32 pfp_ucode[PFP_UCODE_SIZE]; For Radeon 700-series, likewise: __be32 me_ucode[R700_PM4_UCODE_SIZE]; __be32 pfp_ucode[R700_PFP_UCODE_SIZE]; Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'firmware/Makefile')
-rw-r--r--firmware/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index 6ea4e3d9f054..d166a7f767e3 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -44,6 +44,20 @@ fw-shipped-$(CONFIG_CHELSIO_T3) += cxgb3/t3b_psram-1.1.0.bin \
44 cxgb3/t3fw-7.4.0.bin 44 cxgb3/t3fw-7.4.0.bin
45fw-shipped-$(CONFIG_DRM_MGA) += matrox/g200_warp.fw matrox/g400_warp.fw 45fw-shipped-$(CONFIG_DRM_MGA) += matrox/g200_warp.fw matrox/g400_warp.fw
46fw-shipped-$(CONFIG_DRM_R128) += r128/r128_cce.bin 46fw-shipped-$(CONFIG_DRM_R128) += r128/r128_cce.bin
47fw-shipped-$(CONFIG_DRM_RADEON) += radeon/R100_cp.bin radeon/R200_cp.bin \
48 radeon/R300_cp.bin radeon/R420_cp.bin \
49 radeon/RS690_cp.bin radeon/RS600_cp.bin \
50 radeon/R520_cp.bin \
51 radeon/R600_pfp.bin radeon/R600_me.bin \
52 radeon/RV610_pfp.bin radeon/RV610_me.bin \
53 radeon/RV630_pfp.bin radeon/RV630_me.bin \
54 radeon/RV620_pfp.bin radeon/RV620_me.bin \
55 radeon/RV635_pfp.bin radeon/RV635_me.bin \
56 radeon/RV670_pfp.bin radeon/RV670_me.bin \
57 radeon/RS780_pfp.bin radeon/RS780_me.bin \
58 radeon/RV770_pfp.bin radeon/RV770_me.bin \
59 radeon/RV730_pfp.bin radeon/RV730_me.bin \
60 radeon/RV710_pfp.bin radeon/RV710_me.bin
47fw-shipped-$(CONFIG_DVB_AV7110) += av7110/bootcode.bin 61fw-shipped-$(CONFIG_DVB_AV7110) += av7110/bootcode.bin
48fw-shipped-$(CONFIG_DVB_TTUSB_BUDGET) += ttusb-budget/dspbootcode.bin 62fw-shipped-$(CONFIG_DVB_TTUSB_BUDGET) += ttusb-budget/dspbootcode.bin
49fw-shipped-$(CONFIG_E100) += e100/d101m_ucode.bin e100/d101s_ucode.bin \ 63fw-shipped-$(CONFIG_E100) += e100/d101m_ucode.bin e100/d101s_ucode.bin \