mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 14:41:39 +00:00
drm/ast: Rename struct ast_private to struct ast_device
The data structure struct ast_private represents an AST device. Its name comes from the time when it was allocated and stored separately in struct drm_device.dev_private. The DRM device is now embedded, so rename struct ast_private to struct ast_device. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230221155745.27484-4-tzimmermann@suse.de
This commit is contained in:
parent
faf67f640f
commit
37b42cf904
@ -9,7 +9,7 @@
|
||||
|
||||
int ast_astdp_read_edid(struct drm_device *dev, u8 *ediddata)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
u8 i = 0, j = 0;
|
||||
|
||||
/*
|
||||
@ -125,7 +125,7 @@ void ast_dp_launch(struct drm_device *dev, u8 bPower)
|
||||
u8 bDPTX = 0;
|
||||
u8 bDPExecute = 1;
|
||||
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
// S3 come back, need more time to wait BMC ready.
|
||||
if (bPower)
|
||||
WaitCount = 300;
|
||||
@ -172,7 +172,7 @@ void ast_dp_launch(struct drm_device *dev, u8 bPower)
|
||||
|
||||
void ast_dp_power_on_off(struct drm_device *dev, bool on)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
// Read and Turn off DP PHY sleep
|
||||
u8 bE3 = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xE3, AST_DP_VIDEO_ENABLE);
|
||||
|
||||
@ -188,7 +188,7 @@ void ast_dp_power_on_off(struct drm_device *dev, bool on)
|
||||
|
||||
void ast_dp_set_on_off(struct drm_device *dev, bool on)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
u8 video_on_off = on;
|
||||
|
||||
// Video On/Off
|
||||
@ -208,7 +208,7 @@ void ast_dp_set_on_off(struct drm_device *dev, bool on)
|
||||
|
||||
void ast_dp_set_mode(struct drm_crtc *crtc, struct ast_vbios_mode_info *vbios_mode)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(crtc->dev);
|
||||
struct ast_device *ast = to_ast_private(crtc->dev);
|
||||
|
||||
u32 ulRefreshRateIndex;
|
||||
u8 ModeIdx;
|
||||
|
@ -10,7 +10,7 @@ MODULE_FIRMWARE("ast_dp501_fw.bin");
|
||||
|
||||
static void ast_release_firmware(void *data)
|
||||
{
|
||||
struct ast_private *ast = data;
|
||||
struct ast_device *ast = data;
|
||||
|
||||
release_firmware(ast->dp501_fw);
|
||||
ast->dp501_fw = NULL;
|
||||
@ -18,7 +18,7 @@ static void ast_release_firmware(void *data)
|
||||
|
||||
static int ast_load_dp501_microcode(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
int ret;
|
||||
|
||||
ret = request_firmware(&ast->dp501_fw, "ast_dp501_fw.bin", dev->dev);
|
||||
@ -28,7 +28,7 @@ static int ast_load_dp501_microcode(struct drm_device *dev)
|
||||
return devm_add_action_or_reset(dev->dev, ast_release_firmware, ast);
|
||||
}
|
||||
|
||||
static void send_ack(struct ast_private *ast)
|
||||
static void send_ack(struct ast_device *ast)
|
||||
{
|
||||
u8 sendack;
|
||||
sendack = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, 0xff);
|
||||
@ -36,7 +36,7 @@ static void send_ack(struct ast_private *ast)
|
||||
ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, 0x00, sendack);
|
||||
}
|
||||
|
||||
static void send_nack(struct ast_private *ast)
|
||||
static void send_nack(struct ast_device *ast)
|
||||
{
|
||||
u8 sendack;
|
||||
sendack = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, 0xff);
|
||||
@ -44,7 +44,7 @@ static void send_nack(struct ast_private *ast)
|
||||
ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, 0x00, sendack);
|
||||
}
|
||||
|
||||
static bool wait_ack(struct ast_private *ast)
|
||||
static bool wait_ack(struct ast_device *ast)
|
||||
{
|
||||
u8 waitack;
|
||||
u32 retry = 0;
|
||||
@ -60,7 +60,7 @@ static bool wait_ack(struct ast_private *ast)
|
||||
return false;
|
||||
}
|
||||
|
||||
static bool wait_nack(struct ast_private *ast)
|
||||
static bool wait_nack(struct ast_device *ast)
|
||||
{
|
||||
u8 waitack;
|
||||
u32 retry = 0;
|
||||
@ -76,18 +76,18 @@ static bool wait_nack(struct ast_private *ast)
|
||||
return false;
|
||||
}
|
||||
|
||||
static void set_cmd_trigger(struct ast_private *ast)
|
||||
static void set_cmd_trigger(struct ast_device *ast)
|
||||
{
|
||||
ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, ~0x40, 0x40);
|
||||
}
|
||||
|
||||
static void clear_cmd_trigger(struct ast_private *ast)
|
||||
static void clear_cmd_trigger(struct ast_device *ast)
|
||||
{
|
||||
ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, ~0x40, 0x00);
|
||||
}
|
||||
|
||||
#if 0
|
||||
static bool wait_fw_ready(struct ast_private *ast)
|
||||
static bool wait_fw_ready(struct ast_device *ast)
|
||||
{
|
||||
u8 waitready;
|
||||
u32 retry = 0;
|
||||
@ -106,7 +106,7 @@ static bool wait_fw_ready(struct ast_private *ast)
|
||||
|
||||
static bool ast_write_cmd(struct drm_device *dev, u8 data)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
int retry = 0;
|
||||
if (wait_nack(ast)) {
|
||||
send_nack(ast);
|
||||
@ -128,7 +128,7 @@ static bool ast_write_cmd(struct drm_device *dev, u8 data)
|
||||
|
||||
static bool ast_write_data(struct drm_device *dev, u8 data)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
|
||||
if (wait_nack(ast)) {
|
||||
send_nack(ast);
|
||||
@ -146,7 +146,7 @@ static bool ast_write_data(struct drm_device *dev, u8 data)
|
||||
#if 0
|
||||
static bool ast_read_data(struct drm_device *dev, u8 *data)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
u8 tmp;
|
||||
|
||||
*data = 0;
|
||||
@ -163,7 +163,7 @@ static bool ast_read_data(struct drm_device *dev, u8 *data)
|
||||
return true;
|
||||
}
|
||||
|
||||
static void clear_cmd(struct ast_private *ast)
|
||||
static void clear_cmd(struct ast_device *ast)
|
||||
{
|
||||
send_nack(ast);
|
||||
ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9a, 0x00, 0x00);
|
||||
@ -178,14 +178,14 @@ void ast_set_dp501_video_output(struct drm_device *dev, u8 mode)
|
||||
msleep(10);
|
||||
}
|
||||
|
||||
static u32 get_fw_base(struct ast_private *ast)
|
||||
static u32 get_fw_base(struct ast_device *ast)
|
||||
{
|
||||
return ast_mindwm(ast, 0x1e6e2104) & 0x7fffffff;
|
||||
}
|
||||
|
||||
bool ast_backup_fw(struct drm_device *dev, u8 *addr, u32 size)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
u32 i, data;
|
||||
u32 boot_address;
|
||||
|
||||
@ -204,7 +204,7 @@ bool ast_backup_fw(struct drm_device *dev, u8 *addr, u32 size)
|
||||
|
||||
static bool ast_launch_m68k(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
u32 i, data, len = 0;
|
||||
u32 boot_address;
|
||||
u8 *fw_addr = NULL;
|
||||
@ -274,7 +274,7 @@ static bool ast_launch_m68k(struct drm_device *dev)
|
||||
|
||||
bool ast_dp501_read_edid(struct drm_device *dev, u8 *ediddata)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
u32 i, boot_address, offset, data;
|
||||
u32 *pEDIDidx;
|
||||
|
||||
@ -334,7 +334,7 @@ bool ast_dp501_read_edid(struct drm_device *dev, u8 *ediddata)
|
||||
|
||||
static bool ast_init_dvo(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
u8 jreg;
|
||||
u32 data;
|
||||
ast_write32(ast, 0xf004, 0x1e6e0000);
|
||||
@ -407,7 +407,7 @@ static bool ast_init_dvo(struct drm_device *dev)
|
||||
|
||||
static void ast_init_analog(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
u32 data;
|
||||
|
||||
/*
|
||||
@ -434,7 +434,7 @@ static void ast_init_analog(struct drm_device *dev)
|
||||
|
||||
void ast_init_3rdtx(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
u8 jreg;
|
||||
|
||||
if (ast->chip == AST2300 || ast->chip == AST2400) {
|
||||
|
@ -105,7 +105,7 @@ static int ast_remove_conflicting_framebuffers(struct pci_dev *pdev)
|
||||
|
||||
static int ast_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
{
|
||||
struct ast_private *ast;
|
||||
struct ast_device *ast;
|
||||
struct drm_device *dev;
|
||||
int ret;
|
||||
|
||||
|
@ -157,7 +157,7 @@ to_ast_sil164_connector(struct drm_connector *connector)
|
||||
* Device
|
||||
*/
|
||||
|
||||
struct ast_private {
|
||||
struct ast_device {
|
||||
struct drm_device base;
|
||||
|
||||
struct mutex ioregs_lock; /* Protects access to I/O registers in ioregs */
|
||||
@ -210,14 +210,14 @@ struct ast_private {
|
||||
const struct firmware *dp501_fw; /* dp501 fw */
|
||||
};
|
||||
|
||||
static inline struct ast_private *to_ast_private(struct drm_device *dev)
|
||||
static inline struct ast_device *to_ast_private(struct drm_device *dev)
|
||||
{
|
||||
return container_of(dev, struct ast_private, base);
|
||||
return container_of(dev, struct ast_device, base);
|
||||
}
|
||||
|
||||
struct ast_private *ast_device_create(const struct drm_driver *drv,
|
||||
struct pci_dev *pdev,
|
||||
unsigned long flags);
|
||||
struct ast_device *ast_device_create(const struct drm_driver *drv,
|
||||
struct pci_dev *pdev,
|
||||
unsigned long flags);
|
||||
|
||||
#define AST_IO_AR_PORT_WRITE (0x40)
|
||||
#define AST_IO_MISC_PORT_WRITE (0x42)
|
||||
@ -238,27 +238,27 @@ struct ast_private *ast_device_create(const struct drm_driver *drv,
|
||||
#define AST_IO_VGACRCB_HWC_ENABLED BIT(1)
|
||||
#define AST_IO_VGACRCB_HWC_16BPP BIT(0) /* set: ARGB4444, cleared: 2bpp palette */
|
||||
|
||||
static inline u32 ast_read32(struct ast_private *ast, u32 reg)
|
||||
static inline u32 ast_read32(struct ast_device *ast, u32 reg)
|
||||
{
|
||||
return ioread32(ast->regs + reg);
|
||||
}
|
||||
|
||||
static inline void ast_write32(struct ast_private *ast, u32 reg, u32 val)
|
||||
static inline void ast_write32(struct ast_device *ast, u32 reg, u32 val)
|
||||
{
|
||||
iowrite32(val, ast->regs + reg);
|
||||
}
|
||||
|
||||
static inline u8 ast_io_read8(struct ast_private *ast, u32 reg)
|
||||
static inline u8 ast_io_read8(struct ast_device *ast, u32 reg)
|
||||
{
|
||||
return ioread8(ast->ioregs + reg);
|
||||
}
|
||||
|
||||
static inline void ast_io_write8(struct ast_private *ast, u32 reg, u8 val)
|
||||
static inline void ast_io_write8(struct ast_device *ast, u32 reg, u8 val)
|
||||
{
|
||||
iowrite8(val, ast->ioregs + reg);
|
||||
}
|
||||
|
||||
static inline void ast_set_index_reg(struct ast_private *ast,
|
||||
static inline void ast_set_index_reg(struct ast_device *ast,
|
||||
uint32_t base, uint8_t index,
|
||||
uint8_t val)
|
||||
{
|
||||
@ -267,15 +267,15 @@ static inline void ast_set_index_reg(struct ast_private *ast,
|
||||
ast_io_write8(ast, base, val);
|
||||
}
|
||||
|
||||
void ast_set_index_reg_mask(struct ast_private *ast,
|
||||
void ast_set_index_reg_mask(struct ast_device *ast,
|
||||
uint32_t base, uint8_t index,
|
||||
uint8_t mask, uint8_t val);
|
||||
uint8_t ast_get_index_reg(struct ast_private *ast,
|
||||
uint8_t ast_get_index_reg(struct ast_device *ast,
|
||||
uint32_t base, uint8_t index);
|
||||
uint8_t ast_get_index_reg_mask(struct ast_private *ast,
|
||||
uint8_t ast_get_index_reg_mask(struct ast_device *ast,
|
||||
uint32_t base, uint8_t index, uint8_t mask);
|
||||
|
||||
static inline void ast_open_key(struct ast_private *ast)
|
||||
static inline void ast_open_key(struct ast_device *ast)
|
||||
{
|
||||
ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x80, 0xA8);
|
||||
}
|
||||
@ -334,7 +334,7 @@ struct ast_crtc_state {
|
||||
|
||||
#define to_ast_crtc_state(state) container_of(state, struct ast_crtc_state, base)
|
||||
|
||||
int ast_mode_config_init(struct ast_private *ast);
|
||||
int ast_mode_config_init(struct ast_device *ast);
|
||||
|
||||
#define AST_MM_ALIGN_SHIFT 4
|
||||
#define AST_MM_ALIGN_MASK ((1 << AST_MM_ALIGN_SHIFT) - 1)
|
||||
@ -458,16 +458,16 @@ int ast_mode_config_init(struct ast_private *ast);
|
||||
#define ASTDP_1366x768_60 0x1E
|
||||
#define ASTDP_1152x864_75 0x1F
|
||||
|
||||
int ast_mm_init(struct ast_private *ast);
|
||||
int ast_mm_init(struct ast_device *ast);
|
||||
|
||||
/* ast post */
|
||||
void ast_enable_vga(struct drm_device *dev);
|
||||
void ast_enable_mmio(struct drm_device *dev);
|
||||
bool ast_is_vga_enabled(struct drm_device *dev);
|
||||
void ast_post_gpu(struct drm_device *dev);
|
||||
u32 ast_mindwm(struct ast_private *ast, u32 r);
|
||||
void ast_moutdwm(struct ast_private *ast, u32 r, u32 v);
|
||||
void ast_patch_ahb_2500(struct ast_private *ast);
|
||||
u32 ast_mindwm(struct ast_device *ast, u32 r);
|
||||
void ast_moutdwm(struct ast_device *ast, u32 r, u32 v);
|
||||
void ast_patch_ahb_2500(struct ast_device *ast);
|
||||
/* ast dp501 */
|
||||
void ast_set_dp501_video_output(struct drm_device *dev, u8 mode);
|
||||
bool ast_backup_fw(struct drm_device *dev, u8 *addr, u32 size);
|
||||
|
@ -29,7 +29,7 @@
|
||||
static void ast_i2c_setsda(void *i2c_priv, int data)
|
||||
{
|
||||
struct ast_i2c_chan *i2c = i2c_priv;
|
||||
struct ast_private *ast = to_ast_private(i2c->dev);
|
||||
struct ast_device *ast = to_ast_private(i2c->dev);
|
||||
int i;
|
||||
u8 ujcrb7, jtemp;
|
||||
|
||||
@ -45,7 +45,7 @@ static void ast_i2c_setsda(void *i2c_priv, int data)
|
||||
static void ast_i2c_setscl(void *i2c_priv, int clock)
|
||||
{
|
||||
struct ast_i2c_chan *i2c = i2c_priv;
|
||||
struct ast_private *ast = to_ast_private(i2c->dev);
|
||||
struct ast_device *ast = to_ast_private(i2c->dev);
|
||||
int i;
|
||||
u8 ujcrb7, jtemp;
|
||||
|
||||
@ -61,7 +61,7 @@ static void ast_i2c_setscl(void *i2c_priv, int clock)
|
||||
static int ast_i2c_getsda(void *i2c_priv)
|
||||
{
|
||||
struct ast_i2c_chan *i2c = i2c_priv;
|
||||
struct ast_private *ast = to_ast_private(i2c->dev);
|
||||
struct ast_device *ast = to_ast_private(i2c->dev);
|
||||
uint32_t val, val2, count, pass;
|
||||
|
||||
count = 0;
|
||||
@ -83,7 +83,7 @@ static int ast_i2c_getsda(void *i2c_priv)
|
||||
static int ast_i2c_getscl(void *i2c_priv)
|
||||
{
|
||||
struct ast_i2c_chan *i2c = i2c_priv;
|
||||
struct ast_private *ast = to_ast_private(i2c->dev);
|
||||
struct ast_device *ast = to_ast_private(i2c->dev);
|
||||
uint32_t val, val2, count, pass;
|
||||
|
||||
count = 0;
|
||||
|
@ -35,7 +35,7 @@
|
||||
|
||||
#include "ast_drv.h"
|
||||
|
||||
void ast_set_index_reg_mask(struct ast_private *ast,
|
||||
void ast_set_index_reg_mask(struct ast_device *ast,
|
||||
uint32_t base, uint8_t index,
|
||||
uint8_t mask, uint8_t val)
|
||||
{
|
||||
@ -45,7 +45,7 @@ void ast_set_index_reg_mask(struct ast_private *ast,
|
||||
ast_set_index_reg(ast, base, index, tmp);
|
||||
}
|
||||
|
||||
uint8_t ast_get_index_reg(struct ast_private *ast,
|
||||
uint8_t ast_get_index_reg(struct ast_device *ast,
|
||||
uint32_t base, uint8_t index)
|
||||
{
|
||||
uint8_t ret;
|
||||
@ -54,7 +54,7 @@ uint8_t ast_get_index_reg(struct ast_private *ast,
|
||||
return ret;
|
||||
}
|
||||
|
||||
uint8_t ast_get_index_reg_mask(struct ast_private *ast,
|
||||
uint8_t ast_get_index_reg_mask(struct ast_device *ast,
|
||||
uint32_t base, uint8_t index, uint8_t mask)
|
||||
{
|
||||
uint8_t ret;
|
||||
@ -66,7 +66,7 @@ uint8_t ast_get_index_reg_mask(struct ast_private *ast,
|
||||
static void ast_detect_config_mode(struct drm_device *dev, u32 *scu_rev)
|
||||
{
|
||||
struct device_node *np = dev->dev->of_node;
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
struct pci_dev *pdev = to_pci_dev(dev->dev);
|
||||
uint32_t data, jregd0, jregd1;
|
||||
|
||||
@ -122,7 +122,7 @@ static void ast_detect_config_mode(struct drm_device *dev, u32 *scu_rev)
|
||||
|
||||
static int ast_detect_chip(struct drm_device *dev, bool *need_post)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
struct pci_dev *pdev = to_pci_dev(dev->dev);
|
||||
uint32_t jreg, scu_rev;
|
||||
|
||||
@ -271,7 +271,7 @@ static int ast_detect_chip(struct drm_device *dev, bool *need_post)
|
||||
static int ast_get_dram_info(struct drm_device *dev)
|
||||
{
|
||||
struct device_node *np = dev->dev->of_node;
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
uint32_t mcr_cfg, mcr_scu_mpll, mcr_scu_strap;
|
||||
uint32_t denum, num, div, ref_pll, dsel;
|
||||
|
||||
@ -394,22 +394,22 @@ static int ast_get_dram_info(struct drm_device *dev)
|
||||
*/
|
||||
static void ast_device_release(void *data)
|
||||
{
|
||||
struct ast_private *ast = data;
|
||||
struct ast_device *ast = data;
|
||||
|
||||
/* enable standard VGA decode */
|
||||
ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xa1, 0x04);
|
||||
}
|
||||
|
||||
struct ast_private *ast_device_create(const struct drm_driver *drv,
|
||||
struct pci_dev *pdev,
|
||||
unsigned long flags)
|
||||
struct ast_device *ast_device_create(const struct drm_driver *drv,
|
||||
struct pci_dev *pdev,
|
||||
unsigned long flags)
|
||||
{
|
||||
struct drm_device *dev;
|
||||
struct ast_private *ast;
|
||||
struct ast_device *ast;
|
||||
bool need_post;
|
||||
int ret = 0;
|
||||
|
||||
ast = devm_drm_dev_alloc(&pdev->dev, drv, struct ast_private, base);
|
||||
ast = devm_drm_dev_alloc(&pdev->dev, drv, struct ast_device, base);
|
||||
if (IS_ERR(ast))
|
||||
return ast;
|
||||
dev = &ast->base;
|
||||
|
@ -33,7 +33,7 @@
|
||||
|
||||
#include "ast_drv.h"
|
||||
|
||||
static u32 ast_get_vram_size(struct ast_private *ast)
|
||||
static u32 ast_get_vram_size(struct ast_device *ast)
|
||||
{
|
||||
u8 jreg;
|
||||
u32 vram_size;
|
||||
@ -73,7 +73,7 @@ static u32 ast_get_vram_size(struct ast_private *ast)
|
||||
return vram_size;
|
||||
}
|
||||
|
||||
int ast_mm_init(struct ast_private *ast)
|
||||
int ast_mm_init(struct ast_device *ast)
|
||||
{
|
||||
struct drm_device *dev = &ast->base;
|
||||
struct pci_dev *pdev = to_pci_dev(dev->dev);
|
||||
|
@ -51,7 +51,7 @@
|
||||
|
||||
#define AST_LUT_SIZE 256
|
||||
|
||||
static inline void ast_load_palette_index(struct ast_private *ast,
|
||||
static inline void ast_load_palette_index(struct ast_device *ast,
|
||||
u8 index, u8 red, u8 green,
|
||||
u8 blue)
|
||||
{
|
||||
@ -65,7 +65,7 @@ static inline void ast_load_palette_index(struct ast_private *ast,
|
||||
ast_io_read8(ast, AST_IO_SEQ_PORT);
|
||||
}
|
||||
|
||||
static void ast_crtc_set_gamma_linear(struct ast_private *ast,
|
||||
static void ast_crtc_set_gamma_linear(struct ast_device *ast,
|
||||
const struct drm_format_info *format)
|
||||
{
|
||||
int i;
|
||||
@ -84,7 +84,7 @@ static void ast_crtc_set_gamma_linear(struct ast_private *ast,
|
||||
}
|
||||
}
|
||||
|
||||
static void ast_crtc_set_gamma(struct ast_private *ast,
|
||||
static void ast_crtc_set_gamma(struct ast_device *ast,
|
||||
const struct drm_format_info *format,
|
||||
struct drm_color_lut *lut)
|
||||
{
|
||||
@ -232,7 +232,7 @@ static bool ast_get_vbios_mode_info(const struct drm_format_info *format,
|
||||
return true;
|
||||
}
|
||||
|
||||
static void ast_set_vbios_color_reg(struct ast_private *ast,
|
||||
static void ast_set_vbios_color_reg(struct ast_device *ast,
|
||||
const struct drm_format_info *format,
|
||||
const struct ast_vbios_mode_info *vbios_mode)
|
||||
{
|
||||
@ -263,7 +263,7 @@ static void ast_set_vbios_color_reg(struct ast_private *ast,
|
||||
}
|
||||
}
|
||||
|
||||
static void ast_set_vbios_mode_reg(struct ast_private *ast,
|
||||
static void ast_set_vbios_mode_reg(struct ast_device *ast,
|
||||
const struct drm_display_mode *adjusted_mode,
|
||||
const struct ast_vbios_mode_info *vbios_mode)
|
||||
{
|
||||
@ -287,7 +287,7 @@ static void ast_set_vbios_mode_reg(struct ast_private *ast,
|
||||
}
|
||||
}
|
||||
|
||||
static void ast_set_std_reg(struct ast_private *ast,
|
||||
static void ast_set_std_reg(struct ast_device *ast,
|
||||
struct drm_display_mode *mode,
|
||||
struct ast_vbios_mode_info *vbios_mode)
|
||||
{
|
||||
@ -335,7 +335,7 @@ static void ast_set_std_reg(struct ast_private *ast,
|
||||
ast_set_index_reg(ast, AST_IO_GR_PORT, i, stdtable->gr[i]);
|
||||
}
|
||||
|
||||
static void ast_set_crtc_reg(struct ast_private *ast,
|
||||
static void ast_set_crtc_reg(struct ast_device *ast,
|
||||
struct drm_display_mode *mode,
|
||||
struct ast_vbios_mode_info *vbios_mode)
|
||||
{
|
||||
@ -450,7 +450,7 @@ static void ast_set_crtc_reg(struct ast_private *ast,
|
||||
ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x11, 0x7f, 0x80);
|
||||
}
|
||||
|
||||
static void ast_set_offset_reg(struct ast_private *ast,
|
||||
static void ast_set_offset_reg(struct ast_device *ast,
|
||||
struct drm_framebuffer *fb)
|
||||
{
|
||||
u16 offset;
|
||||
@ -460,7 +460,7 @@ static void ast_set_offset_reg(struct ast_private *ast,
|
||||
ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xb0, (offset >> 8) & 0x3f);
|
||||
}
|
||||
|
||||
static void ast_set_dclk_reg(struct ast_private *ast,
|
||||
static void ast_set_dclk_reg(struct ast_device *ast,
|
||||
struct drm_display_mode *mode,
|
||||
struct ast_vbios_mode_info *vbios_mode)
|
||||
{
|
||||
@ -478,7 +478,7 @@ static void ast_set_dclk_reg(struct ast_private *ast,
|
||||
((clk_info->param3 & 0x3) << 4));
|
||||
}
|
||||
|
||||
static void ast_set_color_reg(struct ast_private *ast,
|
||||
static void ast_set_color_reg(struct ast_device *ast,
|
||||
const struct drm_format_info *format)
|
||||
{
|
||||
u8 jregA0 = 0, jregA3 = 0, jregA8 = 0;
|
||||
@ -507,7 +507,7 @@ static void ast_set_color_reg(struct ast_private *ast,
|
||||
ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xa8, 0xfd, jregA8);
|
||||
}
|
||||
|
||||
static void ast_set_crtthd_reg(struct ast_private *ast)
|
||||
static void ast_set_crtthd_reg(struct ast_device *ast)
|
||||
{
|
||||
/* Set Threshold */
|
||||
if (ast->chip == AST2600) {
|
||||
@ -529,7 +529,7 @@ static void ast_set_crtthd_reg(struct ast_private *ast)
|
||||
}
|
||||
}
|
||||
|
||||
static void ast_set_sync_reg(struct ast_private *ast,
|
||||
static void ast_set_sync_reg(struct ast_device *ast,
|
||||
struct drm_display_mode *mode,
|
||||
struct ast_vbios_mode_info *vbios_mode)
|
||||
{
|
||||
@ -544,7 +544,7 @@ static void ast_set_sync_reg(struct ast_private *ast,
|
||||
ast_io_write8(ast, AST_IO_MISC_PORT_WRITE, jreg);
|
||||
}
|
||||
|
||||
static void ast_set_start_address_crt1(struct ast_private *ast,
|
||||
static void ast_set_start_address_crt1(struct ast_device *ast,
|
||||
unsigned int offset)
|
||||
{
|
||||
u32 addr;
|
||||
@ -556,7 +556,7 @@ static void ast_set_start_address_crt1(struct ast_private *ast,
|
||||
|
||||
}
|
||||
|
||||
static void ast_wait_for_vretrace(struct ast_private *ast)
|
||||
static void ast_wait_for_vretrace(struct ast_device *ast)
|
||||
{
|
||||
unsigned long timeout = jiffies + HZ;
|
||||
u8 vgair1;
|
||||
@ -645,7 +645,7 @@ static void ast_primary_plane_helper_atomic_update(struct drm_plane *plane,
|
||||
struct drm_atomic_state *state)
|
||||
{
|
||||
struct drm_device *dev = plane->dev;
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
struct drm_plane_state *plane_state = drm_atomic_get_new_plane_state(state, plane);
|
||||
struct drm_shadow_plane_state *shadow_plane_state = to_drm_shadow_plane_state(plane_state);
|
||||
struct drm_framebuffer *fb = plane_state->fb;
|
||||
@ -683,7 +683,7 @@ static void ast_primary_plane_helper_atomic_update(struct drm_plane *plane,
|
||||
static void ast_primary_plane_helper_atomic_enable(struct drm_plane *plane,
|
||||
struct drm_atomic_state *state)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(plane->dev);
|
||||
struct ast_device *ast = to_ast_private(plane->dev);
|
||||
struct ast_plane *ast_plane = to_ast_plane(plane);
|
||||
|
||||
/*
|
||||
@ -699,7 +699,7 @@ static void ast_primary_plane_helper_atomic_enable(struct drm_plane *plane,
|
||||
static void ast_primary_plane_helper_atomic_disable(struct drm_plane *plane,
|
||||
struct drm_atomic_state *state)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(plane->dev);
|
||||
struct ast_device *ast = to_ast_private(plane->dev);
|
||||
|
||||
ast_set_index_reg_mask(ast, AST_IO_SEQ_PORT, 0x1, 0xdf, 0x20);
|
||||
}
|
||||
@ -719,7 +719,7 @@ static const struct drm_plane_funcs ast_primary_plane_funcs = {
|
||||
DRM_GEM_SHADOW_PLANE_FUNCS,
|
||||
};
|
||||
|
||||
static int ast_primary_plane_init(struct ast_private *ast)
|
||||
static int ast_primary_plane_init(struct ast_device *ast)
|
||||
{
|
||||
struct drm_device *dev = &ast->base;
|
||||
struct ast_plane *ast_primary_plane = &ast->primary_plane;
|
||||
@ -812,7 +812,7 @@ static void ast_update_cursor_image(u8 __iomem *dst, const u8 *src, int width, i
|
||||
writel(0, dst + AST_HWC_SIGNATURE_HOTSPOTY);
|
||||
}
|
||||
|
||||
static void ast_set_cursor_base(struct ast_private *ast, u64 address)
|
||||
static void ast_set_cursor_base(struct ast_device *ast, u64 address)
|
||||
{
|
||||
u8 addr0 = (address >> 3) & 0xff;
|
||||
u8 addr1 = (address >> 11) & 0xff;
|
||||
@ -823,7 +823,7 @@ static void ast_set_cursor_base(struct ast_private *ast, u64 address)
|
||||
ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xca, addr2);
|
||||
}
|
||||
|
||||
static void ast_set_cursor_location(struct ast_private *ast, u16 x, u16 y,
|
||||
static void ast_set_cursor_location(struct ast_device *ast, u16 x, u16 y,
|
||||
u8 x_offset, u8 y_offset)
|
||||
{
|
||||
u8 x0 = (x & 0x00ff);
|
||||
@ -839,7 +839,7 @@ static void ast_set_cursor_location(struct ast_private *ast, u16 x, u16 y,
|
||||
ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xc7, y1);
|
||||
}
|
||||
|
||||
static void ast_set_cursor_enabled(struct ast_private *ast, bool enabled)
|
||||
static void ast_set_cursor_enabled(struct ast_device *ast, bool enabled)
|
||||
{
|
||||
static const u8 mask = (u8)~(AST_IO_VGACRCB_HWC_16BPP |
|
||||
AST_IO_VGACRCB_HWC_ENABLED);
|
||||
@ -888,7 +888,7 @@ static void ast_cursor_plane_helper_atomic_update(struct drm_plane *plane,
|
||||
struct drm_shadow_plane_state *shadow_plane_state = to_drm_shadow_plane_state(plane_state);
|
||||
struct drm_framebuffer *fb = plane_state->fb;
|
||||
struct drm_plane_state *old_plane_state = drm_atomic_get_old_plane_state(state, plane);
|
||||
struct ast_private *ast = to_ast_private(plane->dev);
|
||||
struct ast_device *ast = to_ast_private(plane->dev);
|
||||
struct iosys_map src_map = shadow_plane_state->data[0];
|
||||
struct drm_rect damage;
|
||||
const u8 *src = src_map.vaddr; /* TODO: Use mapping abstraction properly */
|
||||
@ -943,7 +943,7 @@ static void ast_cursor_plane_helper_atomic_update(struct drm_plane *plane,
|
||||
static void ast_cursor_plane_helper_atomic_disable(struct drm_plane *plane,
|
||||
struct drm_atomic_state *state)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(plane->dev);
|
||||
struct ast_device *ast = to_ast_private(plane->dev);
|
||||
|
||||
ast_set_cursor_enabled(ast, false);
|
||||
}
|
||||
@ -962,7 +962,7 @@ static const struct drm_plane_funcs ast_cursor_plane_funcs = {
|
||||
DRM_GEM_SHADOW_PLANE_FUNCS,
|
||||
};
|
||||
|
||||
static int ast_cursor_plane_init(struct ast_private *ast)
|
||||
static int ast_cursor_plane_init(struct ast_device *ast)
|
||||
{
|
||||
struct drm_device *dev = &ast->base;
|
||||
struct ast_plane *ast_cursor_plane = &ast->cursor_plane;
|
||||
@ -1007,7 +1007,7 @@ static int ast_cursor_plane_init(struct ast_private *ast)
|
||||
|
||||
static void ast_crtc_dpms(struct drm_crtc *crtc, int mode)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(crtc->dev);
|
||||
struct ast_device *ast = to_ast_private(crtc->dev);
|
||||
u8 ch = AST_DPMS_VSYNC_OFF | AST_DPMS_HSYNC_OFF;
|
||||
struct ast_crtc_state *ast_state;
|
||||
const struct drm_format_info *format;
|
||||
@ -1064,7 +1064,7 @@ static void ast_crtc_dpms(struct drm_crtc *crtc, int mode)
|
||||
static enum drm_mode_status
|
||||
ast_crtc_helper_mode_valid(struct drm_crtc *crtc, const struct drm_display_mode *mode)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(crtc->dev);
|
||||
struct ast_device *ast = to_ast_private(crtc->dev);
|
||||
enum drm_mode_status status;
|
||||
uint32_t jtemp;
|
||||
|
||||
@ -1189,7 +1189,7 @@ ast_crtc_helper_atomic_flush(struct drm_crtc *crtc,
|
||||
struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state,
|
||||
crtc);
|
||||
struct drm_device *dev = crtc->dev;
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
struct ast_crtc_state *ast_crtc_state = to_ast_crtc_state(crtc_state);
|
||||
struct ast_vbios_mode_info *vbios_mode_info = &ast_crtc_state->vbios_mode_info;
|
||||
|
||||
@ -1214,7 +1214,7 @@ ast_crtc_helper_atomic_flush(struct drm_crtc *crtc,
|
||||
static void ast_crtc_helper_atomic_enable(struct drm_crtc *crtc, struct drm_atomic_state *state)
|
||||
{
|
||||
struct drm_device *dev = crtc->dev;
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
|
||||
struct ast_crtc_state *ast_crtc_state = to_ast_crtc_state(crtc_state);
|
||||
struct ast_vbios_mode_info *vbios_mode_info =
|
||||
@ -1236,7 +1236,7 @@ static void ast_crtc_helper_atomic_disable(struct drm_crtc *crtc, struct drm_ato
|
||||
{
|
||||
struct drm_crtc_state *old_crtc_state = drm_atomic_get_old_crtc_state(state, crtc);
|
||||
struct drm_device *dev = crtc->dev;
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
|
||||
ast_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
|
||||
|
||||
@ -1324,7 +1324,7 @@ static const struct drm_crtc_funcs ast_crtc_funcs = {
|
||||
|
||||
static int ast_crtc_init(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
struct drm_crtc *crtc = &ast->crtc;
|
||||
int ret;
|
||||
|
||||
@ -1350,7 +1350,7 @@ static int ast_vga_connector_helper_get_modes(struct drm_connector *connector)
|
||||
{
|
||||
struct ast_vga_connector *ast_vga_connector = to_ast_vga_connector(connector);
|
||||
struct drm_device *dev = connector->dev;
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
struct edid *edid;
|
||||
int count;
|
||||
|
||||
@ -1423,7 +1423,7 @@ static int ast_vga_connector_init(struct drm_device *dev,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ast_vga_output_init(struct ast_private *ast)
|
||||
static int ast_vga_output_init(struct ast_device *ast)
|
||||
{
|
||||
struct drm_device *dev = &ast->base;
|
||||
struct drm_crtc *crtc = &ast->crtc;
|
||||
@ -1456,7 +1456,7 @@ static int ast_sil164_connector_helper_get_modes(struct drm_connector *connector
|
||||
{
|
||||
struct ast_sil164_connector *ast_sil164_connector = to_ast_sil164_connector(connector);
|
||||
struct drm_device *dev = connector->dev;
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
struct edid *edid;
|
||||
int count;
|
||||
|
||||
@ -1529,7 +1529,7 @@ static int ast_sil164_connector_init(struct drm_device *dev,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ast_sil164_output_init(struct ast_private *ast)
|
||||
static int ast_sil164_output_init(struct ast_device *ast)
|
||||
{
|
||||
struct drm_device *dev = &ast->base;
|
||||
struct drm_crtc *crtc = &ast->crtc;
|
||||
@ -1616,7 +1616,7 @@ static int ast_dp501_connector_init(struct drm_device *dev, struct drm_connector
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ast_dp501_output_init(struct ast_private *ast)
|
||||
static int ast_dp501_output_init(struct ast_device *ast)
|
||||
{
|
||||
struct drm_device *dev = &ast->base;
|
||||
struct drm_crtc *crtc = &ast->crtc;
|
||||
@ -1703,7 +1703,7 @@ static int ast_astdp_connector_init(struct drm_device *dev, struct drm_connector
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ast_astdp_output_init(struct ast_private *ast)
|
||||
static int ast_astdp_output_init(struct ast_device *ast)
|
||||
{
|
||||
struct drm_device *dev = &ast->base;
|
||||
struct drm_crtc *crtc = &ast->crtc;
|
||||
@ -1733,7 +1733,7 @@ static int ast_astdp_output_init(struct ast_private *ast)
|
||||
|
||||
static void ast_mode_config_helper_atomic_commit_tail(struct drm_atomic_state *state)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(state->dev);
|
||||
struct ast_device *ast = to_ast_private(state->dev);
|
||||
|
||||
/*
|
||||
* Concurrent operations could possibly trigger a call to
|
||||
@ -1754,7 +1754,7 @@ static enum drm_mode_status ast_mode_config_mode_valid(struct drm_device *dev,
|
||||
const struct drm_display_mode *mode)
|
||||
{
|
||||
static const unsigned long max_bpp = 4; /* DRM_FORMAT_XRGB8888 */
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
unsigned long fbsize, fbpages, max_fbpages;
|
||||
|
||||
max_fbpages = (ast->vram_fb_available) >> PAGE_SHIFT;
|
||||
@ -1775,7 +1775,7 @@ static const struct drm_mode_config_funcs ast_mode_config_funcs = {
|
||||
.atomic_commit = drm_atomic_helper_commit,
|
||||
};
|
||||
|
||||
int ast_mode_config_init(struct ast_private *ast)
|
||||
int ast_mode_config_init(struct ast_device *ast)
|
||||
{
|
||||
struct drm_device *dev = &ast->base;
|
||||
int ret;
|
||||
|
@ -39,7 +39,7 @@ static void ast_post_chip_2500(struct drm_device *dev);
|
||||
|
||||
void ast_enable_vga(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
|
||||
ast_io_write8(ast, AST_IO_VGA_ENABLE_PORT, 0x01);
|
||||
ast_io_write8(ast, AST_IO_MISC_PORT_WRITE, 0x01);
|
||||
@ -47,7 +47,7 @@ void ast_enable_vga(struct drm_device *dev)
|
||||
|
||||
void ast_enable_mmio(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
|
||||
ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xa1, 0x06);
|
||||
}
|
||||
@ -55,7 +55,7 @@ void ast_enable_mmio(struct drm_device *dev)
|
||||
|
||||
bool ast_is_vga_enabled(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
u8 ch;
|
||||
|
||||
ch = ast_io_read8(ast, AST_IO_VGA_ENABLE_PORT);
|
||||
@ -70,7 +70,7 @@ static const u8 extreginfo_ast2300[] = { 0x0f, 0x04, 0x1f, 0xff };
|
||||
static void
|
||||
ast_set_def_ext_reg(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
struct pci_dev *pdev = to_pci_dev(dev->dev);
|
||||
u8 i, index, reg;
|
||||
const u8 *ext_reg_info;
|
||||
@ -110,7 +110,7 @@ ast_set_def_ext_reg(struct drm_device *dev)
|
||||
ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xb6, 0xff, reg);
|
||||
}
|
||||
|
||||
u32 ast_mindwm(struct ast_private *ast, u32 r)
|
||||
u32 ast_mindwm(struct ast_device *ast, u32 r)
|
||||
{
|
||||
uint32_t data;
|
||||
|
||||
@ -123,7 +123,7 @@ u32 ast_mindwm(struct ast_private *ast, u32 r)
|
||||
return ast_read32(ast, 0x10000 + (r & 0x0000ffff));
|
||||
}
|
||||
|
||||
void ast_moutdwm(struct ast_private *ast, u32 r, u32 v)
|
||||
void ast_moutdwm(struct ast_device *ast, u32 r, u32 v)
|
||||
{
|
||||
uint32_t data;
|
||||
ast_write32(ast, 0xf004, r & 0xffff0000);
|
||||
@ -162,7 +162,7 @@ static const u32 pattern_AST2150[14] = {
|
||||
0x20F050E0
|
||||
};
|
||||
|
||||
static u32 mmctestburst2_ast2150(struct ast_private *ast, u32 datagen)
|
||||
static u32 mmctestburst2_ast2150(struct ast_device *ast, u32 datagen)
|
||||
{
|
||||
u32 data, timeout;
|
||||
|
||||
@ -192,7 +192,7 @@ static u32 mmctestburst2_ast2150(struct ast_private *ast, u32 datagen)
|
||||
}
|
||||
|
||||
#if 0 /* unused in DDX driver - here for completeness */
|
||||
static u32 mmctestsingle2_ast2150(struct ast_private *ast, u32 datagen)
|
||||
static u32 mmctestsingle2_ast2150(struct ast_device *ast, u32 datagen)
|
||||
{
|
||||
u32 data, timeout;
|
||||
|
||||
@ -212,7 +212,7 @@ static u32 mmctestsingle2_ast2150(struct ast_private *ast, u32 datagen)
|
||||
}
|
||||
#endif
|
||||
|
||||
static int cbrtest_ast2150(struct ast_private *ast)
|
||||
static int cbrtest_ast2150(struct ast_device *ast)
|
||||
{
|
||||
int i;
|
||||
|
||||
@ -222,7 +222,7 @@ static int cbrtest_ast2150(struct ast_private *ast)
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int cbrscan_ast2150(struct ast_private *ast, int busw)
|
||||
static int cbrscan_ast2150(struct ast_device *ast, int busw)
|
||||
{
|
||||
u32 patcnt, loop;
|
||||
|
||||
@ -239,7 +239,7 @@ static int cbrscan_ast2150(struct ast_private *ast, int busw)
|
||||
}
|
||||
|
||||
|
||||
static void cbrdlli_ast2150(struct ast_private *ast, int busw)
|
||||
static void cbrdlli_ast2150(struct ast_device *ast, int busw)
|
||||
{
|
||||
u32 dll_min[4], dll_max[4], dlli, data, passcnt;
|
||||
|
||||
@ -273,7 +273,7 @@ cbr_start:
|
||||
|
||||
static void ast_init_dram_reg(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
u8 j;
|
||||
u32 data, temp, i;
|
||||
const struct ast_dramstruct *dram_reg_info;
|
||||
@ -366,7 +366,7 @@ static void ast_init_dram_reg(struct drm_device *dev)
|
||||
|
||||
void ast_post_gpu(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
struct pci_dev *pdev = to_pci_dev(dev->dev);
|
||||
u32 reg;
|
||||
|
||||
@ -449,7 +449,7 @@ static const u32 pattern[8] = {
|
||||
0x7C61D253
|
||||
};
|
||||
|
||||
static bool mmc_test(struct ast_private *ast, u32 datagen, u8 test_ctl)
|
||||
static bool mmc_test(struct ast_device *ast, u32 datagen, u8 test_ctl)
|
||||
{
|
||||
u32 data, timeout;
|
||||
|
||||
@ -469,7 +469,7 @@ static bool mmc_test(struct ast_private *ast, u32 datagen, u8 test_ctl)
|
||||
return true;
|
||||
}
|
||||
|
||||
static u32 mmc_test2(struct ast_private *ast, u32 datagen, u8 test_ctl)
|
||||
static u32 mmc_test2(struct ast_device *ast, u32 datagen, u8 test_ctl)
|
||||
{
|
||||
u32 data, timeout;
|
||||
|
||||
@ -490,32 +490,32 @@ static u32 mmc_test2(struct ast_private *ast, u32 datagen, u8 test_ctl)
|
||||
}
|
||||
|
||||
|
||||
static bool mmc_test_burst(struct ast_private *ast, u32 datagen)
|
||||
static bool mmc_test_burst(struct ast_device *ast, u32 datagen)
|
||||
{
|
||||
return mmc_test(ast, datagen, 0xc1);
|
||||
}
|
||||
|
||||
static u32 mmc_test_burst2(struct ast_private *ast, u32 datagen)
|
||||
static u32 mmc_test_burst2(struct ast_device *ast, u32 datagen)
|
||||
{
|
||||
return mmc_test2(ast, datagen, 0x41);
|
||||
}
|
||||
|
||||
static bool mmc_test_single(struct ast_private *ast, u32 datagen)
|
||||
static bool mmc_test_single(struct ast_device *ast, u32 datagen)
|
||||
{
|
||||
return mmc_test(ast, datagen, 0xc5);
|
||||
}
|
||||
|
||||
static u32 mmc_test_single2(struct ast_private *ast, u32 datagen)
|
||||
static u32 mmc_test_single2(struct ast_device *ast, u32 datagen)
|
||||
{
|
||||
return mmc_test2(ast, datagen, 0x05);
|
||||
}
|
||||
|
||||
static bool mmc_test_single_2500(struct ast_private *ast, u32 datagen)
|
||||
static bool mmc_test_single_2500(struct ast_device *ast, u32 datagen)
|
||||
{
|
||||
return mmc_test(ast, datagen, 0x85);
|
||||
}
|
||||
|
||||
static int cbr_test(struct ast_private *ast)
|
||||
static int cbr_test(struct ast_device *ast)
|
||||
{
|
||||
u32 data;
|
||||
int i;
|
||||
@ -534,7 +534,7 @@ static int cbr_test(struct ast_private *ast)
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int cbr_scan(struct ast_private *ast)
|
||||
static int cbr_scan(struct ast_device *ast)
|
||||
{
|
||||
u32 data, data2, patcnt, loop;
|
||||
|
||||
@ -555,7 +555,7 @@ static int cbr_scan(struct ast_private *ast)
|
||||
return data2;
|
||||
}
|
||||
|
||||
static u32 cbr_test2(struct ast_private *ast)
|
||||
static u32 cbr_test2(struct ast_device *ast)
|
||||
{
|
||||
u32 data;
|
||||
|
||||
@ -569,7 +569,7 @@ static u32 cbr_test2(struct ast_private *ast)
|
||||
return ~data & 0xffff;
|
||||
}
|
||||
|
||||
static u32 cbr_scan2(struct ast_private *ast)
|
||||
static u32 cbr_scan2(struct ast_device *ast)
|
||||
{
|
||||
u32 data, data2, patcnt, loop;
|
||||
|
||||
@ -590,7 +590,7 @@ static u32 cbr_scan2(struct ast_private *ast)
|
||||
return data2;
|
||||
}
|
||||
|
||||
static bool cbr_test3(struct ast_private *ast)
|
||||
static bool cbr_test3(struct ast_device *ast)
|
||||
{
|
||||
if (!mmc_test_burst(ast, 0))
|
||||
return false;
|
||||
@ -599,7 +599,7 @@ static bool cbr_test3(struct ast_private *ast)
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool cbr_scan3(struct ast_private *ast)
|
||||
static bool cbr_scan3(struct ast_device *ast)
|
||||
{
|
||||
u32 patcnt, loop;
|
||||
|
||||
@ -615,7 +615,7 @@ static bool cbr_scan3(struct ast_private *ast)
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool finetuneDQI_L(struct ast_private *ast, struct ast2300_dram_param *param)
|
||||
static bool finetuneDQI_L(struct ast_device *ast, struct ast2300_dram_param *param)
|
||||
{
|
||||
u32 gold_sadj[2], dllmin[16], dllmax[16], dlli, data, cnt, mask, passcnt, retry = 0;
|
||||
bool status = false;
|
||||
@ -714,7 +714,7 @@ FINETUNE_DONE:
|
||||
return status;
|
||||
} /* finetuneDQI_L */
|
||||
|
||||
static void finetuneDQSI(struct ast_private *ast)
|
||||
static void finetuneDQSI(struct ast_device *ast)
|
||||
{
|
||||
u32 dlli, dqsip, dqidly;
|
||||
u32 reg_mcr18, reg_mcr0c, passcnt[2], diff;
|
||||
@ -804,7 +804,7 @@ static void finetuneDQSI(struct ast_private *ast)
|
||||
ast_moutdwm(ast, 0x1E6E0018, reg_mcr18);
|
||||
|
||||
}
|
||||
static bool cbr_dll2(struct ast_private *ast, struct ast2300_dram_param *param)
|
||||
static bool cbr_dll2(struct ast_device *ast, struct ast2300_dram_param *param)
|
||||
{
|
||||
u32 dllmin[2], dllmax[2], dlli, data, passcnt, retry = 0;
|
||||
bool status = false;
|
||||
@ -860,7 +860,7 @@ CBR_DONE2:
|
||||
return status;
|
||||
} /* CBRDLL2 */
|
||||
|
||||
static void get_ddr3_info(struct ast_private *ast, struct ast2300_dram_param *param)
|
||||
static void get_ddr3_info(struct ast_device *ast, struct ast2300_dram_param *param)
|
||||
{
|
||||
u32 trap, trap_AC2, trap_MRS;
|
||||
|
||||
@ -1102,7 +1102,7 @@ static void get_ddr3_info(struct ast_private *ast, struct ast2300_dram_param *pa
|
||||
|
||||
}
|
||||
|
||||
static void ddr3_init(struct ast_private *ast, struct ast2300_dram_param *param)
|
||||
static void ddr3_init(struct ast_device *ast, struct ast2300_dram_param *param)
|
||||
{
|
||||
u32 data, data2, retry = 0;
|
||||
|
||||
@ -1225,7 +1225,7 @@ ddr3_init_start:
|
||||
|
||||
}
|
||||
|
||||
static void get_ddr2_info(struct ast_private *ast, struct ast2300_dram_param *param)
|
||||
static void get_ddr2_info(struct ast_device *ast, struct ast2300_dram_param *param)
|
||||
{
|
||||
u32 trap, trap_AC2, trap_MRS;
|
||||
|
||||
@ -1472,7 +1472,7 @@ static void get_ddr2_info(struct ast_private *ast, struct ast2300_dram_param *pa
|
||||
}
|
||||
}
|
||||
|
||||
static void ddr2_init(struct ast_private *ast, struct ast2300_dram_param *param)
|
||||
static void ddr2_init(struct ast_device *ast, struct ast2300_dram_param *param)
|
||||
{
|
||||
u32 data, data2, retry = 0;
|
||||
|
||||
@ -1600,7 +1600,7 @@ ddr2_init_start:
|
||||
|
||||
static void ast_post_chip_2300(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
struct ast2300_dram_param param;
|
||||
u32 temp;
|
||||
u8 reg;
|
||||
@ -1681,7 +1681,7 @@ static void ast_post_chip_2300(struct drm_device *dev)
|
||||
} while ((reg & 0x40) == 0);
|
||||
}
|
||||
|
||||
static bool cbr_test_2500(struct ast_private *ast)
|
||||
static bool cbr_test_2500(struct ast_device *ast)
|
||||
{
|
||||
ast_moutdwm(ast, 0x1E6E0074, 0x0000FFFF);
|
||||
ast_moutdwm(ast, 0x1E6E007C, 0xFF00FF00);
|
||||
@ -1692,7 +1692,7 @@ static bool cbr_test_2500(struct ast_private *ast)
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool ddr_test_2500(struct ast_private *ast)
|
||||
static bool ddr_test_2500(struct ast_device *ast)
|
||||
{
|
||||
ast_moutdwm(ast, 0x1E6E0074, 0x0000FFFF);
|
||||
ast_moutdwm(ast, 0x1E6E007C, 0xFF00FF00);
|
||||
@ -1709,7 +1709,7 @@ static bool ddr_test_2500(struct ast_private *ast)
|
||||
return true;
|
||||
}
|
||||
|
||||
static void ddr_init_common_2500(struct ast_private *ast)
|
||||
static void ddr_init_common_2500(struct ast_device *ast)
|
||||
{
|
||||
ast_moutdwm(ast, 0x1E6E0034, 0x00020080);
|
||||
ast_moutdwm(ast, 0x1E6E0008, 0x2003000F);
|
||||
@ -1732,7 +1732,7 @@ static void ddr_init_common_2500(struct ast_private *ast)
|
||||
ast_moutdwm(ast, 0x1E6E024C, 0x80808080);
|
||||
}
|
||||
|
||||
static void ddr_phy_init_2500(struct ast_private *ast)
|
||||
static void ddr_phy_init_2500(struct ast_device *ast)
|
||||
{
|
||||
u32 data, pass, timecnt;
|
||||
|
||||
@ -1766,7 +1766,7 @@ static void ddr_phy_init_2500(struct ast_private *ast)
|
||||
* 4Gb : 0x80000000 ~ 0x9FFFFFFF
|
||||
* 8Gb : 0x80000000 ~ 0xBFFFFFFF
|
||||
*/
|
||||
static void check_dram_size_2500(struct ast_private *ast, u32 tRFC)
|
||||
static void check_dram_size_2500(struct ast_device *ast, u32 tRFC)
|
||||
{
|
||||
u32 reg_04, reg_14;
|
||||
|
||||
@ -1797,7 +1797,7 @@ static void check_dram_size_2500(struct ast_private *ast, u32 tRFC)
|
||||
ast_moutdwm(ast, 0x1E6E0014, reg_14);
|
||||
}
|
||||
|
||||
static void enable_cache_2500(struct ast_private *ast)
|
||||
static void enable_cache_2500(struct ast_device *ast)
|
||||
{
|
||||
u32 reg_04, data;
|
||||
|
||||
@ -1810,7 +1810,7 @@ static void enable_cache_2500(struct ast_private *ast)
|
||||
ast_moutdwm(ast, 0x1E6E0004, reg_04 | 0x400);
|
||||
}
|
||||
|
||||
static void set_mpll_2500(struct ast_private *ast)
|
||||
static void set_mpll_2500(struct ast_device *ast)
|
||||
{
|
||||
u32 addr, data, param;
|
||||
|
||||
@ -1837,7 +1837,7 @@ static void set_mpll_2500(struct ast_private *ast)
|
||||
udelay(100);
|
||||
}
|
||||
|
||||
static void reset_mmc_2500(struct ast_private *ast)
|
||||
static void reset_mmc_2500(struct ast_device *ast)
|
||||
{
|
||||
ast_moutdwm(ast, 0x1E78505C, 0x00000004);
|
||||
ast_moutdwm(ast, 0x1E785044, 0x00000001);
|
||||
@ -1848,7 +1848,7 @@ static void reset_mmc_2500(struct ast_private *ast)
|
||||
ast_moutdwm(ast, 0x1E6E0000, 0xFC600309);
|
||||
}
|
||||
|
||||
static void ddr3_init_2500(struct ast_private *ast, const u32 *ddr_table)
|
||||
static void ddr3_init_2500(struct ast_device *ast, const u32 *ddr_table)
|
||||
{
|
||||
|
||||
ast_moutdwm(ast, 0x1E6E0004, 0x00000303);
|
||||
@ -1892,7 +1892,7 @@ static void ddr3_init_2500(struct ast_private *ast, const u32 *ddr_table)
|
||||
ast_moutdwm(ast, 0x1E6E0038, 0xFFFFFF00);
|
||||
}
|
||||
|
||||
static void ddr4_init_2500(struct ast_private *ast, const u32 *ddr_table)
|
||||
static void ddr4_init_2500(struct ast_device *ast, const u32 *ddr_table)
|
||||
{
|
||||
u32 data, data2, pass, retrycnt;
|
||||
u32 ddr_vref, phy_vref;
|
||||
@ -2002,7 +2002,7 @@ static void ddr4_init_2500(struct ast_private *ast, const u32 *ddr_table)
|
||||
ast_moutdwm(ast, 0x1E6E0038, 0xFFFFFF00);
|
||||
}
|
||||
|
||||
static bool ast_dram_init_2500(struct ast_private *ast)
|
||||
static bool ast_dram_init_2500(struct ast_device *ast)
|
||||
{
|
||||
u32 data;
|
||||
u32 max_tries = 5;
|
||||
@ -2030,7 +2030,7 @@ static bool ast_dram_init_2500(struct ast_private *ast)
|
||||
return true;
|
||||
}
|
||||
|
||||
void ast_patch_ahb_2500(struct ast_private *ast)
|
||||
void ast_patch_ahb_2500(struct ast_device *ast)
|
||||
{
|
||||
u32 data;
|
||||
|
||||
@ -2066,7 +2066,7 @@ void ast_patch_ahb_2500(struct ast_private *ast)
|
||||
|
||||
void ast_post_chip_2500(struct drm_device *dev)
|
||||
{
|
||||
struct ast_private *ast = to_ast_private(dev);
|
||||
struct ast_device *ast = to_ast_private(dev);
|
||||
u32 temp;
|
||||
u8 reg;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user