summaryrefslogtreecommitdiff
path: root/src/smi_driver.c
diff options
context:
space:
mode:
authorPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2008-12-12 15:50:53 -0200
committerPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2008-12-12 15:50:53 -0200
commit191cbd3f8419cc5b428f262607d7a8594e574f67 (patch)
tree76f8c2a775c8468a9e4f52dddae00d7aac6c6236 /src/smi_driver.c
parenta2352ff23787f37530dff68e03028dd78925e4b4 (diff)
Unless there is a xorg.conf option, don't modify mclck neither mxclck.
The option set_mclck was renamed to just MCLK, and a new MXCLCK option was added for smi501/502 chips. Note that previously, on MSOC chips, the set_mclck option actually changed mxclck, what is now done by the MXCLK option. The manpage was also update to reflect the options usage. A new SMI501_FindMemClock() function was added, as a possible placeholder for choosing alternate clocks when programming MMIO 0x68. But it should be noted that the smi 501 databook says: Miscellaneous Timing Read/Write MMIO_base + 0x000068 Power-on Default 0x00000000 [...] 5:4 Divider Output Frequency Selection for Second PLL. 00: 336 MHz. 01: 288 MHz. 10: 240 MHz. 11: 192 MHz. while the 502 databook says: Miscellaneous Timing Read/Write MMIO_base + 0x000068 Power-on Default 0b0000.00xx.0000.1001.0000.1001.0000.0000 [...] 5:4 Reserved These bits are reserved. but still tells to refer to those bits.
Diffstat (limited to 'src/smi_driver.c')
-rw-r--r--src/smi_driver.c42
1 files changed, 25 insertions, 17 deletions
diff --git a/src/smi_driver.c b/src/smi_driver.c
index e251448..b36fc7f 100644
--- a/src/smi_driver.c
+++ b/src/smi_driver.c
@@ -150,6 +150,7 @@ typedef enum
OPTION_PCI_RETRY,
OPTION_NOACCEL,
OPTION_MCLK,
+ OPTION_MXCLK,
OPTION_SWCURSOR,
OPTION_HWCURSOR,
OPTION_VIDEOKEY,
@@ -171,7 +172,8 @@ static const OptionInfoRec SMIOptions[] =
{ OPTION_PCI_BURST, "pci_burst", OPTV_BOOLEAN, {0}, TRUE },
{ OPTION_PCI_RETRY, "pci_retry", OPTV_BOOLEAN, {0}, TRUE },
{ OPTION_NOACCEL, "NoAccel", OPTV_BOOLEAN, {0}, FALSE },
- { OPTION_MCLK, "set_mclk", OPTV_FREQ, {0}, FALSE },
+ { OPTION_MCLK, "MCLK", OPTV_FREQ, {0}, FALSE },
+ { OPTION_MXCLK, "MXCLK", OPTV_FREQ, {0}, FALSE },
{ OPTION_HWCURSOR, "HWCursor", OPTV_BOOLEAN, {0}, TRUE },
{ OPTION_SWCURSOR, "SWCursor", OPTV_BOOLEAN, {0}, FALSE },
{ OPTION_VIDEOKEY, "VideoKey", OPTV_INTEGER, {0}, FALSE },
@@ -1194,12 +1196,12 @@ SMI_DetectPanelSize(ScrnInfoPtr pScrn)
static void
SMI_DetectMCLK(ScrnInfoPtr pScrn)
{
- double real;
- int mclk;
- SMIPtr pSmi = SMIPTR(pScrn);
-
- pSmi->MCLK = 0;
+ double real;
+ MSOCClockRec clock;
+ int mclk, mxclk;
+ SMIPtr pSmi = SMIPTR(pScrn);
+ pSmi->MCLK = pSmi->MXCLK = 0;
if (xf86GetOptValFreq(pSmi->Options, OPTION_MCLK, OPTUNITS_MHZ, &real)) {
pSmi->MCLK = (int)(real * 1000.0);
if (!IS_MSOC(pSmi) && pSmi->MCLK > 120000) {
@@ -1211,17 +1213,17 @@ SMI_DetectMCLK(ScrnInfoPtr pScrn)
}
mclk = pSmi->MCLK;
+ if (IS_MSOC(pSmi)) {
+ clock.value = READ_SCR(pSmi, CURRENT_CLOCK);
+ if (xf86GetOptValFreq(pSmi->Options, OPTION_MXCLK, OPTUNITS_MHZ, &real))
+ pSmi->MXCLK = (int)(real * 1000.0);
+ mxclk = pSmi->MXCLK;
+ }
+
if (pSmi->MCLK == 0) {
- if (IS_MSOC(pSmi)) {
- int clock, shift, divider;
-
- /* FIXME this should just read smi_501.h's bitfields... */
- clock = READ_SCR(pSmi, CURRENT_CLOCK);
- shift = clock & ((1 << 3) - 1);
- divider = (clock >> 3) & 1 ? 3 : 1;
- clock = clock & (1 << 4) ? 336 : 288;
- mclk = (clock / (divider << shift)) * 1000;
- }
+ if (IS_MSOC(pSmi))
+ mclk = (clock.f.m_select ? 336 : 288) /
+ ((clock.f.m_divider ? 3 : 1) << (unsigned)clock.f.m_shift);
else {
unsigned char shift, m, n;
@@ -1243,8 +1245,14 @@ SMI_DetectMCLK(ScrnInfoPtr pScrn)
}
}
- /* FIXME Don't actually set pSmi->MCLK */
xf86DrvMsg(pScrn->scrnIndex, X_INFO, "MCLK = %1.3f\n", mclk / 1000.0);
+ if (IS_MSOC(pSmi)) {
+ if (pSmi->MXCLK == 0)
+ mxclk = (clock.f.m1_select ? 336 : 288) /
+ ((clock.f.m1_divider ? 3 : 1) << (unsigned)clock.f.m1_shift);
+ xf86DrvMsg(pScrn->scrnIndex, X_INFO, "MXCLK = %1.3f\n",
+ mxclk / 1000.0);
+ }
}
static Bool