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

Commit acbece31 authored by Bo Shen's avatar Bo Shen Committed by Nicolas Ferre
Browse files

ARM: at91: sama5: enable kernel uncompress info output



Enable kernel uncompress info output, which will show as following:
---8>---
Uncompressing Linux... done, booting the kernel.
---<8---

Signed-off-by: default avatarBo Shen <voice.shen@atmel.com>
Signed-off-by: default avatarNicolas Ferre <nicolas.ferre@atmel.com>
parent fb941e84
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -94,6 +94,15 @@ static const u32 uarts_sam9x5[] = {
	0,
};

static const u32 uarts_sama5[] = {
	AT91_BASE_DBGU1,
	SAMA5D3_BASE_USART0,
	SAMA5D3_BASE_USART1,
	SAMA5D3_BASE_USART2,
	SAMA5D3_BASE_USART3,
	0,
};

static inline const u32* decomp_soc_detect(void __iomem *dbgu_base)
{
	u32 cidr, socid;
@@ -123,6 +132,9 @@ static inline const u32* decomp_soc_detect(void __iomem *dbgu_base)

	case ARCH_ID_AT91SAM9X5:
		return uarts_sam9x5;

	case ARCH_ID_SAMA5D3:
		return uarts_sama5;
	}

	/* at91sam9g10 */