]> err.no Git - linux-2.6/commitdiff
gxfb: move MSR bit fields into gxfb.h
authorAndres Salomon <dilinger@queued.net>
Mon, 28 Apr 2008 09:15:00 +0000 (02:15 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 28 Apr 2008 15:58:36 +0000 (08:58 -0700)
This continues the gxfb header cleanups.  MSRs are defined in geode.h; the
specific bits we care about are defined in gxfb.h.

Signed-off-by: Andres Salomon <dilinger@debian.org>
Cc: Jordan Crouse <jordan.crouse@amd.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/video/geode/display_gx.h
drivers/video/geode/gxfb.h
drivers/video/geode/gxfb_core.c
drivers/video/geode/video_gx.c
drivers/video/geode/video_gx.h

index 56e9d2ea52c95db5811ed1a06b536f3beb6328cf..ad556d39765ceba8510b6f723c9bb3d2d2604c00 100644 (file)
@@ -16,7 +16,4 @@ int gx_line_delta(int xres, int bpp);
 
 extern struct geode_dc_ops gx_dc_ops;
 
-/* MSR that tells us if a TFT or CRT is attached */
-#define GLD_MSR_CONFIG_DM_FP 0x40
-
 #endif /* !__DISPLAY_GX1_H__ */
index d408ad354d2dbd5f182d1cd34c2cc520cc870f78..c21f9dc5e0c18206801fd2f69b788858714e99f9 100644 (file)
@@ -252,4 +252,20 @@ static inline void write_fp(struct geodefb_par *par, int reg, uint32_t val)
        writel(val, par->vid_regs + 8*reg + VP_FP_START);
 }
 
+
+/* MSRs are defined in asm/geode.h; their bitfields are here */
+
+#define MSR_GLCP_SYS_RSTPLL_DOTPOSTDIV3        (1 << 3)
+#define MSR_GLCP_SYS_RSTPLL_DOTPREMULT2        (1 << 2)
+#define MSR_GLCP_SYS_RSTPLL_DOTPREDIV2 (1 << 1)
+
+#define MSR_GLCP_DOTPLL_LOCK           (1 << 25)       /* r/o */
+#define MSR_GLCP_DOTPLL_BYPASS         (1 << 15)
+#define MSR_GLCP_DOTPLL_DOTRESET       (1 << 0)
+
+#define MSR_GX_MSR_PADSEL_MASK         0x3FFFFFFF      /* undocumented? */
+#define MSR_GX_MSR_PADSEL_TFT          0x1FFFFFFF      /* undocumented? */
+
+#define MSR_GX_GLD_MSR_CONFIG_FP       (1 << 3)
+
 #endif
index fd58dcc44670062223b6df64ae99b3df1c0582a6..09132513c69ae9d5e16ae4b1e4eae5bd44377c8c 100644 (file)
@@ -328,7 +328,7 @@ static int __init gxfb_probe(struct pci_dev *pdev, const struct pci_device_id *i
 
        rdmsrl(MSR_GX_GLD_MSR_CONFIG, val);
 
-       if ((val & GLD_MSR_CONFIG_DM_FP) == GLD_MSR_CONFIG_DM_FP)
+       if ((val & MSR_GX_GLD_MSR_CONFIG_FP) == MSR_GX_GLD_MSR_CONFIG_FP)
                par->enable_crt = 0;
        else
                par->enable_crt = 1;
index 1b98b7b4e8537e7a8aa3491d635a95d1a2996f8e..1e26bc4224619f657937e3fd2e9ea866433924e8 100644 (file)
@@ -187,8 +187,8 @@ gx_configure_tft(struct fb_info *info)
        /* Set up the DF pad select MSR */
 
        rdmsrl(MSR_GX_MSR_PADSEL, val);
-       val &= ~GX_VP_PAD_SELECT_MASK;
-       val |= GX_VP_PAD_SELECT_TFT;
+       val &= ~MSR_GX_MSR_PADSEL_MASK;
+       val |= MSR_GX_MSR_PADSEL_TFT;
        wrmsrl(MSR_GX_MSR_PADSEL, val);
 
        /* Turn off the panel */
index 5457bd04ec745df8fbbc9031f48f7dcbe90e57f0..79f6e818a6f4bae4debb98e0e92e764261be6755 100644 (file)
 
 extern struct geode_vid_ops gx_vid_ops;
 
-/* GX Flatpanel control MSR */
-#define GX_VP_PAD_SELECT_MASK          0x3FFFFFFF
-#define GX_VP_PAD_SELECT_TFT           0x1FFFFFFF
-
-/* Geode GX clock control MSRs */
-
-#  define MSR_GLCP_SYS_RSTPLL_DOTPREDIV2       (0x0000000000000002ull)
-#  define MSR_GLCP_SYS_RSTPLL_DOTPREMULT2      (0x0000000000000004ull)
-#  define MSR_GLCP_SYS_RSTPLL_DOTPOSTDIV3      (0x0000000000000008ull)
-
-#  define MSR_GLCP_DOTPLL_DOTRESET             (0x0000000000000001ull)
-#  define MSR_GLCP_DOTPLL_BYPASS               (0x0000000000008000ull)
-#  define MSR_GLCP_DOTPLL_LOCK                 (0x0000000002000000ull)
-
 #endif /* !__VIDEO_GX_H__ */