Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df78b5c8 authored by Aurelien Jarno's avatar Aurelien Jarno Committed by Ralf Baechle
Browse files

[MIPS] Move CFE code into arch/mips/fw/cfe



Move the platform independent part of the CFE code to arch/mips/fw/cfe from
arch/mips/sibyte/cfe.

Signed-off-by: default avatarAurelien Jarno <aurelien@aurel32.net>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent cc6e8e08
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -688,6 +688,9 @@ config ARCH_MAY_HAVE_PC_FDC
config BOOT_RAW
config BOOT_RAW
	bool
	bool


config CFE
	bool

config DMA_COHERENT
config DMA_COHERENT
	bool
	bool


+1 −0
Original line number Original line Diff line number Diff line
@@ -149,6 +149,7 @@ endif
# Firmware support
# Firmware support
#
#
libs-$(CONFIG_ARC)		+= arch/mips/arc/
libs-$(CONFIG_ARC)		+= arch/mips/arc/
libs-$(CONFIG_CFE)		+= arch/mips/fw/cfe/
libs-$(CONFIG_SIBYTE_CFE)	+= arch/mips/sibyte/cfe/
libs-$(CONFIG_SIBYTE_CFE)	+= arch/mips/sibyte/cfe/


#
#
+5 −0
Original line number Original line Diff line number Diff line
#
# Makefile for the Broadcom Common Firmware Environment support
#

lib-y += cfe_api.o
+1 −1
Original line number Original line Diff line number Diff line
@@ -30,7 +30,7 @@
    *
    *
    ********************************************************************* */
    ********************************************************************* */


#include "cfe_api.h"
#include <asm/fw/cfe/cfe_api.h>
#include "cfe_api_int.h"
#include "cfe_api_int.h"


/* Cast from a native pointer to a cfe_xptr_t and back.	 */
/* Cast from a native pointer to a cfe_xptr_t and back.	 */
Loading