<br><br><div class="gmail_quote">2011/6/30 Jean-Christophe PLAGNIOL-VILLARD <span dir="ltr">&lt;<a href="mailto:plagnioj@jcrosoft.com">plagnioj@jcrosoft.com</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im">&gt; @@ -0,0 +1,32 @@<br>
&gt; +/*<br>
&gt; + * Copyright (C) 2011 Antony Pavlov &lt;<a href="mailto:antonynpavlov@gmail.com">antonynpavlov@gmail.com</a>&gt;<br>
&gt; + *<br>
&gt; + * This program is free software; you can redistribute it and/or<br>
&gt; + * modify it under the terms of the GNU General Public License as<br>
&gt; + * published by the Free Software Foundation; either version 2 of<br>
&gt; + * the License, or (at your option) any later version.<br>
&gt; + *<br>
&gt; + * This program is distributed in the hope that it will be useful,<br>
&gt; + * but WITHOUT ANY WARRANTY; without even the implied warranty of<br>
&gt; + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the<br>
&gt; + * GNU General Public License for more details.<br>
&gt; + *<br>
&gt; + * You should have received a copy of the GNU General Public License<br>
&gt; + * along with this program; if not, write to the Free Software<br>
&gt; + * Foundation, Inc., 59 Temple Place, Suite 330, Boston,<br>
&gt; + * MA 02111-1307 USA<br>
&gt; + *<br>
&gt; + */<br>
&gt; +<br>
&gt; +/**<br>
&gt; + * @file<br>
&gt; + * @brief Resetting an CPU<br>
&gt; + */<br>
&gt; +<br>
&gt; +#include &lt;common.h&gt;<br>
&gt; +<br>
&gt; +void __noreturn reset_cpu(ulong addr)<br>
&gt; +{<br>
&gt; +     mips_machine_restart();<br>
&gt; +}<br>
&gt; +EXPORT_SYMBOL(reset_cpu);<br>
</div>no need of this manage it at machine level<br>
<div><div></div><div class="h5">&gt; diff --git a/arch/mips/include/asm/types.h b/arch/mips/include/asm/types.h<br>
&gt; new file mode 100644<br>
&gt; index 0000000..5c1e2de<br>
&gt; --- /dev/null<br>
&gt; +++ b/arch/mips/include/asm/types.h<br>
&gt; @@ -0,0 +1,44 @@<br>
&gt; +/*<br>
&gt; + * This program is free software; you can redistribute it and/or<br>
&gt; + * modify it under the terms of the GNU General Public License as<br>
&gt; + * published by the Free Software Foundation; either version 2 of<br>
&gt; + * the License, or (at your option) any later version.<br>
&gt; + *<br>
&gt; + * This program is distributed in the hope that it will be useful,<br>
&gt; + * but WITHOUT ANY WARRANTY; without even the implied warranty of<br>
&gt; + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the<br>
&gt; + * GNU General Public License for more details.<br>
&gt; + *<br>
&gt; + * You should have received a copy of the GNU General Public License<br>
&gt; + * along with this program; if not, write to the Free Software<br>
&gt; + * Foundation, Inc., 59 Temple Place, Suite 330, Boston,<br>
&gt; + * MA 02111-1307 USA<br>
&gt; + *<br>
&gt; + */<br>
&gt; +<br>
&gt; +#ifndef __ASM_MIPS_TYPES_H<br>
&gt; +#define __ASM_MIPS_TYPES_H<br>
&gt; +<br>
&gt; +#ifndef __ASSEMBLY__<br>
&gt; +<br>
&gt; +typedef __signed__ char __s8;<br>
&gt; +typedef unsigned char __u8;<br>
&gt; +<br>
&gt; +typedef __signed__ short __s16;<br>
&gt; +typedef unsigned short __u16;<br>
&gt; +<br>
&gt; +typedef __signed__ int __s32;<br>
&gt; +typedef unsigned int __u32;<br>
&gt; +<br>
&gt; +typedef __signed__ long long __s64;<br>
&gt; +typedef unsigned long long __u64;<br>
&gt; +<br>
&gt; +typedef unsigned char u8;<br>
&gt; +<br>
</div></div>can we factorize<br>
it&#39;s copy across arch<br>
<div class="im">&gt; +typedef unsigned short u16;<br>
&gt; +<br>
&gt; +typedef unsigned int u32;<br>
&gt; +<br>
&gt; +#endif /* __ASSEMBLY__ */<br>
&gt; +<br>
&gt; +#endif /* __ASM_MIPS_TYPES_H */<br>
&gt; diff --git a/arch/mips/include/mach/debug_ll.h b/arch/mips/include/mach/debug_ll.h<br>
&gt; new file mode 100644<br>
&gt; index 0000000..9fff7be<br>
&gt; --- /dev/null<br>
</div><div><div></div><div class="h5">&gt; +++ b/arch/mips/lib/memory.c<br>
&gt; @@ -0,0 +1,34 @@<br>
&gt; +/*<br>
&gt; + * Copyright (c) 2011 Antony Pavlov &lt;<a href="mailto:antonynpavlov@gmail.com">antonynpavlov@gmail.com</a>&gt;<br>
&gt; + * See file CREDITS for list of people who contributed to this project.<br>
&gt; + *<br>
&gt; + * This file is part of barebox.<br>
&gt; + *<br>
&gt; + * This program is free software; you can redistribute it and/or<br>
&gt; + * modify it under the terms of the GNU General Public License as<br>
&gt; + * published by the Free Software Foundation; either version 2 of<br>
&gt; + * the License, or (at your option) any later version.<br>
&gt; + *<br>
&gt; + * This program is distributed in the hope that it will be useful,<br>
&gt; + * but WITHOUT ANY WARRANTY; without even the implied warranty of<br>
&gt; + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the<br>
&gt; + * GNU General Public License for more details.<br>
&gt; + *<br>
&gt; + * You should have received a copy of the GNU General Public License<br>
&gt; + * along with this program; if not, write to the Free Software<br>
&gt; + * Foundation, Inc., 59 Temple Place, Suite 330, Boston,<br>
&gt; + * MA 02111-1307 USA<br>
&gt; + */<br>
&gt; +<br>
&gt; +#include &lt;common.h&gt;<br>
&gt; +#include &lt;init.h&gt;<br>
&gt; +#include &lt;mem_malloc.h&gt;<br>
&gt; +#include &lt;asm-generic/memory_layout.h&gt;<br>
&gt; +<br>
&gt; +static int mips_mem_malloc_init(void)<br>
&gt; +{<br>
&gt; +     mem_malloc_init((void *)MALLOC_BASE,<br>
&gt; +                     (void *)(MALLOC_BASE + MALLOC_SIZE));<br>
&gt; +     return 0;<br>
&gt; +}<br>
&gt; +core_initcall(mips_mem_malloc_init);<br>
</div></div>can we factorise this code this is the same on arm, m68k, blackfin too<br></blockquote><div><br></div><div>...and nios2 :)</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<br>
Best Regards,<br>
J.<br>
<br>
_______________________________________________<br>
<div><div></div><div class="h5">barebox mailing list<br>
<a href="mailto:barebox@lists.infradead.org">barebox@lists.infradead.org</a><br>
<a href="http://lists.infradead.org/mailman/listinfo/barebox" target="_blank">http://lists.infradead.org/mailman/listinfo/barebox</a><br>
</div></div></blockquote></div><br>