summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/aspeed/aspeed_gfx_drv.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/gpu/drm/aspeed/aspeed_gfx_drv.c b/drivers/gpu/drm/aspeed/aspeed_gfx_drv.c
index 63db774f6eb2..7780b72de9e8 100644
--- a/drivers/gpu/drm/aspeed/aspeed_gfx_drv.c
+++ b/drivers/gpu/drm/aspeed/aspeed_gfx_drv.c
@@ -83,9 +83,18 @@ static const struct aspeed_gfx_config ast2500_config = {
.scan_line_max = 128,
};
+static const struct aspeed_gfx_config ast2600_config = {
+ .dac_reg = 0xc0,
+ .int_clear_reg = 0x68,
+ .vga_scratch_reg = 0x50,
+ .throd_val = CRT_THROD_LOW(0x50) | CRT_THROD_HIGH(0x70),
+ .scan_line_max = 128,
+};
+
static const struct of_device_id aspeed_gfx_match[] = {
{ .compatible = "aspeed,ast2400-gfx", .data = &ast2400_config },
{ .compatible = "aspeed,ast2500-gfx", .data = &ast2500_config },
+ { .compatible = "aspeed,ast2600-gfx", .data = &ast2600_config },
{ },
};
MODULE_DEVICE_TABLE(of, aspeed_gfx_match);
umbach 2013-06-13iwlwifi: reduce debug ifdefs using the optimiserJohannes Berg 2013-05-16iwlwifi: support loading NVM data from fileEran Harary 2013-03-20iwlwifi: remove 5ghz_disable optionStanislaw Gruszka 2013-03-06iwlwifi: move firmware restart debugfs hook to op_modeEmmanuel Grumbach 2013-03-06iwlwifi: a few fixes in licenseEmmanuel Grumbach 2013-02-28iwlwifi: disable 8K A-MSDU by defaultEmmanuel Grumbach 2013-01-24iwlwifi: update copyrightJohannes Berg 2012-05-08iwlwifi: remove the iwl_shared referenceWey-Yi Guy 2012-05-08iwlwifi: add option to disable 5GHz bandStanislaw Gruszka 2012-04-23iwlwifi: clean up module parametersJohannes Berg