* [PATCH] Add support for lite5200b board.
@ 2006-01-24 17:12 John Rigby
2006-01-24 18:17 ` Sylvain Munaut
0 siblings, 1 reply; 13+ messages in thread
From: John Rigby @ 2006-01-24 17:12 UTC (permalink / raw)
To: Sylvain Munaut; +Cc: linuxppc-embedded
[-- Attachment #1: Type: text/plain, Size: 64 bytes --]
Sylvain,
Here is an updated patch for the liteb board.
John
[-- Attachment #2: liteb.patch --]
[-- Type: text/x-patch, Size: 4151 bytes --]
Adds support for liteb board.
Signed-off-by: John Rigby <jrigby@freescale.com>
arch/ppc/Kconfig | 8 ++++++++
arch/ppc/platforms/lite5200.c | 38 +++++++++++++++++++++++++++++++++++---
arch/ppc/syslib/mpc52xx_pci.c | 3 ++-
include/linux/pci_ids.h | 1 +
4 files changed, 46 insertions(+), 4 deletions(-)
3a68d4fcd6a175c7887e570b3f11af07a812bdc0
diff --git a/arch/ppc/Kconfig b/arch/ppc/Kconfig
index 11899f0..eecb608 100644
--- a/arch/ppc/Kconfig
+++ b/arch/ppc/Kconfig
@@ -664,6 +664,14 @@ config LITE5200
much but it's only been tested on this board version. I think this
board is also known as IceCube.
+config LITE5200B
+ bool "Freescale LITE5200B"
+ depends on LITE5200
+ help
+ Support for the LITE5200B dev board for the MPC5200 from Freescale.
+ This is the new board with 2 PCI slots.
+
+
config MPC834x_SYS
bool "Freescale MPC834x SYS"
help
diff --git a/arch/ppc/platforms/lite5200.c b/arch/ppc/platforms/lite5200.c
index 7ed52dc..8cd9c67 100644
--- a/arch/ppc/platforms/lite5200.c
+++ b/arch/ppc/platforms/lite5200.c
@@ -36,6 +36,7 @@
#include <asm/mpc52xx.h>
#include <asm/ppc_sys.h>
#include <asm/machdep.h>
+#include <asm/pci-bridge.h>
#include <syslib/mpc52xx_pci.h>
@@ -70,12 +71,32 @@ lite5200_show_cpuinfo(struct seq_file *m
}
#ifdef CONFIG_PCI
+#ifdef CONFIG_LITE5200B
+static int
+lite5200_map_irq(struct pci_dev *dev, unsigned char idsel,
+ unsigned char pin)
+{
+ static char pci_irq_table[][4] =
+ /*
+ * PCI IDSEL/INTPIN->INTLINE
+ * A B C D
+ */
+ {
+ {MPC52xx_IRQ0, MPC52xx_IRQ1, MPC52xx_IRQ2, MPC52xx_IRQ3},
+ {MPC52xx_IRQ1, MPC52xx_IRQ2, MPC52xx_IRQ3, MPC52xx_IRQ0},
+ };
+
+ const long min_idsel = 24, max_idsel = 25, irqs_per_slot = 4;
+ return PCI_IRQ_TABLE_LOOKUP;
+}
+#else /* Original Lite */
static int
lite5200_map_irq(struct pci_dev *dev, unsigned char idsel, unsigned char pin)
{
return (pin == 1) && (idsel==24) ? MPC52xx_IRQ0 : -1;
}
#endif
+#endif
static void __init
lite5200_setup_cpu(void)
@@ -111,6 +132,11 @@ lite5200_setup_cpu(void)
/* Get port mux config */
port_config = in_be32(&gpio->port_config);
+#ifdef CONFIG_LITE5200B
+ /* turn on cs1 */
+ port_config |= 0x80000000;
+#endif
+
/* 48Mhz internal, pin is GPIO */
port_config &= ~0x00800000;
@@ -129,11 +155,17 @@ lite5200_setup_cpu(void)
out_be32(&xlb->config, in_be32(&xlb->config) | MPC52xx_XLB_CFG_SNOOP);
out_be32(&xlb->snoop_window, MPC52xx_PCI_TARGET_MEM | 0x1d);
- /* IRQ[0-3] setup : IRQ0 - Level Active Low */
- /* IRQ[1-3] - Level Active High */
+ /* IRQ[0-3] setup */
intr_ctrl = in_be32(&intr->ctrl);
intr_ctrl &= ~0x00ff0000;
- intr_ctrl |= 0x00c00000;
+#if CONFIG_LITE5200B
+ /* IRQ[0-3] Level Active Low */
+ intr_ctrl |= 0x00ff0000;
+#else
+ /* IRQ0 Level Active Low
+ * IRQ[1-3] Level Active High */
+ intr_ctrl |= 0x00c00000;
+#endif
out_be32(&intr->ctrl, intr_ctrl);
/* Unmap reg zone */
diff --git a/arch/ppc/syslib/mpc52xx_pci.c b/arch/ppc/syslib/mpc52xx_pci.c
index 313c96e..c5bf453 100644
--- a/arch/ppc/syslib/mpc52xx_pci.c
+++ b/arch/ppc/syslib/mpc52xx_pci.c
@@ -227,7 +227,8 @@ mpc52xx_pci_fixup_resources(struct pci_d
/* The PCI Host bridge of MPC52xx has a prefetch memory resource
fixed to 1Gb. Doesn't fit in the resource system so we remove it */
if ( (dev->vendor == PCI_VENDOR_ID_MOTOROLA) &&
- (dev->device == PCI_DEVICE_ID_MOTOROLA_MPC5200) ) {
+ (dev->device == PCI_DEVICE_ID_MOTOROLA_MPC5200
+ || dev->device == PCI_DEVICE_ID_MOTOROLA_MPC5200B) ) {
struct resource *res = &dev->resource[1];
res->start = res->end = res->flags = 0;
}
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
index ecc1fc1..c16cf15 100644
--- a/include/linux/pci_ids.h
+++ b/include/linux/pci_ids.h
@@ -778,6 +778,7 @@
#define PCI_DEVICE_ID_MOTOROLA_HAWK 0x4803
#define PCI_DEVICE_ID_MOTOROLA_HARRIER 0x480b
#define PCI_DEVICE_ID_MOTOROLA_MPC5200 0x5803
+#define PCI_DEVICE_ID_MOTOROLA_MPC5200B 0x5809
#define PCI_VENDOR_ID_PROMISE 0x105a
#define PCI_DEVICE_ID_PROMISE_20265 0x0d30
--
1.1.3
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH] Add support for lite5200b board.
2006-01-24 17:12 [PATCH] Add support for lite5200b board John Rigby
@ 2006-01-24 18:17 ` Sylvain Munaut
2006-01-25 10:24 ` Txema Lopez
0 siblings, 1 reply; 13+ messages in thread
From: Sylvain Munaut @ 2006-01-24 18:17 UTC (permalink / raw)
To: John Rigby; +Cc: linuxppc-embedded
Hi John,
John Rigby wrote:
> Sylvain,
>
> Here is an updated patch for the liteb board.
>
> John
Looks good. But two comments :
* Isn't a modif to the arch/ppc/platform/Makefile missing ?
* What's the "cs-1" you turn on there :
>
> +#ifdef CONFIG_LITE5200B
> + /* turn on cs1 */
> + port_config |= 0x80000000;
> +#endif
I couldn't find the schema / real-doc of the Lite5200b,
is this available somewhere on-line ?
Sylvain
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] Add support for lite5200b board.
2006-01-24 18:17 ` Sylvain Munaut
@ 2006-01-25 10:24 ` Txema Lopez
2006-01-25 23:21 ` Sylvain Munaut
0 siblings, 1 reply; 13+ messages in thread
From: Txema Lopez @ 2006-01-25 10:24 UTC (permalink / raw)
To: Sylvain Munaut; +Cc: John Rigby, linuxppc-embedded
[-- Attachment #1: Type: text/plain, Size: 963 bytes --]
Hi ,
Sylvain Munaut wrote:
>Hi John,
>
>John Rigby wrote:
>
>
>>Sylvain,
>>
>>Here is an updated patch for the liteb board.
>>
>>John
>>
>>
>
>
>
We have a Lite5200b and are very interesting in this point.
For wich kernel version is this patch?
>Looks good. But two comments :
>
> * Isn't a modif to the arch/ppc/platform/Makefile missing ?
> * What's the "cs-1" you turn on there :
>
>
>
>>
>>+#ifdef CONFIG_LITE5200B
>>+ /* turn on cs1 */
>>+ port_config |= 0x80000000;
>>+#endif
>>
>>
>
>
>
What fix this ?
> I couldn't find the schema / real-doc of the Lite5200b,
>is this available somewhere on-line ?
>
>
>
>
>
Sylvain, I don't know if there are some Lite5200b doc on line, but I
have the schematics and could send to you or to anyone who want it.
> Sylvain
>_______________________________________________
>Linuxppc-embedded mailing list
>Linuxppc-embedded@ozlabs.org
>https://ozlabs.org/mailman/listinfo/linuxppc-embedded
>
>
[-- Attachment #2: tlopez.vcf --]
[-- Type: text/x-vcard, Size: 324 bytes --]
begin:vcard
fn:Jose Maria Lopez
n:Lopez;Jose Maria
org:Fagor Automation S. Coop.
adr:;;San Andres 19. Apdo. 144;Arrasate-Mondragon;;20500;Spain
email;internet:tlopez@aotek.es
title:Sotware engineer
tel;work:(34) 943719200
tel;fax:(34) 943791712
x-mozilla-html:FALSE
url:http://www.fagorautomation.es
version:2.1
end:vcard
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] Add support for lite5200b board.
2006-01-25 10:24 ` Txema Lopez
@ 2006-01-25 23:21 ` Sylvain Munaut
2006-01-25 23:44 ` Grant Likely
2006-01-26 21:29 ` John Rigby
0 siblings, 2 replies; 13+ messages in thread
From: Sylvain Munaut @ 2006-01-25 23:21 UTC (permalink / raw)
To: Txema Lopez; +Cc: John Rigby, linuxppc-embedded
Hi
Txema Lopez wrote:
> Sylvain Munaut wrote:
>> John Rigby wrote:
>>> Here is an updated patch for the liteb board.
>>>
> We have a Lite5200b and are very interesting in this point.
>
> For wich kernel version is this patch?
Should apply fine on vanilla. My suggestion for now is take vanilla,
apply this patch, then the 2-3 patch from Andrey for BestComm and stuff.
I haven't gotten around setup a git tree ... anyone know a good tutorial
not only on how to checkout stuff but how to well manage a remote
repository for publishing ?
>> Looks good. But two comments :
>>
>> * Isn't a modif to the arch/ppc/platform/Makefile missing ?
>> * What's the "cs-1" you turn on there :
>>
>>
>>
>>>
>>> +#ifdef CONFIG_LITE5200B
>>> + /* turn on cs1 */
>>> + port_config |= 0x80000000;
>>> +#endif
>>>
> What fix this ?
It's to activate the second bank of DDR-SDRAM. However, I find that's
the job of the bootloader. Fully initializing the memory subsystem is
one of the few things the kernel expects, so I probably won't include this.
My politics (at least for the 5200 stuff) is the boot loader should :
* Init memory stuff like it wants (at least boot flash & all dynamic
mem). The init of some static chipselect could be done in platform init.
* Put the pin muxes & stuff to the "safest" mode (that is for example
GPIO Input) execpt for what it requires for boot (like a console PSC and
ethernet). All other pin mux (defnitive one) should be done in platform
init depending on the board.
>> I couldn't find the schema / real-doc of the Lite5200b,
>> is this available somewhere on-line ?
>>
> Sylvain, I don't know if there are some Lite5200b doc on line, but I
> have the schematics and could send to you or to anyone who want it.
Yes, please, I'd appreciate an early copy.
John sent the link to the User Manual but the latter hasn't the full
schematic.
Sylvain
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] Add support for lite5200b board.
2006-01-25 23:21 ` Sylvain Munaut
@ 2006-01-25 23:44 ` Grant Likely
2006-01-26 21:29 ` John Rigby
1 sibling, 0 replies; 13+ messages in thread
From: Grant Likely @ 2006-01-25 23:44 UTC (permalink / raw)
To: Sylvain Munaut; +Cc: Txema Lopez, John Rigby, linuxppc-embedded
Sylvain Munaut wrote:
>
> I haven't gotten around setup a git tree ... anyone know a good tutorial
> not only on how to checkout stuff but how to well manage a remote
> repository for publishing ?
Try this link; I've got it bookmarked as "Git Essentials" :)
http://wellington.pm.org/archive/200510/git/
--
Grant Likely, B.Sc. P.Eng.
Secret Lab Technologies Ltd.
(403) 663-0761
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] Add support for lite5200b board.
2006-01-25 23:21 ` Sylvain Munaut
2006-01-25 23:44 ` Grant Likely
@ 2006-01-26 21:29 ` John Rigby
2006-01-29 22:21 ` Sylvain Munaut
1 sibling, 1 reply; 13+ messages in thread
From: John Rigby @ 2006-01-26 21:29 UTC (permalink / raw)
To: Sylvain Munaut; +Cc: Txema Lopez, John Rigby, linuxppc-embedded
[-- Attachment #1: Type: text/plain, Size: 2404 bytes --]
On 1/25/06, Sylvain Munaut <tnt@246tnt.com> wrote:
>
>
>
> Should apply fine on vanilla. My suggestion for now is take vanilla,
> apply this patch, then the 2-3 patch from Andrey for BestComm and stuff.
I was working on getting bestcomm and fec working, but forward porting
my old 2.6.10 code to current is turning out to be more difficult than I
expected.
If you already have working code then I'll stop working on them.
Where are these patches? I'm new to this list so I don't have much history.
Would I find these patches in the archive?
I haven't gotten around setup a git tree ... anyone know a good tutorial
> not only on how to checkout stuff but how to well manage a remote
> repository for publishing ?
>
>
> >> Looks good. But two comments :
> >>
> >> * Isn't a modif to the arch/ppc/platform/Makefile missing ?
> >> * What's the "cs-1" you turn on there :
> >>
> >>
> >>
> >>>
> >>> +#ifdef CONFIG_LITE5200B
> >>> + /* turn on cs1 */
> >>> + port_config |= 0x80000000;
> >>> +#endif
> >>>
> > What fix this ?
>
> It's to activate the second bank of DDR-SDRAM. However, I find that's
> the job of the bootloader. Fully initializing the memory subsystem is
> one of the few things the kernel expects, so I probably won't include
> this.
I agree completely.
My politics (at least for the 5200 stuff) is the boot loader should :
> * Init memory stuff like it wants (at least boot flash & all dynamic
> mem). The init of some static chipselect could be done in platform init.
> * Put the pin muxes & stuff to the "safest" mode (that is for example
> GPIO Input) execpt for what it requires for boot (like a console PSC and
> ethernet). All other pin mux (defnitive one) should be done in platform
> init depending on the board.
>
>
> >> I couldn't find the schema / real-doc of the Lite5200b,
> >> is this available somewhere on-line ?
> >>
> > Sylvain, I don't know if there are some Lite5200b doc on line, but I
> > have the schematics and could send to you or to anyone who want it.
>
> Yes, please, I'd appreciate an early copy.
> John sent the link to the User Manual but the latter hasn't the full
> schematic.
>
>
>
> Sylvain
> _______________________________________________
> Linuxppc-embedded mailing list
> Linuxppc-embedded@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-embedded
>
[-- Attachment #2: Type: text/html, Size: 3366 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] Add support for lite5200b board.
2006-01-26 21:29 ` John Rigby
@ 2006-01-29 22:21 ` Sylvain Munaut
2006-01-30 18:52 ` John Rigby
0 siblings, 1 reply; 13+ messages in thread
From: Sylvain Munaut @ 2006-01-29 22:21 UTC (permalink / raw)
To: John Rigby; +Cc: Txema Lopez, John Rigby, linuxppc-embedded
John Rigby wrote:
>
>
> On 1/25/06, *Sylvain Munaut* <tnt@246tnt.com <mailto:tnt@246tnt.com>> wrote:
>
>
>
> Should apply fine on vanilla. My suggestion for now is take vanilla,
> apply this patch, then the 2-3 patch from Andrey for BestComm and stuff.
>
>
> I was working on getting bestcomm and fec working, but forward porting
> my old 2.6.10 code to current is turning out to be more difficult than I
> expected.
> If you already have working code then I'll stop working on them.
>
> Where are these patches? I'm new to this list so I don't have much
> history.
> Would I find these patches in the archive?
Checkout (with git)
http://gitbits.246tNt.com/gitbits/linux-2.6-mpc52xx
then apply
http://gitbits.246tNt.com/patches/bcomm-to-split.diff
(I haven't cleanly splitted it up yet and right now I must go, so it's
probably gonna be in the git tree this week, under the 'bestcomm' head ;)
Please report if it works fine on your board (both lite5200 and
lite5200b reports are welcome). I only did quick tests.
Sylvain
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] Add support for lite5200b board.
2006-01-29 22:21 ` Sylvain Munaut
@ 2006-01-30 18:52 ` John Rigby
2006-01-30 20:29 ` Sylvain Munaut
0 siblings, 1 reply; 13+ messages in thread
From: John Rigby @ 2006-01-30 18:52 UTC (permalink / raw)
To: Sylvain Munaut; +Cc: Linuxppc-embedded
I tried:
git clone http://gitbits.246tnt.com/gitbits/linux-2.6-mpc52xx
and got:
defaulting to local storage area
Cannot get remote repository information.
Perhaps git-update-server-info needs to be run there?
On 1/29/06, Sylvain Munaut <tnt@246tnt.com> wrote:
> John Rigby wrote:
> >
> >
> > On 1/25/06, *Sylvain Munaut* <tnt@246tnt.com <mailto:tnt@246tnt.com>> w=
rote:
> >
> >
> >
> > Should apply fine on vanilla. My suggestion for now is take vanilla=
,
> > apply this patch, then the 2-3 patch from Andrey for BestComm and s=
tuff.
> >
> >
> > I was working on getting bestcomm and fec working, but forward porting
> > my old 2.6.10 code to current is turning out to be more difficult than =
I
> > expected.
> > If you already have working code then I'll stop working on them.
> >
> > Where are these patches? I'm new to this list so I don't have much
> > history.
> > Would I find these patches in the archive?
>
> Checkout (with git)
>
> http://gitbits.246tNt.com/gitbits/linux-2.6-mpc52xx
>
> then apply
>
> http://gitbits.246tNt.com/patches/bcomm-to-split.diff
>
> (I haven't cleanly splitted it up yet and right now I must go, so it's
> probably gonna be in the git tree this week, under the 'bestcomm' head ;)
>
>
> Please report if it works fine on your board (both lite5200 and
> lite5200b reports are welcome). I only did quick tests.
>
>
>
> Sylvain
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] Add support for lite5200b board.
2006-01-30 18:52 ` John Rigby
@ 2006-01-30 20:29 ` Sylvain Munaut
2006-01-30 21:17 ` John Rigby
0 siblings, 1 reply; 13+ messages in thread
From: Sylvain Munaut @ 2006-01-30 20:29 UTC (permalink / raw)
To: John Rigby; +Cc: Linuxppc-embedded
Ooops,
git clone http://gitbits.246tnt.com/gitbits/linux-2.6-mpc52xx.git
(notice the previously missing .git at the end)
Sylvain
John Rigby wrote:
> I tried:
> git clone http://gitbits.246tnt.com/gitbits/linux-2.6-mpc52xx
> and got:
> defaulting to local storage area
> Cannot get remote repository information.
> Perhaps git-update-server-info needs to be run there?
>
>
>
> On 1/29/06, Sylvain Munaut <tnt@246tnt.com> wrote:
>
>>John Rigby wrote:
>>
>>>
>>>On 1/25/06, *Sylvain Munaut* <tnt@246tnt.com <mailto:tnt@246tnt.com>> wrote:
>>>
>>>
>>>
>>> Should apply fine on vanilla. My suggestion for now is take vanilla,
>>> apply this patch, then the 2-3 patch from Andrey for BestComm and stuff.
>>>
>>>
>>>I was working on getting bestcomm and fec working, but forward porting
>>>my old 2.6.10 code to current is turning out to be more difficult than I
>>>expected.
>>>If you already have working code then I'll stop working on them.
>>>
>>>Where are these patches? I'm new to this list so I don't have much
>>>history.
>>>Would I find these patches in the archive?
>>
>>Checkout (with git)
>>
>>http://gitbits.246tNt.com/gitbits/linux-2.6-mpc52xx
>>
>>then apply
>>
>>http://gitbits.246tNt.com/patches/bcomm-to-split.diff
>>
>> (I haven't cleanly splitted it up yet and right now I must go, so it's
>>probably gonna be in the git tree this week, under the 'bestcomm' head ;)
>>
>>
>>Please report if it works fine on your board (both lite5200 and
>>lite5200b reports are welcome). I only did quick tests.
>>
>>
>>
>> Sylvain
>>
>
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] Add support for lite5200b board.
2006-01-30 20:29 ` Sylvain Munaut
@ 2006-01-30 21:17 ` John Rigby
2006-01-30 22:17 ` John Rigby
0 siblings, 1 reply; 13+ messages in thread
From: John Rigby @ 2006-01-30 21:17 UTC (permalink / raw)
To: Sylvain Munaut; +Cc: Linuxppc-embedded
Thanks, I had tried stripping off the http: and adding the .git but
not just adding the .git.
On 1/30/06, Sylvain Munaut <tnt@246tnt.com> wrote:
> Ooops,
>
> git clone http://gitbits.246tnt.com/gitbits/linux-2.6-mpc52xx.git
>
> (notice the previously missing .git at the end)
>
>
> Sylvain
>
> John Rigby wrote:
> > I tried:
> > git clone http://gitbits.246tnt.com/gitbits/linux-2.6-mpc52xx
> > and got:
> > defaulting to local storage area
> > Cannot get remote repository information.
> > Perhaps git-update-server-info needs to be run there?
> >
> >
> >
> > On 1/29/06, Sylvain Munaut <tnt@246tnt.com> wrote:
> >
> >>John Rigby wrote:
> >>
> >>>
> >>>On 1/25/06, *Sylvain Munaut* <tnt@246tnt.com <mailto:tnt@246tnt.com>> =
wrote:
> >>>
> >>>
> >>>
> >>> Should apply fine on vanilla. My suggestion for now is take vanill=
a,
> >>> apply this patch, then the 2-3 patch from Andrey for BestComm and =
stuff.
> >>>
> >>>
> >>>I was working on getting bestcomm and fec working, but forward porting
> >>>my old 2.6.10 code to current is turning out to be more difficult than=
I
> >>>expected.
> >>>If you already have working code then I'll stop working on them.
> >>>
> >>>Where are these patches? I'm new to this list so I don't have much
> >>>history.
> >>>Would I find these patches in the archive?
> >>
> >>Checkout (with git)
> >>
> >>http://gitbits.246tNt.com/gitbits/linux-2.6-mpc52xx
> >>
> >>then apply
> >>
> >>http://gitbits.246tNt.com/patches/bcomm-to-split.diff
> >>
> >> (I haven't cleanly splitted it up yet and right now I must go, so it's
> >>probably gonna be in the git tree this week, under the 'bestcomm' head =
;)
> >>
> >>
> >>Please report if it works fine on your board (both lite5200 and
> >>lite5200b reports are welcome). I only did quick tests.
> >>
> >>
> >>
> >> Sylvain
> >>
> >
> >
>
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] Add support for lite5200b board.
2006-01-30 21:17 ` John Rigby
@ 2006-01-30 22:17 ` John Rigby
2006-01-30 22:22 ` John Rigby
0 siblings, 1 reply; 13+ messages in thread
From: John Rigby @ 2006-01-30 22:17 UTC (permalink / raw)
To: Sylvain Munaut; +Cc: Linuxppc-embedded
Ok checked out the git tree and applied the patch.
The drivers/net/fec_mpc52xxx directory seems to be missing.
On 1/30/06, John Rigby <jcrigby@gmail.com> wrote:
> Thanks, I had tried stripping off the http: and adding the .git but
> not just adding the .git.
>
>
> On 1/30/06, Sylvain Munaut <tnt@246tnt.com> wrote:
> > Ooops,
> >
> > git clone http://gitbits.246tnt.com/gitbits/linux-2.6-mpc52xx.git
> >
> > (notice the previously missing .git at the end)
> >
> >
> > Sylvain
> >
> > John Rigby wrote:
> > > I tried:
> > > git clone http://gitbits.246tnt.com/gitbits/linux-2.6-mpc52xx
> > > and got:
> > > defaulting to local storage area
> > > Cannot get remote repository information.
> > > Perhaps git-update-server-info needs to be run there?
> > >
> > >
> > >
> > > On 1/29/06, Sylvain Munaut <tnt@246tnt.com> wrote:
> > >
> > >>John Rigby wrote:
> > >>
> > >>>
> > >>>On 1/25/06, *Sylvain Munaut* <tnt@246tnt.com <mailto:tnt@246tnt.com>=
> wrote:
> > >>>
> > >>>
> > >>>
> > >>> Should apply fine on vanilla. My suggestion for now is take vani=
lla,
> > >>> apply this patch, then the 2-3 patch from Andrey for BestComm an=
d stuff.
> > >>>
> > >>>
> > >>>I was working on getting bestcomm and fec working, but forward porti=
ng
> > >>>my old 2.6.10 code to current is turning out to be more difficult th=
an I
> > >>>expected.
> > >>>If you already have working code then I'll stop working on them.
> > >>>
> > >>>Where are these patches? I'm new to this list so I don't have much
> > >>>history.
> > >>>Would I find these patches in the archive?
> > >>
> > >>Checkout (with git)
> > >>
> > >>http://gitbits.246tNt.com/gitbits/linux-2.6-mpc52xx
> > >>
> > >>then apply
> > >>
> > >>http://gitbits.246tNt.com/patches/bcomm-to-split.diff
> > >>
> > >> (I haven't cleanly splitted it up yet and right now I must go, so it=
's
> > >>probably gonna be in the git tree this week, under the 'bestcomm' hea=
d ;)
> > >>
> > >>
> > >>Please report if it works fine on your board (both lite5200 and
> > >>lite5200b reports are welcome). I only did quick tests.
> > >>
> > >>
> > >>
> > >> Sylvain
> > >>
> > >
> > >
> >
> >
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] Add support for lite5200b board.
2006-01-30 22:17 ` John Rigby
@ 2006-01-30 22:22 ` John Rigby
2006-01-30 23:45 ` Sylvain Munaut
0 siblings, 1 reply; 13+ messages in thread
From: John Rigby @ 2006-01-30 22:22 UTC (permalink / raw)
To: Sylvain Munaut; +Cc: Linuxppc-embedded
and the arch/ppc/bestcomm directory as well
looks like maybe you didn't do a git-update-index?
On 1/30/06, John Rigby <jcrigby@gmail.com> wrote:
> Ok checked out the git tree and applied the patch.
> The drivers/net/fec_mpc52xxx directory seems to be missing.
>
> On 1/30/06, John Rigby <jcrigby@gmail.com> wrote:
> > Thanks, I had tried stripping off the http: and adding the .git but
> > not just adding the .git.
> >
> >
> > On 1/30/06, Sylvain Munaut <tnt@246tnt.com> wrote:
> > > Ooops,
> > >
> > > git clone http://gitbits.246tnt.com/gitbits/linux-2.6-mpc52xx.git
> > >
> > > (notice the previously missing .git at the end)
> > >
> > >
> > > Sylvain
> > >
> > > John Rigby wrote:
> > > > I tried:
> > > > git clone http://gitbits.246tnt.com/gitbits/linux-2.6-mpc52xx
> > > > and got:
> > > > defaulting to local storage area
> > > > Cannot get remote repository information.
> > > > Perhaps git-update-server-info needs to be run there?
> > > >
> > > >
> > > >
> > > > On 1/29/06, Sylvain Munaut <tnt@246tnt.com> wrote:
> > > >
> > > >>John Rigby wrote:
> > > >>
> > > >>>
> > > >>>On 1/25/06, *Sylvain Munaut* <tnt@246tnt.com <mailto:tnt@246tnt.co=
m>> wrote:
> > > >>>
> > > >>>
> > > >>>
> > > >>> Should apply fine on vanilla. My suggestion for now is take va=
nilla,
> > > >>> apply this patch, then the 2-3 patch from Andrey for BestComm =
and stuff.
> > > >>>
> > > >>>
> > > >>>I was working on getting bestcomm and fec working, but forward por=
ting
> > > >>>my old 2.6.10 code to current is turning out to be more difficult =
than I
> > > >>>expected.
> > > >>>If you already have working code then I'll stop working on them.
> > > >>>
> > > >>>Where are these patches? I'm new to this list so I don't have muc=
h
> > > >>>history.
> > > >>>Would I find these patches in the archive?
> > > >>
> > > >>Checkout (with git)
> > > >>
> > > >>http://gitbits.246tNt.com/gitbits/linux-2.6-mpc52xx
> > > >>
> > > >>then apply
> > > >>
> > > >>http://gitbits.246tNt.com/patches/bcomm-to-split.diff
> > > >>
> > > >> (I haven't cleanly splitted it up yet and right now I must go, so =
it's
> > > >>probably gonna be in the git tree this week, under the 'bestcomm' h=
ead ;)
> > > >>
> > > >>
> > > >>Please report if it works fine on your board (both lite5200 and
> > > >>lite5200b reports are welcome). I only did quick tests.
> > > >>
> > > >>
> > > >>
> > > >> Sylvain
> > > >>
> > > >
> > > >
> > >
> > >
> >
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] Add support for lite5200b board.
2006-01-30 22:22 ` John Rigby
@ 2006-01-30 23:45 ` Sylvain Munaut
0 siblings, 0 replies; 13+ messages in thread
From: Sylvain Munaut @ 2006-01-30 23:45 UTC (permalink / raw)
To: John Rigby; +Cc: Linuxppc-embedded
John Rigby wrote:
> and the arch/ppc/bestcomm directory as well
>
> looks like maybe you didn't do a git-update-index?
Damned ... I was just passing by my laptop in a hurry when I made that
post and I should have took the time to do it properly ...
I just did a cg-diff that I piped directly into the file, hoping it
would work. I forgot about the new files.
Check the file again, it should be ok this time. Sorry for the delay.
Sylvain
> On 1/30/06, John Rigby <jcrigby@gmail.com> wrote:
>
>>Ok checked out the git tree and applied the patch.
>>The drivers/net/fec_mpc52xxx directory seems to be missing.
>>
>>On 1/30/06, John Rigby <jcrigby@gmail.com> wrote:
>>
>>>Thanks, I had tried stripping off the http: and adding the .git but
>>>not just adding the .git.
>>>
>>>
>>>On 1/30/06, Sylvain Munaut <tnt@246tnt.com> wrote:
>>>
>>>>Ooops,
>>>>
>>>>git clone http://gitbits.246tnt.com/gitbits/linux-2.6-mpc52xx.git
>>>>
>>>>(notice the previously missing .git at the end)
>>>>
>>>>
>>>> Sylvain
>>>>
>>>>John Rigby wrote:
>>>>
>>>>>I tried:
>>>>>git clone http://gitbits.246tnt.com/gitbits/linux-2.6-mpc52xx
>>>>>and got:
>>>>>defaulting to local storage area
>>>>>Cannot get remote repository information.
>>>>>Perhaps git-update-server-info needs to be run there?
>>>>>
>>>>>
>>>>>
>>>>>On 1/29/06, Sylvain Munaut <tnt@246tnt.com> wrote:
>>>>>
>>>>>
>>>>>>John Rigby wrote:
>>>>>>
>>>>>>
>>>>>>>On 1/25/06, *Sylvain Munaut* <tnt@246tnt.com <mailto:tnt@246tnt.com>> wrote:
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Should apply fine on vanilla. My suggestion for now is take vanilla,
>>>>>>> apply this patch, then the 2-3 patch from Andrey for BestComm and stuff.
>>>>>>>
>>>>>>>
>>>>>>>I was working on getting bestcomm and fec working, but forward porting
>>>>>>>my old 2.6.10 code to current is turning out to be more difficult than I
>>>>>>>expected.
>>>>>>>If you already have working code then I'll stop working on them.
>>>>>>>
>>>>>>>Where are these patches? I'm new to this list so I don't have much
>>>>>>>history.
>>>>>>>Would I find these patches in the archive?
>>>>>>
>>>>>>Checkout (with git)
>>>>>>
>>>>>>http://gitbits.246tNt.com/gitbits/linux-2.6-mpc52xx
>>>>>>
>>>>>>then apply
>>>>>>
>>>>>>http://gitbits.246tNt.com/patches/bcomm-to-split.diff
>>>>>>
>>>>>>(I haven't cleanly splitted it up yet and right now I must go, so it's
>>>>>>probably gonna be in the git tree this week, under the 'bestcomm' head ;)
>>>>>>
>>>>>>
>>>>>>Please report if it works fine on your board (both lite5200 and
>>>>>>lite5200b reports are welcome). I only did quick tests.
>>>>>>
>>>>>>
>>>>>>
>>>>>> Sylvain
>>>>>>
>>>>>
>>>>>
>>>>
>
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2006-01-30 23:45 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-24 17:12 [PATCH] Add support for lite5200b board John Rigby
2006-01-24 18:17 ` Sylvain Munaut
2006-01-25 10:24 ` Txema Lopez
2006-01-25 23:21 ` Sylvain Munaut
2006-01-25 23:44 ` Grant Likely
2006-01-26 21:29 ` John Rigby
2006-01-29 22:21 ` Sylvain Munaut
2006-01-30 18:52 ` John Rigby
2006-01-30 20:29 ` Sylvain Munaut
2006-01-30 21:17 ` John Rigby
2006-01-30 22:17 ` John Rigby
2006-01-30 22:22 ` John Rigby
2006-01-30 23:45 ` Sylvain Munaut
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).