hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 * arch/arm/mach-kirkwood/mpp.c
 *
 * MPP functions for Marvell Kirkwood SoCs
 * Referenced from Linux kernel source
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */
 
#include <common.h>
#include <asm/io.h>
#include <asm/arch/cpu.h>
#include <asm/arch/soc.h>
#include <asm/arch/mpp.h>
 
static u32 kirkwood_variant(void)
{
   switch (readl(KW_REG_DEVICE_ID) & 0x03) {
   case 1:
       return MPP_F6192_MASK;
   case 2:
       return MPP_F6281_MASK;
   default:
       debug("MPP setup: unknown kirkwood variant\n");
       return 0;
   }
}
 
#define MPP_CTRL(i)    (KW_MPP_BASE + (i* 4))
#define MPP_NR_REGS    (1 + MPP_MAX/8)
 
void kirkwood_mpp_conf(const u32 *mpp_list, u32 *mpp_save)
{
   u32 mpp_ctrl[MPP_NR_REGS];
   unsigned int variant_mask;
   int i;
 
   variant_mask = kirkwood_variant();
   if (!variant_mask)
       return;
 
   debug( "initial MPP regs:");
   for (i = 0; i < MPP_NR_REGS; i++) {
       mpp_ctrl[i] = readl(MPP_CTRL(i));
       debug(" %08x", mpp_ctrl[i]);
   }
   debug("\n");
 
 
   while (*mpp_list) {
       unsigned int num = MPP_NUM(*mpp_list);
       unsigned int sel = MPP_SEL(*mpp_list);
       unsigned int sel_save;
       int shift;
 
       if (num > MPP_MAX) {
           debug("kirkwood_mpp_conf: invalid MPP "
                   "number (%u)\n", num);
           continue;
       }
       if (!(*mpp_list & variant_mask)) {
           debug("kirkwood_mpp_conf: requested MPP%u config "
               "unavailable on this hardware\n", num);
           continue;
       }
 
       shift = (num & 7) << 2;
 
       if (mpp_save) {
           sel_save = (mpp_ctrl[num / 8] >> shift) & 0xf;
           *mpp_save = num | (sel_save << 8) | variant_mask;
           mpp_save++;
       }
 
       mpp_ctrl[num / 8] &= ~(0xf << shift);
       mpp_ctrl[num / 8] |= sel << shift;
 
       mpp_list++;
   }
 
   debug("  final MPP regs:");
   for (i = 0; i < MPP_NR_REGS; i++) {
       writel(mpp_ctrl[i], MPP_CTRL(i));
       debug(" %08x", mpp_ctrl[i]);
   }
   debug("\n");
 
}