blob: 4b1181b474240f522e40dc4a926a4b2fbf528dd7 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Dan Handleye83b0ca2014-01-14 18:17:09 +00002 * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
Dan Handleybe234f92014-08-04 16:11:15 +010031#include <arch.h>
32#include <assert.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010033#include <cci400.h>
Vikram Kanigiri40d468c2014-12-23 01:00:22 +000034#include <debug.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010035#include <mmio.h>
Juan Castillo7f1f0622014-09-09 09:49:23 +010036#include <stdint.h>
Dan Handleybe234f92014-08-04 16:11:15 +010037
38#define MAX_CLUSTERS 2
39
Juan Castillo7f1f0622014-09-09 09:49:23 +010040static uintptr_t cci_base_addr;
Dan Handleybe234f92014-08-04 16:11:15 +010041static unsigned int cci_cluster_ix_to_iface[MAX_CLUSTERS];
42
43
Juan Castillo7f1f0622014-09-09 09:49:23 +010044void cci_init(uintptr_t cci_base,
Dan Handleybe234f92014-08-04 16:11:15 +010045 int slave_iface3_cluster_ix,
46 int slave_iface4_cluster_ix)
47{
48 /*
49 * Check the passed arguments are valid. The cluster indices must be
50 * less than MAX_CLUSTERS, not the same as each other and at least one
Sandrine Bailleux18e785f2015-10-02 08:51:17 +010051 * of them must refer to a valid cluster index.
Dan Handleybe234f92014-08-04 16:11:15 +010052 */
53 assert(cci_base);
54 assert(slave_iface3_cluster_ix < MAX_CLUSTERS);
55 assert(slave_iface4_cluster_ix < MAX_CLUSTERS);
56 assert(slave_iface3_cluster_ix != slave_iface4_cluster_ix);
57 assert((slave_iface3_cluster_ix >= 0) ||
Sandrine Bailleux18e785f2015-10-02 08:51:17 +010058 (slave_iface4_cluster_ix >= 0));
Dan Handleybe234f92014-08-04 16:11:15 +010059
Vikram Kanigiri40d468c2014-12-23 01:00:22 +000060 WARN("Please migrate to common cci driver, This driver will be" \
61 " deprecated in future\n");
62
Dan Handleybe234f92014-08-04 16:11:15 +010063 cci_base_addr = cci_base;
64 if (slave_iface3_cluster_ix >= 0)
65 cci_cluster_ix_to_iface[slave_iface3_cluster_ix] =
66 SLAVE_IFACE3_OFFSET;
67 if (slave_iface4_cluster_ix >= 0)
68 cci_cluster_ix_to_iface[slave_iface4_cluster_ix] =
69 SLAVE_IFACE4_OFFSET;
70}
Achin Gupta4f6ad662013-10-25 09:08:21 +010071
72static inline unsigned long get_slave_iface_base(unsigned long mpidr)
73{
Dan Handleybe234f92014-08-04 16:11:15 +010074 /*
75 * We assume the TF topology code allocates affinity instances
76 * consecutively from zero.
77 * It is a programming error if this is called without initializing
78 * the slave interface to use for this cluster.
79 */
80 unsigned int cluster_id =
81 (mpidr >> MPIDR_AFF1_SHIFT) & MPIDR_AFFLVL_MASK;
82
83 assert(cluster_id < MAX_CLUSTERS);
84 assert(cci_cluster_ix_to_iface[cluster_id] != 0);
85
86 return cci_base_addr + cci_cluster_ix_to_iface[cluster_id];
Achin Gupta4f6ad662013-10-25 09:08:21 +010087}
88
Dan Handleybe234f92014-08-04 16:11:15 +010089void cci_enable_cluster_coherency(unsigned long mpidr)
Achin Gupta4f6ad662013-10-25 09:08:21 +010090{
Dan Handleybe234f92014-08-04 16:11:15 +010091 assert(cci_base_addr);
Achin Gupta4f6ad662013-10-25 09:08:21 +010092 /* Enable Snoops and DVM messages */
93 mmio_write_32(get_slave_iface_base(mpidr) + SNOOP_CTRL_REG,
94 DVM_EN_BIT | SNOOP_EN_BIT);
95
96 /* Wait for the dust to settle down */
Dan Handleybe234f92014-08-04 16:11:15 +010097 while (mmio_read_32(cci_base_addr + STATUS_REG) & CHANGE_PENDING_BIT)
Dan Handleya70615f2014-04-09 12:48:25 +010098 ;
Achin Gupta4f6ad662013-10-25 09:08:21 +010099}
100
Dan Handleybe234f92014-08-04 16:11:15 +0100101void cci_disable_cluster_coherency(unsigned long mpidr)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100102{
Dan Handleybe234f92014-08-04 16:11:15 +0100103 assert(cci_base_addr);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100104 /* Disable Snoops and DVM messages */
105 mmio_write_32(get_slave_iface_base(mpidr) + SNOOP_CTRL_REG,
106 ~(DVM_EN_BIT | SNOOP_EN_BIT));
107
108 /* Wait for the dust to settle down */
Dan Handleybe234f92014-08-04 16:11:15 +0100109 while (mmio_read_32(cci_base_addr + STATUS_REG) & CHANGE_PENDING_BIT)
Dan Handleya70615f2014-04-09 12:48:25 +0100110 ;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100111}
112