linux-mips.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Drop boot_mem_map
@ 2019-08-08  7:50 Jiaxun Yang
  2019-08-08  7:50 ` [PATCH 1/7] MIPS: init: " Jiaxun Yang
                   ` (8 more replies)
  0 siblings, 9 replies; 33+ messages in thread
From: Jiaxun Yang @ 2019-08-08  7:50 UTC (permalink / raw)
  To: linux-mips
  Cc: paul.burton, yasha.che3, aurelien, sfr, fancer.lancer,
	matt.redfearn, chenhc

Hi there:
I was trying to make a generic NUMA implementation for ip27 and loongson-3,
and the boot_mem_map without nid support become a barrier of merging memory
init code.

Rather than add nid support to boot_mem_map, this patchset drops the whole
boot_mem_map as it can be replaced by memblock functions.

--
Jiaxun Yang




^ permalink raw reply	[flat|nested] 33+ messages in thread
* Re: [PATCH 3/7] MIPS: fw: Record prom memory
@ 2019-08-14 14:20 Jiaxun Yang
  2019-08-14 14:28 ` Thomas Bogendoerfer
  0 siblings, 1 reply; 33+ messages in thread
From: Jiaxun Yang @ 2019-08-14 14:20 UTC (permalink / raw)
  To: Thomas Bogendoerfer
  Cc: aurelien, paul.burton, sfr, chenhc, Serge Semin, yasha.che3,
	matt.redfearn, linux-mips


2019年8月14日 下午8:50于 Thomas Bogendoerfer <tsbogend@alpha.franken.de>写道:
>
> On Wed, Aug 14, 2019 at 03:03:41PM +0300, Serge Semin wrote: 
> > On Thu, Aug 08, 2019 at 03:50:09PM +0800, Jiaxun Yang wrote: 
> > > boot_mem_map is nolonger exist so we need to maintain a list 
> > > of prom memory by ourselves. 
> > > 
> > > Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com> 
> > > --- 
> > >  arch/mips/fw/arc/memory.c | 20 ++++++++++++++------ 
> > >  1 file changed, 14 insertions(+), 6 deletions(-) 
> > > 
> > > diff --git a/arch/mips/fw/arc/memory.c b/arch/mips/fw/arc/memory.c 
> > > index 429b7f8d2aeb..02e954b3700e 100644 
> > > --- a/arch/mips/fw/arc/memory.c 
> > > +++ b/arch/mips/fw/arc/memory.c 
> > > @@ -27,6 +27,11 @@ 
> > >  
> > >  #undef DEBUG 
> > >  
> > > +#define MAX_PROM_MEM 5 
> > > +static phys_addr_t prom_mem_base[MAX_PROM_MEM] __initdata; 
> > > +static phys_addr_t prom_mem_size[MAX_PROM_MEM] __initdata; 
> > > +static unsigned int nr_prom_mem __initdata; 
> > > + 
> > >  /* 
> > >   * For ARC firmware memory functions the unit of meassuring memory is always 
> > >   * a 4k page of memory 
> > > @@ -129,6 +134,7 @@ void __init prom_meminit(void) 
> > >  } 
> > >  #endif 
> > >  
> > > + nr_prom_mem = 0; 
> > >  p = PROM_NULL_MDESC; 
> > >  while ((p = ArcGetMemoryDescriptor(p))) { 
> > >  unsigned long base, size; 
> > > @@ -139,6 +145,12 @@ void __init prom_meminit(void) 
> > >  type = prom_memtype_classify(p->type); 
> > >  
> > >  add_memory_region(base, size, type); 
> > > + 
> > > + if (type == BOOT_MEM_ROM_DATA) { 
> > > + prom_mem_base[nr_prom_mem] = base; 
> > > + prom_mem_size[nr_prom_mem] = size; 
> > > + nr_prom_mem++; 
> > 
> > Are you sure, that five prom-mem regions is enough? 
>
> it's not enough: 
Hi Thomas

I can see only two ROM DATA maps in your system.
As we're only recording ROM DATA here, rest types of memory will be handled by memblock.

>
> ARCH: Microsoft-Jazz 
> PROMLIB: ARC firmware Version 1 Revision 1 
> CPU revision is: 00000430 
> FPU revision is: 00000500 
> Determined physical RAM map: 
> memory: 00054000 @ 00000000 (reserved) 
> memory: 0002c000 @ 00054000 (usable) 
> memory: 0001f000 @ 007e0000 (ROM data) 
> memory: 007b2000 @ 007ff000 (usable) 
> memory: 0004f000 @ 00fb1000 (ROM data) 
> memory: 01000000 @ 01000000 (usable) 
> memory: 00323000 @ 00080000 (reserved) 
> memory: 0043d000 @ 003a3000 (usable) 
>
> that's from a Olivetti M700 system. 
>
> Thomas. 
>
> -- 
> Crap can work. Given enough thrust pigs will fly, but it's not necessarily a 
> good idea.                                                [ RFC1925, 2.3 ] 
--
Jiaxun Yang

^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2019-08-23 18:05 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-08  7:50 Drop boot_mem_map Jiaxun Yang
2019-08-08  7:50 ` [PATCH 1/7] MIPS: init: " Jiaxun Yang
2019-08-14 11:54   ` Serge Semin
2019-08-14 13:40     ` Jiaxun Yang
2019-08-08  7:50 ` [PATCH 2/7] MIPS: OCTEON: " Jiaxun Yang
2019-08-08  7:50 ` [PATCH 3/7] MIPS: fw: Record prom memory Jiaxun Yang
2019-08-14 12:03   ` Serge Semin
2019-08-14 12:50     ` Thomas Bogendoerfer
2019-08-14 13:45     ` Jiaxun Yang
2019-08-08  7:50 ` [PATCH 4/7] MIPS: malta: Drop prom_free_prom_memory Jiaxun Yang
2019-08-08  7:50 ` [PATCH 5/7] MIPS: msp: Record prom memory Jiaxun Yang
2019-08-14 12:12   ` Serge Semin
2019-08-08  7:50 ` [PATCH 6/7] MIPS: ip22: Drop addr_is_ram Jiaxun Yang
2019-08-08  7:50 ` [PATCH 7/7] MIPS: xlp: Drop boot_mem_map Jiaxun Yang
2019-08-12  4:56 ` [EXTERNAL]Drop boot_mem_map Paul Burton
2019-08-12  5:28   ` Jiaxun Yang
2019-08-13  8:39     ` Serge Semin
2019-08-13 15:09       ` Jiaxun Yang
2019-08-19 14:23 ` [PATCH v1 0/8] MIPS: Drop boot_mem_map Jiaxun Yang
2019-08-19 14:23   ` [PATCH v1 1/8] MIPS: OCTEON: " Jiaxun Yang
2019-08-19 14:23   ` [PATCH v1 2/8] MIPS: fw: Record prom memory Jiaxun Yang
2019-08-19 14:23   ` [PATCH v1 3/8] MIPS: malta: Drop prom_free_prom_memory Jiaxun Yang
2019-08-19 14:23   ` [PATCH v1 4/8] MIPS: msp: Record prom memory Jiaxun Yang
2019-08-19 14:23   ` [PATCH v1 5/8] MIPS: ip22: Drop addr_is_ram Jiaxun Yang
2019-08-19 14:23   ` [PATCH v1 6/8] MIPS: xlp: Drop boot_mem_map Jiaxun Yang
2019-08-19 14:23   ` [PATCH v1 7/8] MIPS: mm: " Jiaxun Yang
2019-08-19 14:23   ` [PATCH v1 8/8] MIPS: init: " Jiaxun Yang
2019-08-23 14:45   ` [PATCH v1 0/8] MIPS: " Paul Burton
2019-08-23 17:20     ` Jiaxun Yang
2019-08-23 17:36       ` Jiaxun Yang
2019-08-23 18:05     ` Serge Semin
2019-08-14 14:20 [PATCH 3/7] MIPS: fw: Record prom memory Jiaxun Yang
2019-08-14 14:28 ` Thomas Bogendoerfer

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).