forked from Minki/linux
staging/xgifb: Remove unnecessary fields of XGINew_DDRDRAM_TYPE{340, 20}
Since the first three entries in XGINew_DDRDRAM_TYPE{340,20} are never used, we can simply remove them; and instead of passing XGINew_DDRDRAM_TYPE with an index we can simply pass the value directly to XGINew_SetDRAMSize20Reg. Signed-off-by: Peter Huewe <peterhuewe@gmx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4e55d0b3ee
commit
d6461e49c0
@ -6,25 +6,25 @@
|
|||||||
#include "vb_util.h"
|
#include "vb_util.h"
|
||||||
#include "vb_setmode.h"
|
#include "vb_setmode.h"
|
||||||
|
|
||||||
static const unsigned short XGINew_DDRDRAM_TYPE340[4][5] = {
|
static const unsigned short XGINew_DDRDRAM_TYPE340[4][2] = {
|
||||||
{ 2, 13, 9, 16, 0x45},
|
{ 16, 0x45},
|
||||||
{ 2, 12, 9, 8, 0x35},
|
{ 8, 0x35},
|
||||||
{ 2, 12, 8, 4, 0x31},
|
{ 4, 0x31},
|
||||||
{ 2, 11, 8, 2, 0x21} };
|
{ 2, 0x21} };
|
||||||
|
|
||||||
static const unsigned short XGINew_DDRDRAM_TYPE20[12][5] = {
|
static const unsigned short XGINew_DDRDRAM_TYPE20[12][2] = {
|
||||||
{ 2, 14, 11, 128, 0x5D},
|
{ 128, 0x5D},
|
||||||
{ 2, 14, 10, 64, 0x59},
|
{ 64, 0x59},
|
||||||
{ 2, 13, 11, 64, 0x4D},
|
{ 64, 0x4D},
|
||||||
{ 2, 14, 9, 32, 0x55},
|
{ 32, 0x55},
|
||||||
{ 2, 13, 10, 32, 0x49},
|
{ 32, 0x49},
|
||||||
{ 2, 12, 11, 32, 0x3D},
|
{ 32, 0x3D},
|
||||||
{ 2, 14, 8, 16, 0x51},
|
{ 16, 0x51},
|
||||||
{ 2, 13, 9, 16, 0x45},
|
{ 16, 0x45},
|
||||||
{ 2, 12, 10, 16, 0x39},
|
{ 16, 0x39},
|
||||||
{ 2, 13, 8, 8, 0x41},
|
{ 8, 0x41},
|
||||||
{ 2, 12, 9, 8, 0x35},
|
{ 8, 0x35},
|
||||||
{ 2, 12, 8, 4, 0x31} };
|
{ 4, 0x31} };
|
||||||
|
|
||||||
#define XGIFB_ROM_SIZE 65536
|
#define XGIFB_ROM_SIZE 65536
|
||||||
|
|
||||||
@ -580,15 +580,15 @@ static void XGINew_SetDRAMDefaultRegister340(
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static unsigned short XGINew_SetDRAMSize20Reg(int index,
|
static unsigned short XGINew_SetDRAMSize20Reg(
|
||||||
const unsigned short DRAMTYPE_TABLE[][5],
|
unsigned short dram_size,
|
||||||
struct vb_device_info *pVBInfo)
|
struct vb_device_info *pVBInfo)
|
||||||
{
|
{
|
||||||
unsigned short data = 0, memsize = 0;
|
unsigned short data = 0, memsize = 0;
|
||||||
int RankSize;
|
int RankSize;
|
||||||
unsigned char ChannelNo;
|
unsigned char ChannelNo;
|
||||||
|
|
||||||
RankSize = DRAMTYPE_TABLE[index][3] * pVBInfo->ram_bus / 8;
|
RankSize = dram_size * pVBInfo->ram_bus / 8;
|
||||||
data = xgifb_reg_get(pVBInfo->P3c4, 0x13);
|
data = xgifb_reg_get(pVBInfo->P3c4, 0x13);
|
||||||
data &= 0x80;
|
data &= 0x80;
|
||||||
|
|
||||||
@ -884,7 +884,7 @@ static int XGINew_DDRSizing340(struct xgi_hw_device_info *HwDeviceExtension,
|
|||||||
{
|
{
|
||||||
u8 i, size;
|
u8 i, size;
|
||||||
unsigned short memsize, start_addr;
|
unsigned short memsize, start_addr;
|
||||||
const unsigned short (*dram_table)[5];
|
const unsigned short (*dram_table)[2];
|
||||||
|
|
||||||
xgifb_reg_set(pVBInfo->P3c4, 0x15, 0x00); /* noninterleaving */
|
xgifb_reg_set(pVBInfo->P3c4, 0x15, 0x00); /* noninterleaving */
|
||||||
xgifb_reg_set(pVBInfo->P3c4, 0x1C, 0x00); /* nontiling */
|
xgifb_reg_set(pVBInfo->P3c4, 0x1C, 0x00); /* nontiling */
|
||||||
@ -902,10 +902,10 @@ static int XGINew_DDRSizing340(struct xgi_hw_device_info *HwDeviceExtension,
|
|||||||
|
|
||||||
for (i = 0; i < size; i++) {
|
for (i = 0; i < size; i++) {
|
||||||
/* SetDRAMSizingType */
|
/* SetDRAMSizingType */
|
||||||
xgifb_reg_and_or(pVBInfo->P3c4, 0x13, 0x80, dram_table[i][4]);
|
xgifb_reg_and_or(pVBInfo->P3c4, 0x13, 0x80, dram_table[i][1]);
|
||||||
udelay(15); /* should delay 50 ns */
|
udelay(15); /* should delay 50 ns */
|
||||||
|
|
||||||
memsize = XGINew_SetDRAMSize20Reg(i, dram_table, pVBInfo);
|
memsize = XGINew_SetDRAMSize20Reg(dram_table[i][0], pVBInfo);
|
||||||
|
|
||||||
if (memsize == 0)
|
if (memsize == 0)
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
Reference in New Issue
Block a user