[haiku-commits] haiku: hrev50381 - src/add-ons/kernel/drivers/graphics/radeon_hd headers/private/graphics/radeon_hd build/jam

  • From: kallisti5@xxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Thu, 30 Jun 2016 23:49:16 +0200 (CEST)

hrev50381 adds 2 changesets to branch 'master'
old head: 8331697602ac2d55115f723b042b91db1886de06
new head: 30d631c8216e6609085b97fb4fa43c977e5764d6
overview: 
http://cgit.haiku-os.org/haiku/log/?qt=range&q=30d631c8216e+%5E8331697602ac

----------------------------------------------------------------------------

c9e6b4e096ec: jam: Extend wget wait
  
  * I shrunk this down, but it seems like packages.haiku-os.org
    is taking an long time to access some packages (>10 sec)
  * This should help relability of package downloads until
    someone checks out why connections take so long

30d631c8216e: radeon_hd: Add new Polaris GPU, untested

                          [ Alexander von Gluck IV <kallisti5@xxxxxxxxxxx> ]

----------------------------------------------------------------------------

3 files changed, 13 insertions(+), 4 deletions(-)
build/jam/FileRules                                      | 2 +-
headers/private/graphics/radeon_hd/radeon_hd.h           | 6 ++++--
src/add-ons/kernel/drivers/graphics/radeon_hd/driver.cpp | 9 ++++++++-

############################################################################

Commit:      c9e6b4e096eca70a0993bfe735f407fcfc399d19
URL:         http://cgit.haiku-os.org/haiku/commit/?id=c9e6b4e096ec
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Thu Jun 30 20:09:17 2016 UTC

jam: Extend wget wait

* I shrunk this down, but it seems like packages.haiku-os.org
  is taking an long time to access some packages (>10 sec)
* This should help relability of package downloads until
  someone checks out why connections take so long

----------------------------------------------------------------------------

diff --git a/build/jam/FileRules b/build/jam/FileRules
index 4f300db..b0d6d73 100644
--- a/build/jam/FileRules
+++ b/build/jam/FileRules
@@ -478,7 +478,7 @@ actions DownloadLocatedFile1
                echo "ERROR: Would need to download $(URL), but 
HAIKU_NO_DOWNLOADS is set!"
                exit 1
        fi
-       wget --retry-connrefused --timeout 10 -O "$(1)" $(URL) || exit 1
+       wget --retry-connrefused --timeout 30 -O "$(1)" $(URL) || exit 1
        touch "$(1)"
 }
 

############################################################################

Revision:    hrev50381
Commit:      30d631c8216e6609085b97fb4fa43c977e5764d6
URL:         http://cgit.haiku-os.org/haiku/commit/?id=30d631c8216e
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Thu Jun 30 20:09:59 2016 UTC

radeon_hd: Add new Polaris GPU, untested

----------------------------------------------------------------------------

diff --git a/headers/private/graphics/radeon_hd/radeon_hd.h 
b/headers/private/graphics/radeon_hd/radeon_hd.h
index b9ca70e..a832b1d 100644
--- a/headers/private/graphics/radeon_hd/radeon_hd.h
+++ b/headers/private/graphics/radeon_hd/radeon_hd.h
@@ -111,7 +111,8 @@ enum radeon_chipset {
        RADEON_HAWAII,          // DCE 8.5
        RADEON_TOPAZ,           //Volcanic Islands, NO DCE
        RADEON_TONGA,           // DCE 10.0
-       RADEON_CARRIZO          // DCE 11.0
+       RADEON_CARRIZO,         // DCE 11.0
+       RADEON_POLARIS          //Artic Islands, DCE 12.0
 };
 
 // !! Must match chipset families above
@@ -168,7 +169,8 @@ static const char radeon_chip_name[][MAX_NAME_LENGTH] = {
        "Hawaii",
        "Topaz",
        "Tonga",
-       "Carrizo"
+       "Carrizo",
+       "Polaris"
 };
 
 
diff --git a/src/add-ons/kernel/drivers/graphics/radeon_hd/driver.cpp 
b/src/add-ons/kernel/drivers/graphics/radeon_hd/driver.cpp
index dec0630..5a70eec 100644
--- a/src/add-ons/kernel/drivers/graphics/radeon_hd/driver.cpp
+++ b/src/add-ons/kernel/drivers/graphics/radeon_hd/driver.cpp
@@ -497,7 +497,14 @@ const struct supported_device {
        {0x9874, 11, 0, RADEON_CARRIZO, CHIP_APU, "Radeon HD Carrizo"},
        {0x9875, 11, 0, RADEON_CARRIZO, CHIP_APU, "Radeon HD Carrizo"},
        {0x9876, 11, 0, RADEON_CARRIZO, CHIP_APU, "Radeon HD Carrizo"},
-       {0x9877, 11, 0, RADEON_CARRIZO, CHIP_APU, "Radeon HD Carrizo"}
+       {0x9877, 11, 0, RADEON_CARRIZO, CHIP_APU, "Radeon HD Carrizo"},
+
+       // Introduced: 2016
+       // Codename: Artic Islands / Polaris
+       // Process: 14 nm
+       // Radeon RX 460 TBA
+       // Radeon RX 470 TBA
+       {0x67df, 12, 0, RADEON_POLARIS, CHIP_STD, "Radeon RX480"}
 };
 
 


Other related posts:

  • » [haiku-commits] haiku: hrev50381 - src/add-ons/kernel/drivers/graphics/radeon_hd headers/private/graphics/radeon_hd build/jam - kallisti5