diff options
| author | Andres Salomon <dilinger@collabora.co.uk> | 2009-12-14 21:00:40 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-15 11:53:28 -0500 |
| commit | f3a57a60d3e107d17aebb9e52b61c503e5bc14f9 (patch) | |
| tree | 58c34bb90b20e2816ec0018eb3e5660c3ab8b5a5 | |
| parent | f060f27007b393bac6e50ee6fc26d8505acf6fe4 (diff) | |
cs5535: define lxfb/gxfb MSRs in linux/cs5535.h
..and include them in the lxfb/gxfb drivers rather than asm/geode.h (where
possible).
Signed-off-by: Andres Salomon <dilinger@collabora.co.uk>
Cc: Jordan Crouse <jordan@cosmicpenguin.net>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: john stultz <johnstul@us.ibm.com>
Cc: Chris Ball <cjb@laptop.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | arch/x86/include/asm/geode.h | 13 | ||||
| -rw-r--r-- | drivers/video/geode/display_gx.c | 2 | ||||
| -rw-r--r-- | drivers/video/geode/gxfb.h | 2 | ||||
| -rw-r--r-- | drivers/video/geode/gxfb_core.c | 2 | ||||
| -rw-r--r-- | drivers/video/geode/lxfb.h | 2 | ||||
| -rw-r--r-- | drivers/video/geode/lxfb_ops.c | 2 | ||||
| -rw-r--r-- | drivers/video/geode/suspend_gx.c | 2 | ||||
| -rw-r--r-- | drivers/video/geode/video_gx.c | 2 | ||||
| -rw-r--r-- | include/linux/cs5535.h | 13 |
9 files changed, 20 insertions, 20 deletions
diff --git a/arch/x86/include/asm/geode.h b/arch/x86/include/asm/geode.h index df1eaf87426a..ae104da6ad5a 100644 --- a/arch/x86/include/asm/geode.h +++ b/arch/x86/include/asm/geode.h | |||
| @@ -31,25 +31,12 @@ extern int geode_get_dev_base(unsigned int dev); | |||
| 31 | 31 | ||
| 32 | /* MSRS */ | 32 | /* MSRS */ |
| 33 | 33 | ||
| 34 | #define MSR_GLIU_P2D_RO0 0x10000029 | ||
| 35 | |||
| 36 | #define MSR_LX_GLD_MSR_CONFIG 0x48002001 | ||
| 37 | #define MSR_LX_MSR_PADSEL 0x48002011 /* NOT 0x48000011; the data | ||
| 38 | * sheet has the wrong value */ | ||
| 39 | #define MSR_GLCP_SYS_RSTPLL 0x4C000014 | ||
| 40 | #define MSR_GLCP_DOTPLL 0x4C000015 | ||
| 41 | |||
| 42 | #define MSR_LBAR_SMB 0x5140000B | 34 | #define MSR_LBAR_SMB 0x5140000B |
| 43 | #define MSR_LBAR_GPIO 0x5140000C | 35 | #define MSR_LBAR_GPIO 0x5140000C |
| 44 | #define MSR_LBAR_MFGPT 0x5140000D | 36 | #define MSR_LBAR_MFGPT 0x5140000D |
| 45 | #define MSR_LBAR_ACPI 0x5140000E | 37 | #define MSR_LBAR_ACPI 0x5140000E |
| 46 | #define MSR_LBAR_PMS 0x5140000F | 38 | #define MSR_LBAR_PMS 0x5140000F |
| 47 | 39 | ||
| 48 | #define MSR_LX_SPARE_MSR 0x80000011 /* DC-specific */ | ||
| 49 | |||
| 50 | #define MSR_GX_GLD_MSR_CONFIG 0xC0002001 | ||
| 51 | #define MSR_GX_MSR_PADSEL 0xC0002011 | ||
| 52 | |||
| 53 | /* Resource Sizes */ | 40 | /* Resource Sizes */ |
| 54 | 41 | ||
| 55 | #define LBAR_GPIO_SIZE 0xFF | 42 | #define LBAR_GPIO_SIZE 0xFF |
diff --git a/drivers/video/geode/display_gx.c b/drivers/video/geode/display_gx.c index 3ddf055e302e..f0af911a096d 100644 --- a/drivers/video/geode/display_gx.c +++ b/drivers/video/geode/display_gx.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include <asm/io.h> | 17 | #include <asm/io.h> |
| 18 | #include <asm/div64.h> | 18 | #include <asm/div64.h> |
| 19 | #include <asm/delay.h> | 19 | #include <asm/delay.h> |
| 20 | #include <asm/geode.h> | 20 | #include <linux/cs5535.h> |
| 21 | 21 | ||
| 22 | #include "gxfb.h" | 22 | #include "gxfb.h" |
| 23 | 23 | ||
diff --git a/drivers/video/geode/gxfb.h b/drivers/video/geode/gxfb.h index 16a96f8fd8c5..d19e9378b0c0 100644 --- a/drivers/video/geode/gxfb.h +++ b/drivers/video/geode/gxfb.h | |||
| @@ -340,7 +340,7 @@ static inline void write_fp(struct gxfb_par *par, int reg, uint32_t val) | |||
| 340 | } | 340 | } |
| 341 | 341 | ||
| 342 | 342 | ||
| 343 | /* MSRs are defined in asm/geode.h; their bitfields are here */ | 343 | /* MSRs are defined in linux/cs5535.h; their bitfields are here */ |
| 344 | 344 | ||
| 345 | #define MSR_GLCP_SYS_RSTPLL_DOTPOSTDIV3 (1 << 3) | 345 | #define MSR_GLCP_SYS_RSTPLL_DOTPOSTDIV3 (1 << 3) |
| 346 | #define MSR_GLCP_SYS_RSTPLL_DOTPREMULT2 (1 << 2) | 346 | #define MSR_GLCP_SYS_RSTPLL_DOTPREMULT2 (1 << 2) |
diff --git a/drivers/video/geode/gxfb_core.c b/drivers/video/geode/gxfb_core.c index 2552cac39e1c..b3e639d1e12c 100644 --- a/drivers/video/geode/gxfb_core.c +++ b/drivers/video/geode/gxfb_core.c | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | #include <linux/suspend.h> | 32 | #include <linux/suspend.h> |
| 33 | #include <linux/init.h> | 33 | #include <linux/init.h> |
| 34 | #include <linux/pci.h> | 34 | #include <linux/pci.h> |
| 35 | #include <asm/geode.h> | 35 | #include <linux/cs5535.h> |
| 36 | 36 | ||
| 37 | #include "gxfb.h" | 37 | #include "gxfb.h" |
| 38 | 38 | ||
diff --git a/drivers/video/geode/lxfb.h b/drivers/video/geode/lxfb.h index 6a51448fd3f7..fc68a8b0a144 100644 --- a/drivers/video/geode/lxfb.h +++ b/drivers/video/geode/lxfb.h | |||
| @@ -409,7 +409,7 @@ static inline void write_fp(struct lxfb_par *par, int reg, uint32_t val) | |||
| 409 | } | 409 | } |
| 410 | 410 | ||
| 411 | 411 | ||
| 412 | /* MSRs are defined in asm/geode.h; their bitfields are here */ | 412 | /* MSRs are defined in linux/cs5535.h; their bitfields are here */ |
| 413 | 413 | ||
| 414 | #define MSR_GLCP_DOTPLL_LOCK (1 << 25) /* r/o */ | 414 | #define MSR_GLCP_DOTPLL_LOCK (1 << 25) /* r/o */ |
| 415 | #define MSR_GLCP_DOTPLL_HALFPIX (1 << 24) | 415 | #define MSR_GLCP_DOTPLL_HALFPIX (1 << 24) |
diff --git a/drivers/video/geode/lxfb_ops.c b/drivers/video/geode/lxfb_ops.c index fe1ee7cbccda..0e5d8c7c3eba 100644 --- a/drivers/video/geode/lxfb_ops.c +++ b/drivers/video/geode/lxfb_ops.c | |||
| @@ -13,7 +13,7 @@ | |||
| 13 | #include <linux/fb.h> | 13 | #include <linux/fb.h> |
| 14 | #include <linux/uaccess.h> | 14 | #include <linux/uaccess.h> |
| 15 | #include <linux/delay.h> | 15 | #include <linux/delay.h> |
| 16 | #include <asm/geode.h> | 16 | #include <linux/cs5535.h> |
| 17 | 17 | ||
| 18 | #include "lxfb.h" | 18 | #include "lxfb.h" |
| 19 | 19 | ||
diff --git a/drivers/video/geode/suspend_gx.c b/drivers/video/geode/suspend_gx.c index 9aff32ef8bb6..1bb043d70c64 100644 --- a/drivers/video/geode/suspend_gx.c +++ b/drivers/video/geode/suspend_gx.c | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | #include <linux/fb.h> | 10 | #include <linux/fb.h> |
| 11 | #include <asm/io.h> | 11 | #include <asm/io.h> |
| 12 | #include <asm/msr.h> | 12 | #include <asm/msr.h> |
| 13 | #include <asm/geode.h> | 13 | #include <linux/cs5535.h> |
| 14 | #include <asm/delay.h> | 14 | #include <asm/delay.h> |
| 15 | 15 | ||
| 16 | #include "gxfb.h" | 16 | #include "gxfb.h" |
diff --git a/drivers/video/geode/video_gx.c b/drivers/video/geode/video_gx.c index b8d52a8360db..6082f653c68a 100644 --- a/drivers/video/geode/video_gx.c +++ b/drivers/video/geode/video_gx.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include <asm/io.h> | 16 | #include <asm/io.h> |
| 17 | #include <asm/delay.h> | 17 | #include <asm/delay.h> |
| 18 | #include <asm/msr.h> | 18 | #include <asm/msr.h> |
| 19 | #include <asm/geode.h> | 19 | #include <linux/cs5535.h> |
| 20 | 20 | ||
| 21 | #include "gxfb.h" | 21 | #include "gxfb.h" |
| 22 | 22 | ||
diff --git a/include/linux/cs5535.h b/include/linux/cs5535.h index eb34108a608b..d5a1d4810b80 100644 --- a/include/linux/cs5535.h +++ b/include/linux/cs5535.h | |||
| @@ -12,6 +12,14 @@ | |||
| 12 | #define _CS5535_H | 12 | #define _CS5535_H |
| 13 | 13 | ||
| 14 | /* MSRs */ | 14 | /* MSRs */ |
| 15 | #define MSR_GLIU_P2D_RO0 0x10000029 | ||
| 16 | |||
| 17 | #define MSR_LX_GLD_MSR_CONFIG 0x48002001 | ||
| 18 | #define MSR_LX_MSR_PADSEL 0x48002011 /* NOT 0x48000011; the data | ||
| 19 | * sheet has the wrong value */ | ||
| 20 | #define MSR_GLCP_SYS_RSTPLL 0x4C000014 | ||
| 21 | #define MSR_GLCP_DOTPLL 0x4C000015 | ||
| 22 | |||
| 15 | #define MSR_LBAR_SMB 0x5140000B | 23 | #define MSR_LBAR_SMB 0x5140000B |
| 16 | #define MSR_LBAR_GPIO 0x5140000C | 24 | #define MSR_LBAR_GPIO 0x5140000C |
| 17 | #define MSR_LBAR_MFGPT 0x5140000D | 25 | #define MSR_LBAR_MFGPT 0x5140000D |
| @@ -30,6 +38,11 @@ | |||
| 30 | #define MSR_MFGPT_NR 0x51400029 | 38 | #define MSR_MFGPT_NR 0x51400029 |
| 31 | #define MSR_MFGPT_SETUP 0x5140002B | 39 | #define MSR_MFGPT_SETUP 0x5140002B |
| 32 | 40 | ||
| 41 | #define MSR_LX_SPARE_MSR 0x80000011 /* DC-specific */ | ||
| 42 | |||
| 43 | #define MSR_GX_GLD_MSR_CONFIG 0xC0002001 | ||
| 44 | #define MSR_GX_MSR_PADSEL 0xC0002011 | ||
| 45 | |||
| 33 | /* resource sizes */ | 46 | /* resource sizes */ |
| 34 | #define LBAR_GPIO_SIZE 0xFF | 47 | #define LBAR_GPIO_SIZE 0xFF |
| 35 | #define LBAR_MFGPT_SIZE 0x40 | 48 | #define LBAR_MFGPT_SIZE 0x40 |
