* [PATCH 1/12] Add VFP support for ARM V7 - OMAP 3430 support
@ 2007-05-31 17:57 Syed Mohammed, Khasim
2007-05-31 21:33 ` Kevin Hilman
0 siblings, 1 reply; 5+ messages in thread
From: Syed Mohammed, Khasim @ 2007-05-31 17:57 UTC (permalink / raw)
To: Linux OMAP
Add VFP support for ARM V7, derived from ARM's Cortex patch
Signed-off-by: Syed Mohammed Khasim <x0khasim@ti.com>
Files:
arch/arm/Kconfig | 16 ++++++++++++++--
val_3430_GIT/arch/arm/vfp/vfp.h | 5 +++++
val_3430_GIT/arch/arm/vfp/vfphw.S | 21 ++++++++++++++++++++-
val_3430_GIT/arch/arm/vfp/vfpmodule.c | 8 ++++++++
4 files changed, 47 insertions(+), 3 deletions(-)
=======================================================================
--- linux-omap/arch/arm/Kconfig 2007-05-25 13:27:02.000000000 -0500
+++ val_3430_GIT/arch/arm/Kconfig 2007-05-25 23:05:30.000000000 -0500
@@ -393,7 +393,7 @@ config ARCH_OMAP
select GENERIC_TIME
select GENERIC_CLOCKEVENTS
help
- Support for TI's OMAP platform (OMAP1 and OMAP2).
+ Support for TI's OMAP platform (OMAP1, OMAP2 and OMAP3).
endchoice
@@ -925,7 +925,7 @@ config FPE_FASTFPE
config VFP
bool "VFP-format floating point maths"
- depends on CPU_V6 || CPU_ARM926T
+ depends on CPU_V6 || CPU_ARM926T || CPU_V7
help
Say Y to include VFP support code in the kernel. This is needed
if your hardware includes a VFP unit.
@@ -935,6 +935,18 @@ config VFP
Say N if your target does not have VFP hardware.
+config VFPv3
+ bool
+ depends on VFP
+ default y if CPU_V7
+
+config NEON
+ bool "NEON Advanced SIMD Extension support"
+ depends on VFPv3 && CPU_V7
+ help
+ Say Y to include support code for NEON, the ARMv7 Advanced SIMD
+ Extensions.
+
endmenu
menu "Userspace binary formats"
diff -purN linux-omap/arch/arm/vfp/vfp.h val_3430_GIT/arch/arm/vfp/vfp.h
--- linux-omap/arch/arm/vfp/vfp.h 2007-02-16 09:43:28.000000000 -0600
+++ val_3430_GIT/arch/arm/vfp/vfp.h 2007-05-25 22:32:46.000000000 -0500
@@ -265,7 +265,12 @@ struct vfp_double {
* which returns (double)0.0. This is useful for the compare with
* zero instructions.
*/
+#ifdef CONFIG_VFPv3
+#define VFP_REG_ZERO 32
+#else
#define VFP_REG_ZERO 16
+#endif
+
extern u64 vfp_get_double(unsigned int reg);
extern void vfp_put_double(u64 val, unsigned int reg);
diff -purN linux-omap/arch/arm/vfp/vfphw.S val_3430_GIT/arch/arm/vfp/vfphw.S
--- linux-omap/arch/arm/vfp/vfphw.S 2007-02-16 09:43:28.000000000 -0600
+++ val_3430_GIT/arch/arm/vfp/vfphw.S 2007-05-25 22:32:46.000000000 -0500
@@ -100,10 +100,12 @@ vfp_support_entry:
cmp r4, #0
beq no_old_VFP_process
VFPFMRX r5, FPSCR @ current status
+#ifndef CONFIG_VFPv3
VFPFMRX r6, FPINST @ FPINST (always there, rev0 onwards)
tst r1, #FPEXC_FPV2 @ is there an FPINST2 to read?
VFPFMRX r8, FPINST2, NE @ FPINST2 if needed - avoids reading
@ nonexistant reg on rev0
+#endif
VFPFSTMIA r4 @ save the working registers
stmia r4, {r1, r5, r6, r8} @ save FPEXC, FPSCR, FPINST, FPINST2
@ and point r4 at the word at the
@@ -117,10 +119,12 @@ no_old_VFP_process:
VFPFLDMIA r10 @ reload the working registers while
@ FPEXC is in a safe state
ldmia r10, {r1, r5, r6, r8} @ load FPEXC, FPSCR, FPINST, FPINST2
+#ifndef CONFIG_VFPv3
tst r1, #FPEXC_FPV2 @ is there an FPINST2 to write?
VFPFMXR FPINST2, r8, NE @ FPINST2 if needed - avoids writing
@ nonexistant reg on rev0
VFPFMXR FPINST, r6
+#endif
VFPFMXR FPSCR, r5 @ restore status
check_for_exception:
@@ -217,8 +221,15 @@ vfp_get_double:
fmrrd r0, r1, d\dr
mov pc, lr
.endr
+#ifdef CONFIG_VFPv3
+ @ d16 - d31 registers
+ .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
+ mrrc p11, 3, r0, r1, c\dr @ fmrrd r0, r1, d\dr
+ mov pc, lr
+ .endr
+#endif
- @ virtual register 16 for compare with zero
+ @ virtual register 16 (or 32 if VFPv3) for compare with zero
mov r0, #0
mov r1, #0
mov pc, lr
@@ -231,3 +242,11 @@ vfp_put_double:
fmdrr d\dr, r0, r1
mov pc, lr
.endr
+#ifdef CONFIG_VFPv3
+ @ d16 - d31 registers
+ .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
+ mcrr p11, 3, r1, r2, c\dr @ fmdrr r1, r2, d\dr
+ mov pc, lr
+ .endr
+#endif
+
diff -purN linux-omap/arch/arm/vfp/vfpmodule.c val_3430_GIT/arch/arm/vfp/vfpmodule.c
--- linux-omap/arch/arm/vfp/vfpmodule.c 2007-02-16 09:43:28.000000000 -0600
+++ val_3430_GIT/arch/arm/vfp/vfpmodule.c 2007-05-25 22:32:46.000000000 -0500
@@ -261,11 +261,16 @@ void VFP9_bounce(u32 trigger, u32 fpexc,
* FPEXC bounce reason, but this appears to be unreliable.
* Emulate the bounced instruction instead.
*/
+#ifndef CONFIG_VFPv3
inst = fmrx(FPINST);
+#else
+ inst = trigger;
+#endif
exceptions = vfp_emulate_instruction(inst, fpscr, regs);
if (exceptions)
vfp_raise_exceptions(exceptions, inst, orig_fpscr, regs);
+#ifndef CONFIG_VFPv3
/*
* If there isn't a second FP instruction, exit now.
*/
@@ -279,6 +284,9 @@ void VFP9_bounce(u32 trigger, u32 fpexc,
barrier();
trigger = fmrx(FPINST2);
orig_fpscr = fpscr = fmrx(FPSCR);
+#else
+ return;
+#endif
emulate:
exceptions = vfp_emulate_instruction(trigger, fpscr, regs);
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/12] Add VFP support for ARM V7 - OMAP 3430 support
2007-05-31 17:57 [PATCH 1/12] Add VFP support for ARM V7 - OMAP 3430 support Syed Mohammed, Khasim
@ 2007-05-31 21:33 ` Kevin Hilman
2007-05-31 21:58 ` Syed Mohammed, Khasim
0 siblings, 1 reply; 5+ messages in thread
From: Kevin Hilman @ 2007-05-31 21:33 UTC (permalink / raw)
To: Syed Mohammed, Khasim; +Cc: Linux OMAP
Syed Mohammed, Khasim wrote:
> Add VFP support for ARM V7, derived from ARM's Cortex patch
>
Sorry to not speak up sooner, but I think we need to rebase this whole patchset on top of Catalin's ARMv7 patches which he has in his tree[1]
I just did a quick test and all his patches apply cleanly to the current OMAP git tree. Here's the git magic for how I do it: (you might need a recent git for this, I use 1.5.2)
$ git remote add arm git://linux-arm.org/linux-2.6.git
Then fetch his changes into your repo
$ git fetch arm
Then cherry-pick the commits from his tree into your tree. To me it seems like the following range is useful his ARMv7 + NEON + VFP3 + Thumb-2 userland support:
$ git-rev-list --reverse arm/origin..654441661e3655df22fb7b85a7fc64201c09f4d0
Then, cherry-pick them into your OMAP tree (this cmd should be all on one line)
$ for commit in `git-rev-list --reverse arm/origin..654441661e3655df22fb7b85a7fc64201c09f4d0`; do git-cherry-pick -x ${commit}; done
Kevin
[1] http://www.linux-arm.org/git
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH 1/12] Add VFP support for ARM V7 - OMAP 3430 support
2007-05-31 21:33 ` Kevin Hilman
@ 2007-05-31 21:58 ` Syed Mohammed, Khasim
2007-06-01 22:37 ` Syed Mohammed, Khasim
0 siblings, 1 reply; 5+ messages in thread
From: Syed Mohammed, Khasim @ 2007-05-31 21:58 UTC (permalink / raw)
To: Kevin Hilman; +Cc: Linux OMAP
Hi Kevin,
>Sorry to not speak up sooner, but I think we need to rebase this whole
>patchset on top of Catalin's ARMv7 patches which he has in his tree[1]
>
Similar comment was passed by Trilok.
I understand what you guys are trying to communicate but still I would like to base our Cortex development for OMAP tree on Patch-2.6.19-arm2.gz from http://www.arm.com/linux/linux_download.html.
The reason is, AFAIK, this snapshot was tested by ARM on different ARM platforms. We can pull stuff from ARM's GIT but then I don't know how far they are being tested on other ARM platforms. Basically it will be difficult to test all ARM platforms from our end, I am anyway testing my patches on 2420, 2430, 3430 now.
We have a limited interest for Cortex developments on OMAP GIT. I think for now we are satisfied if it works to an extent where we could get all our 3430 drivers on OMAP GIT. In the mean time Cortex support might be improved on RMK's tree. If we find something missing/important then we can pull only that on OMAP GIT.
We can discuss with Catalin and get his views on the same.
Thanks.
Regards,
Khasim
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH 1/12] Add VFP support for ARM V7 - OMAP 3430 support
2007-05-31 21:58 ` Syed Mohammed, Khasim
@ 2007-06-01 22:37 ` Syed Mohammed, Khasim
0 siblings, 0 replies; 5+ messages in thread
From: Syed Mohammed, Khasim @ 2007-06-01 22:37 UTC (permalink / raw)
To: Syed Mohammed, Khasim, Kevin Hilman; +Cc: Linux OMAP
Hi:
>We can discuss with Catalin and get his views on the same.
>
We had a discussion with Catalin, he suggested us to use patches from Master repo of his branch. Below lines are pasted from his mail.
>> The master branch contains 4 additional ARMv7 patches. The most important
>> for you might be the VFPv3 and the Neon support. I plan to submit them
>> post 2.6.22. The Thumb-2 user-space support will probably be submitted by
>> Paul Brook from CodeSourcery directly as he implemented it.
Tony, I will be reposting the VFP V3 patch - Please consider this patch as it has latest updates from ARM - GIT VFP3 patch set.
Regards,
Khasim
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/12] Add VFP support for ARM V7 - OMAP 3430 support
@ 2007-06-01 22:38 Syed Mohammed, Khasim
0 siblings, 0 replies; 5+ messages in thread
From: Syed Mohammed, Khasim @ 2007-06-01 22:38 UTC (permalink / raw)
To: Linux OMAP
Add VFP support for ARM V7, derived from latest ARM's VfP V3 patch.
Tested on 2420 / 2430 / 3430.
Signed-off-by: Syed Mohammed Khasim <x0khasim@ti.com>
Files:
arch/arm/Kconfig | 16 ++++++++++++++--
arch/arm/vfp/vfp.h | 4 ++++
arch/arm/vfp/vfphw.S | 22 +++++++++++++++++++++-
arch/arm/vfp/vfpinstr.h | 6 +++---
arch/arm/vfp/vfpmodule.c | 14 +++++++++++---
include/asm-arm/fpstate.h | 6 ++++++
include/asm-arm/vfp.h | 2 ++
include/asm-arm/vfpmacros.h | 6 ++++++
8 files changed, 67 insertions(+), 9 deletions(-)
=======================================================================
diff -purN linux-omap/arch/arm/vfp/vfp.h val_3430_GIT/arch/arm/vfp/vfp.h
--- linux-omap/arch/arm/Kconfig 2007-05-25 13:27:02.000000000 -0500
+++ val_3430_GIT/arch/arm/Kconfig 2007-06-01 15:27:04.000000000 -0500
@@ -393,7 +393,7 @@ config ARCH_OMAP
select GENERIC_TIME
select GENERIC_CLOCKEVENTS
help
- Support for TI's OMAP platform (OMAP1 and OMAP2).
+ Support for TI's OMAP platform (OMAP1, OMAP2 and OMAP3).
endchoice
@@ -925,7 +925,7 @@ config FPE_FASTFPE
config VFP
bool "VFP-format floating point maths"
- depends on CPU_V6 || CPU_ARM926T
+ depends on CPU_V6 || CPU_ARM926T || CPU_V7
help
Say Y to include VFP support code in the kernel. This is needed
if your hardware includes a VFP unit.
@@ -935,6 +935,18 @@ config VFP
Say N if your target does not have VFP hardware.
+config VFPv3
+ bool
+ depends on VFP
+ default y if CPU_V7
+
+config NEON
+ bool "NEON Advanced SIMD Extension support"
+ depends on VFPv3 && CPU_V7
+ help
+ Say Y to include support code for NEON, the ARMv7 Advanced SIMD
+ Extensions.
+
endmenu
menu "Userspace binary formats"
--- linux-omap/arch/arm/vfp/vfp.h 2007-02-16 09:43:28.000000000 -0600
+++ val_3430_GIT/arch/arm/vfp/vfp.h 2007-06-01 15:22:56.000000000 -0500
@@ -265,7 +265,11 @@ struct vfp_double {
* which returns (double)0.0. This is useful for the compare with
* zero instructions.
*/
+#ifdef CONFIG_VFPv3
+#define VFP_REG_ZERO 32
+#else
#define VFP_REG_ZERO 16
+#endif
extern u64 vfp_get_double(unsigned int reg);
extern void vfp_put_double(u64 val, unsigned int reg);
diff -purN linux-omap/arch/arm/vfp/vfphw.S val_3430_GIT/arch/arm/vfp/vfphw.S
--- linux-omap/arch/arm/vfp/vfphw.S 2007-02-16 09:43:28.000000000 -0600
+++ val_3430_GIT/arch/arm/vfp/vfphw.S 2007-06-01 15:23:02.000000000 -0500
@@ -100,10 +100,12 @@ vfp_support_entry:
cmp r4, #0
beq no_old_VFP_process
VFPFMRX r5, FPSCR @ current status
+#ifndef CONFIG_VFPv3
VFPFMRX r6, FPINST @ FPINST (always there, rev0 onwards)
tst r1, #FPEXC_FPV2 @ is there an FPINST2 to read?
VFPFMRX r8, FPINST2, NE @ FPINST2 if needed - avoids reading
@ nonexistant reg on rev0
+#endif
VFPFSTMIA r4 @ save the working registers
stmia r4, {r1, r5, r6, r8} @ save FPEXC, FPSCR, FPINST, FPINST2
@ and point r4 at the word at the
@@ -117,10 +119,12 @@ no_old_VFP_process:
VFPFLDMIA r10 @ reload the working registers while
@ FPEXC is in a safe state
ldmia r10, {r1, r5, r6, r8} @ load FPEXC, FPSCR, FPINST, FPINST2
+#ifndef CONFIG_VFPv3
tst r1, #FPEXC_FPV2 @ is there an FPINST2 to write?
VFPFMXR FPINST2, r8, NE @ FPINST2 if needed - avoids writing
@ nonexistant reg on rev0
VFPFMXR FPINST, r6
+#endif
VFPFMXR FPSCR, r5 @ restore status
check_for_exception:
@@ -175,10 +179,12 @@ vfp_save_state:
@ r1 - FPEXC
DBGSTR1 "save VFP state %p", r0
VFPFMRX r2, FPSCR @ current status
+#ifndef CONFIG_VFPv3
VFPFMRX r3, FPINST @ FPINST (always there, rev0 onwards)
tst r1, #FPEXC_FPV2 @ is there an FPINST2 to read?
VFPFMRX r12, FPINST2, NE @ FPINST2 if needed - avoids reading
@ nonexistant reg on rev0
+#endif
VFPFSTMIA r0 @ save the working registers
stmia r0, {r1, r2, r3, r12} @ save FPEXC, FPSCR, FPINST, FPINST2
mov pc, lr
@@ -217,8 +223,15 @@ vfp_get_double:
fmrrd r0, r1, d\dr
mov pc, lr
.endr
+#ifdef CONFIG_VFPv3
+ @ d16 - d31 registers
+ .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
+ mrrc p11, 3, r0, r1, c\dr @ fmrrd r0, r1, d\dr
+ mov pc, lr
+ .endr
+#endif
- @ virtual register 16 for compare with zero
+ @ virtual register 16 (or 32 if VFPv3) for compare with zero
mov r0, #0
mov r1, #0
mov pc, lr
@@ -231,3 +244,10 @@ vfp_put_double:
fmdrr d\dr, r0, r1
mov pc, lr
.endr
+#ifdef CONFIG_VFPv3
+ @ d16 - d31 registers
+ .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
+ mcrr p11, 3, r1, r2, c\dr @ fmdrr r1, r2, d\dr
+ mov pc, lr
+ .endr
+#endif
diff -purN linux-omap/arch/arm/vfp/vfpinstr.h val_3430_GIT/arch/arm/vfp/vfpinstr.h
--- linux-omap/arch/arm/vfp/vfpinstr.h 2006-11-20 21:54:06.000000000 -0600
+++ val_3430_GIT/arch/arm/vfp/vfpinstr.h 2007-06-01 15:23:08.000000000 -0500
@@ -52,11 +52,11 @@
#define FEXT_TO_IDX(inst) ((inst & 0x000f0000) >> 15 | (inst & (1 << 7)) >> 7)
#define vfp_get_sd(inst) ((inst & 0x0000f000) >> 11 | (inst & (1 << 22)) >> 22)
-#define vfp_get_dd(inst) ((inst & 0x0000f000) >> 12)
+#define vfp_get_dd(inst) ((inst & 0x0000f000) >> 12 | (inst & (1 << 22)) >> 18)
#define vfp_get_sm(inst) ((inst & 0x0000000f) << 1 | (inst & (1 << 5)) >> 5)
-#define vfp_get_dm(inst) ((inst & 0x0000000f))
+#define vfp_get_dm(inst) ((inst & 0x0000000f) | (inst & (1 << 5)) >> 1)
#define vfp_get_sn(inst) ((inst & 0x000f0000) >> 15 | (inst & (1 << 7)) >> 7)
-#define vfp_get_dn(inst) ((inst & 0x000f0000) >> 16)
+#define vfp_get_dn(inst) ((inst & 0x000f0000) >> 16 | (inst & (1 << 7)) >> 3)
#define vfp_single(inst) (((inst) & 0x0000f00) == 0xa00)
diff -purN linux-omap/arch/arm/vfp/vfpmodule.c val_3430_GIT/arch/arm/vfp/vfpmodule.c
--- linux-omap/arch/arm/vfp/vfpmodule.c 2007-02-16 09:43:28.000000000 -0600
+++ val_3430_GIT/arch/arm/vfp/vfpmodule.c 2007-06-01 15:23:18.000000000 -0500
@@ -124,13 +124,13 @@ void vfp_raise_sigfpe(unsigned int sicod
send_sig_info(SIGFPE, &info, current);
}
-static void vfp_panic(char *reason)
+static void vfp_panic(char *reason, u32 inst)
{
int i;
printk(KERN_ERR "VFP: Error: %s\n", reason);
printk(KERN_ERR "VFP: EXC 0x%08x SCR 0x%08x INST 0x%08x\n",
- fmrx(FPEXC), fmrx(FPSCR), fmrx(FPINST));
+ fmrx(FPEXC), fmrx(FPSCR), inst);
for (i = 0; i < 32; i += 2)
printk(KERN_ERR "VFP: s%2u: 0x%08x s%2u: 0x%08x\n",
i, vfp_get_float(i), i+1, vfp_get_float(i+1));
@@ -146,7 +146,7 @@ static void vfp_raise_exceptions(u32 exc
pr_debug("VFP: raising exceptions %08x\n", exceptions);
if (exceptions == VFP_EXCEPTION_ERROR) {
- vfp_panic("unhandled bounce");
+ vfp_panic("unhandled bounce", inst);
vfp_raise_sigfpe(0, regs);
return;
}
@@ -261,11 +261,16 @@ void VFP9_bounce(u32 trigger, u32 fpexc,
* FPEXC bounce reason, but this appears to be unreliable.
* Emulate the bounced instruction instead.
*/
+#ifndef CONFIG_VFPv3
inst = fmrx(FPINST);
+#else
+ inst = trigger;
+#endif
exceptions = vfp_emulate_instruction(inst, fpscr, regs);
if (exceptions)
vfp_raise_exceptions(exceptions, inst, orig_fpscr, regs);
+#ifndef CONFIG_VFPv3
/*
* If there isn't a second FP instruction, exit now.
*/
@@ -279,6 +284,9 @@ void VFP9_bounce(u32 trigger, u32 fpexc,
barrier();
trigger = fmrx(FPINST2);
orig_fpscr = fpscr = fmrx(FPSCR);
+#else
+ return;
+#endif
emulate:
exceptions = vfp_emulate_instruction(trigger, fpscr, regs);
--- linux-omap/include/asm-arm/vfpmacros.h 2006-11-20 21:57:05.000000000 -0600
+++ val_3430_GIT/include/asm-arm/vfpmacros.h 2007-06-01 15:24:17.000000000 -0500
@@ -21,6 +21,9 @@
#else
LDC p11, cr0, [\base],#32*4 @ FLDMIAD \base!, {d0-d15}
#endif
+#ifdef CONFIG_VFPv3
+ LDCL p11, cr0, [\base],#32*4 @ FLDMIAD \base!, {d16-d31}
+#endif
.endm
@ write all the working registers out of the VFP
@@ -30,4 +33,7 @@
#else
STC p11, cr0, [\base],#32*4 @ FSTMIAD \base!, {d0-d15}
#endif
+#ifdef CONFIG_VFPv3
+ STCL p11, cr0, [\base],#32*4 @ FSTMIAD \base!, {d16-d31}
+#endif
.endm
--- linux-omap/include/asm-arm/vfp.h 2006-11-20 21:57:05.000000000 -0600
+++ val_3430_GIT/include/asm-arm/vfp.h 2007-06-01 15:24:12.000000000 -0500
@@ -55,11 +55,13 @@
#define FPSCR_IXC (1<<4)
#define FPSCR_IDC (1<<7)
+#ifndef CONFIG_VFPv3
/*
* VFP9-S specific.
*/
#define FPINST cr9
#define FPINST2 cr10
+#endif
/* FPEXC bits */
#define FPEXC_FPV2 (1<<28)
--- linux-omap/include/asm-arm/fpstate.h 2007-02-16 09:43:38.000000000 -0600
+++ val_3430_GIT/include/asm-arm/fpstate.h 2007-06-01 15:24:06.000000000 -0500
@@ -24,17 +24,23 @@
*/
struct vfp_hard_struct {
+#ifdef CONFIG_VFPv3
+ __u64 fpregs[32];
+#else
__u64 fpregs[16];
+#endif
#if __LINUX_ARM_ARCH__ < 6
__u32 fpmx_state;
#endif
__u32 fpexc;
__u32 fpscr;
+#ifndef CONFIG_VFPv3
/*
* VFP implementation specific state
*/
__u32 fpinst;
__u32 fpinst2;
+#endif
#ifdef CONFIG_SMP
__u32 cpu;
#endif
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-06-01 22:38 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-31 17:57 [PATCH 1/12] Add VFP support for ARM V7 - OMAP 3430 support Syed Mohammed, Khasim
2007-05-31 21:33 ` Kevin Hilman
2007-05-31 21:58 ` Syed Mohammed, Khasim
2007-06-01 22:37 ` Syed Mohammed, Khasim
-- strict thread matches above, loose matches on Subject: below --
2007-06-01 22:38 Syed Mohammed, Khasim
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.