031-03-MIPS-BCM47xx-Extract-all-boardflags-to-new-u32-field.patch 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. From ecd06daee04bae00f3dfd0a3cd46f28142f18191 Mon Sep 17 00:00:00 2001
  2. From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <zajec5@gmail.com>
  3. Date: Tue, 12 May 2015 11:31:02 +0200
  4. Subject: [PATCH] MIPS: BCM47xx: Extract all boardflags to new u32 fields
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. For years we planned to get rid of old u16 fields, let's start doing it
  9. with MIPS code. This process will take some time, it requires doing the
  10. same in ssb/bcma and then switching all drivers to new fields. This will
  11. be handled in separated patches submitted to appropriate trees.
  12. Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
  13. Cc: linux-mips@linux-mips.org
  14. Cc: Hauke Mehrtens <hauke@hauke-m.de>
  15. Patchwork: https://patchwork.linux-mips.org/patch/10026/
  16. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  17. ---
  18. arch/mips/bcm47xx/sprom.c | 3 +++
  19. include/linux/ssb/ssb.h | 5 ++++-
  20. 2 files changed, 7 insertions(+), 1 deletion(-)
  21. --- a/arch/mips/bcm47xx/sprom.c
  22. +++ b/arch/mips/bcm47xx/sprom.c
  23. @@ -201,6 +201,9 @@ static void bcm47xx_sprom_fill_auto(stru
  24. bool fb = fallback;
  25. ENTRY(0xfffffffe, u16, pre, "boardrev", board_rev, 0, true);
  26. + ENTRY(0xfffffffe, u32, pre, "boardflags", boardflags, 0, fb);
  27. + ENTRY(0xfffffff0, u32, pre, "boardflags2", boardflags2, 0, fb);
  28. + ENTRY(0xfffff800, u32, pre, "boardflags3", boardflags3, 0, fb);
  29. ENTRY(0x00000002, u16, pre, "boardflags", boardflags_lo, 0, fb);
  30. ENTRY(0xfffffffc, u16, pre, "boardtype", board_type, 0, true);
  31. ENTRY(0xfffffffe, u16, pre, "boardnum", board_num, 0, fb);