mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Antony Pavlov <antonynpavlov@gmail.com>
To: barebox@lists.infradead.org
Subject: [PATCH 2/5] MIPS: xburst: debug_ll: add JZ4770 support
Date: Sat, 11 Apr 2015 02:22:58 +0300	[thread overview]
Message-ID: <1428708181-12506-3-git-send-email-antonynpavlov@gmail.com> (raw)
In-Reply-To: <1428708181-12506-1-git-send-email-antonynpavlov@gmail.com>

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
---
 arch/mips/mach-xburst/Kconfig                      |  8 ++--
 .../mach-xburst/include/mach/debug_ll_jz4770.h     | 47 ++++++++++++++++++++++
 arch/mips/mach-xburst/include/mach/jz4770.h        | 25 ++++++++++++
 3 files changed, 76 insertions(+), 4 deletions(-)

diff --git a/arch/mips/mach-xburst/Kconfig b/arch/mips/mach-xburst/Kconfig
index 1fadf3f..3623d1a 100644
--- a/arch/mips/mach-xburst/Kconfig
+++ b/arch/mips/mach-xburst/Kconfig
@@ -41,19 +41,19 @@ choice
 	prompt "DEBUG_LL port"
 
 config JZ47XX_DEBUG_LL_UART0
-	depends on CPU_JZ4755 || CPU_JZ4780
+	depends on CPU_JZ4755 || CPU_JZ4770 || CPU_JZ4780
 	bool "UART0"
 
 config JZ47XX_DEBUG_LL_UART1
-	depends on CPU_JZ4755 || CPU_JZ4780
+	depends on CPU_JZ4755 || CPU_JZ4770 || CPU_JZ4780
 	bool "UART1"
 
 config JZ47XX_DEBUG_LL_UART2
-	depends on CPU_JZ4755 || CPU_JZ4780
+	depends on CPU_JZ4755 || CPU_JZ4770 || CPU_JZ4780
 	bool "UART2"
 
 config JZ47XX_DEBUG_LL_UART3
-	depends on CPU_JZ4780
+	depends on CPU_JZ4770 || CPU_JZ4780
 	bool "UART3"
 
 config JZ47XX_DEBUG_LL_UART4
diff --git a/arch/mips/mach-xburst/include/mach/debug_ll_jz4770.h b/arch/mips/mach-xburst/include/mach/debug_ll_jz4770.h
new file mode 100644
index 0000000..79d72a0
--- /dev/null
+++ b/arch/mips/mach-xburst/include/mach/debug_ll_jz4770.h
@@ -0,0 +1,47 @@
+/*
+ * Copyright (C) 2015 Antony Pavlov <antonynpavlov@gmail.com>
+ *
+ * This file is part of barebox.
+ * See file CREDITS for list of people who contributed to this project.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
+
+#ifndef __INCLUDE_DEBUG_LL_JZ4770_H__
+#define __INCLUDE_DEBUG_LL_JZ4770_H__
+
+#include <mach/jz4770.h>
+
+#ifdef CONFIG_JZ47XX_DEBUG_LL_UART0
+#define DEBUG_LL_UART_ADDR	JZ4770_UART0_BASE
+#endif
+
+#ifdef CONFIG_JZ47XX_DEBUG_LL_UART1
+#define DEBUG_LL_UART_ADDR	JZ4770_UART1_BASE
+#endif
+
+#ifdef CONFIG_JZ47XX_DEBUG_LL_UART2
+#define DEBUG_LL_UART_ADDR	JZ4770_UART2_BASE
+#endif
+
+#ifdef CONFIG_JZ47XX_DEBUG_LL_UART3
+#define DEBUG_LL_UART_ADDR	JZ4770_UART3_BASE
+#endif
+
+#define DEBUG_LL_UART_SHIFT	2
+
+#ifndef DEBUG_LL_UART_CLK
+#define DEBUG_LL_UART_CLK	(12000000 / 16)
+#endif
+#define DEBUG_LL_UART_BPS	CONFIG_BAUDRATE
+#define DEBUG_LL_UART_DIVISOR	(DEBUG_LL_UART_CLK / DEBUG_LL_UART_BPS)
+
+#endif /* __INCLUDE_DEBUG_LL_JZ4770_H__ */
diff --git a/arch/mips/mach-xburst/include/mach/jz4770.h b/arch/mips/mach-xburst/include/mach/jz4770.h
new file mode 100644
index 0000000..161c1af
--- /dev/null
+++ b/arch/mips/mach-xburst/include/mach/jz4770.h
@@ -0,0 +1,25 @@
+/*
+ * JZ4770 SoC definitions
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
+
+#ifndef __MIPS_ASM_MACH_JZ4770_JZ4770_H__
+#define __MIPS_ASM_MACH_JZ4770_JZ4770_H__
+
+/* APB bus devices */
+#define JZ4770_UART0_BASE	0xb0030000
+#define JZ4770_UART1_BASE	0xb0031000
+#define JZ4770_UART2_BASE	0xb0032000
+#define JZ4770_UART3_BASE	0xb0033000
+
+#endif /* __MIPS_ASM_MACH_JZ4770_JZ4770_H__ */
-- 
2.1.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  parent reply	other threads:[~2015-04-10 23:23 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-10 23:22 [PATCH 0/5] MIPS: xburst: add initial JZ4770 SoC support Antony Pavlov
2015-04-10 23:22 ` [PATCH 1/5] MIPS: xburst: add " Antony Pavlov
2015-04-10 23:22 ` Antony Pavlov [this message]
2015-04-10 23:22 ` [PATCH 3/5] MIPS: xburst: add Ainol Novo7 Paladin support Antony Pavlov
2015-04-10 23:23 ` [PATCH 4/5] MIPS: add ainol-novo7-paladin_defconfig Antony Pavlov
2015-04-10 23:23 ` [PATCH 5/5] Documentation: add Ainol Novo7 Paladin board mini-howto Antony Pavlov
2015-04-13  8:02 ` [PATCH 0/5] MIPS: xburst: add initial JZ4770 SoC support Sascha Hauer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1428708181-12506-3-git-send-email-antonynpavlov@gmail.com \
    --to=antonynpavlov@gmail.com \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox