]> git.proxmox.com Git - mirror_linux-firmware.git/commit - radeon/RS780_me.bin
radeon: Use request_firmware()
authorBen Hutchings <ben@decadent.org.uk>
Sat, 29 Aug 2009 13:53:51 +0000 (14:53 +0100)
committerDave Airlie <airlied@redhat.com>
Sun, 30 Aug 2009 23:09:30 +0000 (09:09 +1000)
commit9715b36e042c3327afc3a112db37c5b6f8ff3696
treed2773989ad34a4424dcb243b5ccbeab7e4bf10e4
parent5d46d0e9d0024a930ab9d720a50f59a3d919d34b
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>
28 files changed:
WHENCE
radeon/R100_cp.bin [new file with mode: 0644]
radeon/R200_cp.bin [new file with mode: 0644]
radeon/R300_cp.bin [new file with mode: 0644]
radeon/R420_cp.bin [new file with mode: 0644]
radeon/R520_cp.bin [new file with mode: 0644]
radeon/R600_me.bin [new file with mode: 0644]
radeon/R600_pfp.bin [new file with mode: 0644]
radeon/RS600_cp.bin [new file with mode: 0644]
radeon/RS690_cp.bin [new file with mode: 0644]
radeon/RS780_me.bin [new file with mode: 0644]
radeon/RS780_pfp.bin [new file with mode: 0644]
radeon/RV610_me.bin [new file with mode: 0644]
radeon/RV610_pfp.bin [new file with mode: 0644]
radeon/RV620_me.bin [new file with mode: 0644]
radeon/RV620_pfp.bin [new file with mode: 0644]
radeon/RV630_me.bin [new file with mode: 0644]
radeon/RV630_pfp.bin [new file with mode: 0644]
radeon/RV635_me.bin [new file with mode: 0644]
radeon/RV635_pfp.bin [new file with mode: 0644]
radeon/RV670_me.bin [new file with mode: 0644]
radeon/RV670_pfp.bin [new file with mode: 0644]
radeon/RV710_me.bin [new file with mode: 0644]
radeon/RV710_pfp.bin [new file with mode: 0644]
radeon/RV730_me.bin [new file with mode: 0644]
radeon/RV730_pfp.bin [new file with mode: 0644]
radeon/RV770_me.bin [new file with mode: 0644]
radeon/RV770_pfp.bin [new file with mode: 0644]