diff options
author | John Crispin <john@openwrt.org> | 2014-12-05 00:20:10 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-12-05 00:20:10 +0000 |
commit | dcc8a8ca9eac90b3e70104c893464c27e62daed5 (patch) | |
tree | f4a4888fecac4526d87bce595280a0288d4f1e79 /target/linux/octeon/patches-3.18/100-ubnt_edgerouter2_support.patch | |
parent | 6f665ea7b8565a39a2cd7367e6322a2efa9f2eb8 (diff) | |
download | upstream-dcc8a8ca9eac90b3e70104c893464c27e62daed5.tar.gz upstream-dcc8a8ca9eac90b3e70104c893464c27e62daed5.tar.bz2 upstream-dcc8a8ca9eac90b3e70104c893464c27e62daed5.zip |
octeon: add support for 3.18 kernel
Runtime tested on Ubiquiti EdgeRouter Lite.
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
SVN-Revision: 43519
Diffstat (limited to 'target/linux/octeon/patches-3.18/100-ubnt_edgerouter2_support.patch')
-rw-r--r-- | target/linux/octeon/patches-3.18/100-ubnt_edgerouter2_support.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/target/linux/octeon/patches-3.18/100-ubnt_edgerouter2_support.patch b/target/linux/octeon/patches-3.18/100-ubnt_edgerouter2_support.patch new file mode 100644 index 0000000000..5b51b66fe8 --- /dev/null +++ b/target/linux/octeon/patches-3.18/100-ubnt_edgerouter2_support.patch @@ -0,0 +1,31 @@ +--- a/arch/mips/include/asm/octeon/cvmx-bootinfo.h ++++ b/arch/mips/include/asm/octeon/cvmx-bootinfo.h +@@ -228,6 +228,8 @@ enum cvmx_board_types_enum { + */ + CVMX_BOARD_TYPE_CUST_PRIVATE_MIN = 20001, + CVMX_BOARD_TYPE_UBNT_E100 = 20002, ++ CVMX_BOARD_TYPE_UBNT_E200 = 20003, ++ CVMX_BOARD_TYPE_UBNT_E220 = 20005, + CVMX_BOARD_TYPE_CUST_DSR1000N = 20006, + CVMX_BOARD_TYPE_CUST_PRIVATE_MAX = 30000, + +@@ -328,6 +330,8 @@ static inline const char *cvmx_board_typ + /* Customer private range */ + ENUM_BRD_TYPE_CASE(CVMX_BOARD_TYPE_CUST_PRIVATE_MIN) + ENUM_BRD_TYPE_CASE(CVMX_BOARD_TYPE_UBNT_E100) ++ ENUM_BRD_TYPE_CASE(CVMX_BOARD_TYPE_UBNT_E200) ++ ENUM_BRD_TYPE_CASE(CVMX_BOARD_TYPE_UBNT_E220) + ENUM_BRD_TYPE_CASE(CVMX_BOARD_TYPE_CUST_DSR1000N) + ENUM_BRD_TYPE_CASE(CVMX_BOARD_TYPE_CUST_PRIVATE_MAX) + } +--- a/arch/mips/cavium-octeon/executive/cvmx-helper-board.c ++++ b/arch/mips/cavium-octeon/executive/cvmx-helper-board.c +@@ -195,6 +195,8 @@ int cvmx_helper_board_get_mii_address(in + return 8; + else + return -1; ++ case CVMX_BOARD_TYPE_UBNT_E200: ++ return -1; + } + + /* Some unknown board. Somebody forgot to update this function... */ |