aboutsummaryrefslogtreecommitdiff
path: root/src/soc/qualcomm/ipq806x/include/ipq_uart.h
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2014-04-23 13:42:22 -0700
committerMarc Jones <marc.jones@se-eng.com>2014-12-30 20:17:39 +0100
commit4f062ae381db3c7e5b1b64ce22db374f63f048d7 (patch)
treec19003460ee720272ea702a1c047376dd1366604 /src/soc/qualcomm/ipq806x/include/ipq_uart.h
parent6a3f92f55c7288e1b8cde00088188bcd9171139e (diff)
ipq8064: prepare include files before adding UART driver
These patch modifies .h files to match the coreboot API. A few more significant changes are: - UART specific fields removed from common board structure in cdp.h. These fields are set at compile time in u-boot (where this structure comes from), they will be set in a different structure in the UART driver in an upcoming patch. - an inline wrapper is added in gpio.h to provide GPIO API the UART driver expects. - the ipq_configure_gpio() is passed the descriptor placed in ro data. BUG=chrome-os-partner:27784 TEST=none Original-Change-Id: Id49507fb0c72ef993a89b538cd417b6c86ae3786 Original-Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/196661 Original-Reviewed-by: Stefan Reinauer <reinauer@chromium.org> (cherry picked from commit ea400f1b720eb671fa411c5fd1df7efd14fdacd6) Signed-off-by: Marc Jones <marc.jones@se-eng.com> Change-Id: I2c7be09675b225de99be3c94b22e9ee2ebb2cb9a Reviewed-on: http://review.coreboot.org/7873 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/soc/qualcomm/ipq806x/include/ipq_uart.h')
-rw-r--r--src/soc/qualcomm/ipq806x/include/ipq_uart.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/soc/qualcomm/ipq806x/include/ipq_uart.h b/src/soc/qualcomm/ipq806x/include/ipq_uart.h
index 6fff0468f8..da943b909a 100644
--- a/src/soc/qualcomm/ipq806x/include/ipq_uart.h
+++ b/src/soc/qualcomm/ipq806x/include/ipq_uart.h
@@ -32,14 +32,13 @@
#ifndef __UART_DM_H__
#define __UART_DM_H__
-#include <asm/io.h>
-#include "common.h"
+#define PERIPH_BLK_BLSP 0
+
#define MSM_BOOT_UART_DM_EXTR_BITS(value, start_pos, end_pos) \
((value << (32 - end_pos))\
>> (32 - (end_pos - start_pos)))
-extern void dsb(void);
#define PACK_CHARS_INTO_WORDS(a, cnt, word) { \
word = 0; \
int j; \