4f5f1b3c0c
Still needs woork to properly enable logging and extra settings. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6983 a95241bf-73f2-0310-859d-f6bbb57e9c96
25 lines
629 B
C
25 lines
629 B
C
/*
|
|
Copyright (c) 2002, Thomas Kurschel
|
|
|
|
|
|
Part of Radeon driver
|
|
|
|
BusMemory Control registers
|
|
*/
|
|
|
|
#ifndef _MEMCNTRL_REGS_H
|
|
#define _MEMCNTRL_REGS_H
|
|
|
|
#define RADEON_AGP_BASE 0x0170
|
|
#define RADEON_MEM_CNTL 0x0140
|
|
|
|
#define RADEON_MC_AGP_LOCATION 0x014c
|
|
#define RADEON_MC_FB_LOCATION 0x0148
|
|
#define RADEON_MEM_INIT_LAT_TIMER 0x0154
|
|
#define RADEON_MEM_SDRAM_MODE_REG 0x0158
|
|
# define RADEON_MEM_CFG_TYPE_MASK (1 << 30)
|
|
# define RADEON_MEM_CFG_SDR (0 << 30)
|
|
# define RADEON_MEM_CFG_DDR (1 << 30)
|
|
|
|
#endif
|