summaryrefslogtreecommitdiff
path: root/target/msm8960
diff options
context:
space:
mode:
Diffstat (limited to 'target/msm8960')
-rw-r--r--target/msm8960/include/target/board.h6
-rwxr-xr-xtarget/msm8960/init.c7
2 files changed, 11 insertions, 2 deletions
diff --git a/target/msm8960/include/target/board.h b/target/msm8960/include/target/board.h
index 906eb8a2..1e2606a4 100644
--- a/target/msm8960/include/target/board.h
+++ b/target/msm8960/include/target/board.h
@@ -1,4 +1,5 @@
-/* Copyright (c) 2012, Code Aurora Forum. All rights reserved.
+ /* Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
+ *
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -9,7 +10,7 @@
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
- * * Neither the name of Code Aurora Forum, Inc. nor the names of its
+ * * Neither the name of Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
@@ -58,5 +59,6 @@
#define LINUX_MACHTYPE_8064_MPQ_CDP 3993
#define LINUX_MACHTYPE_8064_MPQ_HRD 3994
#define LINUX_MACHTYPE_8064_MPQ_DTV 3995
+#define LINUX_MACHTYPE_8064_EP 3996
#endif
diff --git a/target/msm8960/init.c b/target/msm8960/init.c
index 99a79d49..423feaae 100755
--- a/target/msm8960/init.c
+++ b/target/msm8960/init.c
@@ -301,6 +301,10 @@ void target_uart_init(void)
uart_dm_init(7, 0x16600000, 0x16640000);
break;
+ case LINUX_MACHTYPE_8064_EP:
+ uart_dm_init(2, 0x12480000, 0x12490000);
+ break;
+
case LINUX_MACHTYPE_8064_MPQ_CDP:
case LINUX_MACHTYPE_8064_MPQ_HRD:
case LINUX_MACHTYPE_8064_MPQ_DTV:
@@ -408,6 +412,9 @@ void target_detect(struct board_data *board)
case HW_PLATFORM_LIQUID:
target_id = LINUX_MACHTYPE_8064_LIQUID;
break;
+ case HW_PLATFORM_BTS:
+ target_id = LINUX_MACHTYPE_8064_EP;
+ break;
default:
target_id = LINUX_MACHTYPE_8064_CDP;
}