blob: 81808b9f70de316ce6c66d057f1a7eac55a82e02 [file] [log] [blame]
Vikram Kanigiri40d468c2014-12-23 01:00:22 +00001/*
Antonio Nino Diaz3207e942017-04-06 14:46:38 +01002 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
Vikram Kanigiri40d468c2014-12-23 01:00:22 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Vikram Kanigiri40d468c2014-12-23 01:00:22 +00005 */
6
7#include <arch.h>
8#include <assert.h>
9#include <cci.h>
10#include <debug.h>
11#include <mmio.h>
Juan Castillo7f1f0622014-09-09 09:49:23 +010012#include <stdint.h>
Vikram Kanigiri40d468c2014-12-23 01:00:22 +000013
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +010014#define MAKE_CCI_PART_NUMBER(hi, lo) ((hi << 8) | lo)
15#define CCI_PART_LO_MASK 0xff
16#define CCI_PART_HI_MASK 0xf
17
18/* CCI part number codes read from Peripheral ID registers 0 and 1 */
19#define CCI400_PART_NUM 0x420
20#define CCI500_PART_NUM 0x422
21#define CCI550_PART_NUM 0x423
22
23#define CCI400_SLAVE_PORTS 5
24#define CCI500_SLAVE_PORTS 7
25#define CCI550_SLAVE_PORTS 7
26
27static uintptr_t cci_base;
28static const int *cci_slave_if_map;
Vikram Kanigiri40d468c2014-12-23 01:00:22 +000029
Antonio Nino Diaz3759e3f2017-03-22 15:48:51 +000030#if ENABLE_ASSERTIONS
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +010031static unsigned int max_master_id;
32static int cci_num_slave_ports;
33
Vikram Kanigiri40d468c2014-12-23 01:00:22 +000034static int validate_cci_map(const int *map)
35{
36 unsigned int valid_cci_map = 0;
37 int slave_if_id;
38 int i;
39
40 /* Validate the map */
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +010041 for (i = 0; i <= max_master_id; i++) {
Vikram Kanigiri40d468c2014-12-23 01:00:22 +000042 slave_if_id = map[i];
43
44 if (slave_if_id < 0)
45 continue;
46
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +010047 if (slave_if_id >= cci_num_slave_ports) {
Antonio Nino Diaz3207e942017-04-06 14:46:38 +010048 ERROR("Slave interface ID is invalid\n");
Vikram Kanigiri40d468c2014-12-23 01:00:22 +000049 return 0;
50 }
51
52 if (valid_cci_map & (1 << slave_if_id)) {
Antonio Nino Diaz3207e942017-04-06 14:46:38 +010053 ERROR("Multiple masters are assigned same slave interface ID\n");
Vikram Kanigiri40d468c2014-12-23 01:00:22 +000054 return 0;
55 }
56 valid_cci_map |= 1 << slave_if_id;
57 }
58
59 if (!valid_cci_map) {
Antonio Nino Diaz3207e942017-04-06 14:46:38 +010060 ERROR("No master is assigned a valid slave interface\n");
Vikram Kanigiri40d468c2014-12-23 01:00:22 +000061 return 0;
62 }
63
64 return 1;
65}
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +010066
67/*
68 * Read CCI part number from Peripheral ID registers
69 */
70static unsigned int read_cci_part_number(uintptr_t base)
71{
72 unsigned int part_lo, part_hi;
73
74 part_lo = mmio_read_32(base + PERIPHERAL_ID0) & CCI_PART_LO_MASK;
75 part_hi = mmio_read_32(base + PERIPHERAL_ID1) & CCI_PART_HI_MASK;
76
77 return MAKE_CCI_PART_NUMBER(part_hi, part_lo);
78}
79
80/*
81 * Identify a CCI device, and return the number of slaves. Return -1 for an
82 * unidentified device.
83 */
84static int get_slave_ports(unsigned int part_num)
85{
Jonathan Wright39b42212018-03-13 15:24:29 +000086 int num_slave_ports = -1;
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +010087
88 switch (part_num) {
89
Jonathan Wright39b42212018-03-13 15:24:29 +000090 case CCI400_PART_NUM:
91 num_slave_ports = CCI400_SLAVE_PORTS;
92 break;
93 case CCI500_PART_NUM:
94 num_slave_ports = CCI500_SLAVE_PORTS;
95 break;
96 case CCI550_PART_NUM:
97 num_slave_ports = CCI550_SLAVE_PORTS;
98 break;
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +010099 default:
Jonathan Wright39b42212018-03-13 15:24:29 +0000100 /* Do nothing in default case */
101 break;
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100102 }
103
Jonathan Wright39b42212018-03-13 15:24:29 +0000104 return num_slave_ports;
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100105}
Antonio Nino Diaz3759e3f2017-03-22 15:48:51 +0000106#endif /* ENABLE_ASSERTIONS */
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000107
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100108void cci_init(uintptr_t base, const int *map, unsigned int num_cci_masters)
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000109{
110 assert(map);
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100111 assert(base);
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000112
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100113 cci_base = base;
114 cci_slave_if_map = map;
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000115
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100116#if ENABLE_ASSERTIONS
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000117 /*
118 * Master Id's are assigned from zero, So in an array of size n
119 * the max master id is (n - 1).
120 */
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100121 max_master_id = num_cci_masters - 1;
122 cci_num_slave_ports = get_slave_ports(read_cci_part_number(base));
123#endif
124 assert(cci_num_slave_ports >= 0);
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000125
126 assert(validate_cci_map(map));
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000127}
128
129void cci_enable_snoop_dvm_reqs(unsigned int master_id)
130{
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100131 int slave_if_id = cci_slave_if_map[master_id];
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000132
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100133 assert(master_id <= max_master_id);
134 assert((slave_if_id < cci_num_slave_ports) && (slave_if_id >= 0));
135 assert(cci_base);
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000136
137 /*
138 * Enable Snoops and DVM messages, no need for Read/Modify/Write as
139 * rest of bits are write ignore
140 */
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100141 mmio_write_32(cci_base +
142 SLAVE_IFACE_OFFSET(slave_if_id) + SNOOP_CTRL_REG,
143 DVM_EN_BIT | SNOOP_EN_BIT);
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000144
145 /* Wait for the dust to settle down */
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100146 while (mmio_read_32(cci_base + STATUS_REG) & CHANGE_PENDING_BIT)
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000147 ;
148}
149
150void cci_disable_snoop_dvm_reqs(unsigned int master_id)
151{
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100152 int slave_if_id = cci_slave_if_map[master_id];
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000153
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100154 assert(master_id <= max_master_id);
155 assert((slave_if_id < cci_num_slave_ports) && (slave_if_id >= 0));
156 assert(cci_base);
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000157
158 /*
159 * Disable Snoops and DVM messages, no need for Read/Modify/Write as
160 * rest of bits are write ignore.
161 */
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100162 mmio_write_32(cci_base +
163 SLAVE_IFACE_OFFSET(slave_if_id) + SNOOP_CTRL_REG,
164 ~(DVM_EN_BIT | SNOOP_EN_BIT));
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000165
166 /* Wait for the dust to settle down */
Jeenu Viswambharanb36577a2017-07-19 17:07:00 +0100167 while (mmio_read_32(cci_base + STATUS_REG) & CHANGE_PENDING_BIT)
Vikram Kanigiri40d468c2014-12-23 01:00:22 +0000168 ;
169}
170