aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files/arch/mips/ath79/routerboot.c
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2015-04-07 20:03:35 +0000
committerGabor Juhos <juhosg@openwrt.org>2015-04-07 20:03:35 +0000
commit0c240b2a3b74f22d4ec4e2f41a4109e15712cac0 (patch)
tree68b71b7c99601d982445f7c0a27b3991272c6607 /target/linux/ar71xx/files/arch/mips/ath79/routerboot.c
parent3fa90854cf48c32690ae5196b2e0a69d668e33e9 (diff)
downloadmaster-187ad058-0c240b2a3b74f22d4ec4e2f41a4109e15712cac0.tar.gz
master-187ad058-0c240b2a3b74f22d4ec4e2f41a4109e15712cac0.tar.bz2
master-187ad058-0c240b2a3b74f22d4ec4e2f41a4109e15712cac0.zip
ar71xx: routerboot: add support for extended radio data
On newer Mikrotik boards, the radio calibration data is stored differently and uses LZO compression instead of RLE. Update the RouterBOOT helper code to support the new format. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45297 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips/ath79/routerboot.c')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ath79/routerboot.c65
1 files changed, 58 insertions, 7 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/routerboot.c b/target/linux/ar71xx/files/arch/mips/ath79/routerboot.c
index dbdec02056..5853b157f3 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/routerboot.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/routerboot.c
@@ -15,11 +15,13 @@
#include <linux/errno.h>
#include <linux/routerboot.h>
#include <linux/rle.h>
+#include <linux/lzo.h>
#include "routerboot.h"
#define RB_BLOCK_SIZE 0x1000
#define RB_ART_SIZE 0x10000
+#define RB_MAGIC_ERD 0x00455244 /* extended radio data */
static struct rb_info rb_info;
@@ -63,6 +65,7 @@ routerboot_find_tag(u8 *buf, unsigned int buflen, u16 tag_id,
u8 **tag_data, u16 *tag_len)
{
uint32_t magic;
+ bool align = false;
int ret;
if (buflen < 4)
@@ -70,6 +73,9 @@ routerboot_find_tag(u8 *buf, unsigned int buflen, u16 tag_id,
magic = get_u32(buf);
switch (magic) {
+ case RB_MAGIC_ERD:
+ align = true;
+ /* fall trough */
case RB_MAGIC_HARD:
/* skip magic value */
buf += 4;
@@ -121,6 +127,9 @@ routerboot_find_tag(u8 *buf, unsigned int buflen, u16 tag_id,
break;
}
+ if (align)
+ len = (len + 3) / 4;
+
buf += len;
buflen -= len;
}
@@ -168,13 +177,16 @@ rb_get_hw_options(void)
return get_u32(tag);
}
-__init void *
-rb_get_wlan_data(void)
+static void * __init
+__rb_get_wlan_data(u16 id)
{
u16 tag_len;
u8 *tag;
void *buf;
int err;
+ u32 magic;
+ size_t src_done;
+ size_t dst_done;
err = rb_find_hard_cfg_tag(RB_ID_WLAN_DATA, &tag, &tag_len);
if (err) {
@@ -188,11 +200,38 @@ rb_get_wlan_data(void)
goto err;
}
- err = rle_decode((char *) tag, tag_len, buf, RB_ART_SIZE,
- NULL, NULL);
- if (err) {
- pr_err("unable to decode calibration data\n");
- goto err_free;
+ magic = get_u32(tag);
+ if (magic == RB_MAGIC_ERD) {
+ u8 *erd_data;
+ u16 erd_len;
+
+ if (id == 0)
+ goto err_free;
+
+ err = routerboot_find_tag(tag, tag_len, id,
+ &erd_data, &erd_len);
+ if (err) {
+ pr_err("no ERD data found for id %u\n", id);
+ goto err_free;
+ }
+
+ dst_done = RB_ART_SIZE;
+ err = lzo1x_decompress_safe(erd_data, erd_len, buf, &dst_done);
+ if (err) {
+ pr_err("unable to decompress calibration data %d\n",
+ err);
+ goto err_free;
+ }
+ } else {
+ if (id != 0)
+ goto err_free;
+
+ err = rle_decode((char *) tag, tag_len, buf, RB_ART_SIZE,
+ &src_done, &dst_done);
+ if (err) {
+ pr_err("unable to decode calibration data\n");
+ goto err_free;
+ }
}
return buf;
@@ -203,6 +242,18 @@ err:
return NULL;
}
+__init void *
+rb_get_wlan_data(void)
+{
+ return __rb_get_wlan_data(0);
+}
+
+__init void *
+rb_get_ext_wlan_data(u16 id)
+{
+ return __rb_get_wlan_data(id);
+}
+
__init const struct rb_info *
rb_init_info(void *data, unsigned int size)
{