| To: | David Daney <ddaney@caviumnetworks.com> |
|---|---|
| Subject: | Re: [PATCH 8/9] MIPS: Add a platform hook for swiotlb setup. |
| From: | Sergei Shtylyov <sshtylyov@mvista.com> |
| Date: | Fri, 24 Sep 2010 20:08:59 +0400 |
| Cc: | linux-mips@linux-mips.org, ralf@linux-mips.org, linux-kernel@vger.kernel.org |
| In-reply-to: | <1285281496-24696-9-git-send-email-ddaney@caviumnetworks.com> |
| References: | <1285281496-24696-1-git-send-email-ddaney@caviumnetworks.com> <1285281496-24696-9-git-send-email-ddaney@caviumnetworks.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Thunderbird 2.0.0.21 (X11/20090320) |
Hello. David Daney wrote: This allows platforms that are using the swiotlb to initialize it. Signed-off-by: David Daney <ddaney@caviumnetworks.com> --- arch/mips/include/asm/bootinfo.h | 5 +++++ arch/mips/kernel/setup.c | 5 +++++ 2 files changed, 10 insertions(+), 0 deletions(-) diff --git a/arch/mips/include/asm/bootinfo.h b/arch/mips/include/asm/bootinfo.h index 15a8ef0..b3cf989 100644 --- a/arch/mips/include/asm/bootinfo.h +++ b/arch/mips/include/asm/bootinfo.h @@ -125,4 +125,9 @@ extern unsigned long fw_arg0, fw_arg1, fw_arg2, fw_arg3; */ extern void plat_mem_setup(void);+/*+ * Optional platform hook to call swiotlb_setup(). + */ +extern void plat_swiotlb_setup(void); + #endif /* _ASM_BOOTINFO_H */ diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index 85aef3f..8b650da 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c @@ -488,6 +488,11 @@ static void __init arch_mem_init(char **cmdline_p)bootmem_init(); We should avoid #ifdef's in function bodies. Why not defile an empty 'inline' in the header above if CONFIG_SWIOTLB is not defined? WBR, Sergei |
| Previous by Date: | Re: Which Linux driver (source code) is used for tty0 (console) on MALTA?, Ralf Baechle |
|---|---|
| Next by Date: | Re: [PATCH 8/9] MIPS: Add a platform hook for swiotlb setup., David Daney |
| Previous by Thread: | [PATCH 8/9] MIPS: Add a platform hook for swiotlb setup., David Daney |
| Next by Thread: | Re: [PATCH 8/9] MIPS: Add a platform hook for swiotlb setup., David Daney |
| Indexes: | [Date] [Thread] [Top] [All Lists] |