Linux Audio

Check our new training course

Loading...
v4.17
 
  1/*
  2 * Copyright (C) 2017 SiFive
  3 *
  4 *   This program is free software; you can redistribute it and/or
  5 *   modify it under the terms of the GNU General Public License
  6 *   as published by the Free Software Foundation, version 2.
  7 *
  8 *   This program is distributed in the hope that it will be useful,
  9 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 10 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 11 *   GNU General Public License for more details.
 12 */
 13
 14#include <linux/cacheinfo.h>
 15#include <linux/cpu.h>
 16#include <linux/of.h>
 17#include <linux/of_device.h>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 18
 19static void ci_leaf_init(struct cacheinfo *this_leaf,
 20			 struct device_node *node,
 21			 enum cache_type type, unsigned int level)
 22{
 23	this_leaf->of_node = node;
 24	this_leaf->level = level;
 25	this_leaf->type = type;
 26	/* not a sector cache */
 27	this_leaf->physical_line_partition = 1;
 28	/* TODO: Add to DTS */
 29	this_leaf->attributes =
 30		CACHE_WRITE_BACK
 31		| CACHE_READ_ALLOCATE
 32		| CACHE_WRITE_ALLOCATE;
 33}
 34
 35static int __init_cache_level(unsigned int cpu)
 36{
 37	struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu);
 38	struct device_node *np = of_cpu_device_node_get(cpu);
 
 39	int levels = 0, leaves = 0, level;
 40
 41	if (of_property_read_bool(np, "cache-size"))
 42		++leaves;
 43	if (of_property_read_bool(np, "i-cache-size"))
 44		++leaves;
 45	if (of_property_read_bool(np, "d-cache-size"))
 46		++leaves;
 47	if (leaves > 0)
 48		levels = 1;
 49
 
 50	while ((np = of_find_next_cache_node(np))) {
 
 
 51		if (!of_device_is_compatible(np, "cache"))
 52			break;
 53		if (of_property_read_u32(np, "cache-level", &level))
 54			break;
 55		if (level <= levels)
 56			break;
 57		if (of_property_read_bool(np, "cache-size"))
 58			++leaves;
 59		if (of_property_read_bool(np, "i-cache-size"))
 60			++leaves;
 61		if (of_property_read_bool(np, "d-cache-size"))
 62			++leaves;
 63		levels = level;
 64	}
 65
 
 66	this_cpu_ci->num_levels = levels;
 67	this_cpu_ci->num_leaves = leaves;
 
 68	return 0;
 69}
 70
 71static int __populate_cache_leaves(unsigned int cpu)
 72{
 73	struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu);
 74	struct cacheinfo *this_leaf = this_cpu_ci->info_list;
 75	struct device_node *np = of_cpu_device_node_get(cpu);
 
 76	int levels = 1, level = 1;
 77
 78	if (of_property_read_bool(np, "cache-size"))
 79		ci_leaf_init(this_leaf++, np, CACHE_TYPE_UNIFIED, level);
 80	if (of_property_read_bool(np, "i-cache-size"))
 81		ci_leaf_init(this_leaf++, np, CACHE_TYPE_INST, level);
 82	if (of_property_read_bool(np, "d-cache-size"))
 83		ci_leaf_init(this_leaf++, np, CACHE_TYPE_DATA, level);
 84
 
 85	while ((np = of_find_next_cache_node(np))) {
 
 
 86		if (!of_device_is_compatible(np, "cache"))
 87			break;
 88		if (of_property_read_u32(np, "cache-level", &level))
 89			break;
 90		if (level <= levels)
 91			break;
 92		if (of_property_read_bool(np, "cache-size"))
 93			ci_leaf_init(this_leaf++, np, CACHE_TYPE_UNIFIED, level);
 94		if (of_property_read_bool(np, "i-cache-size"))
 95			ci_leaf_init(this_leaf++, np, CACHE_TYPE_INST, level);
 96		if (of_property_read_bool(np, "d-cache-size"))
 97			ci_leaf_init(this_leaf++, np, CACHE_TYPE_DATA, level);
 98		levels = level;
 99	}
 
100
101	return 0;
102}
103
104DEFINE_SMP_CALL_CACHE_FUNCTION(init_cache_level)
105DEFINE_SMP_CALL_CACHE_FUNCTION(populate_cache_leaves)
v5.9
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Copyright (C) 2017 SiFive
 
 
 
 
 
 
 
 
 
  4 */
  5
  6#include <linux/cacheinfo.h>
  7#include <linux/cpu.h>
  8#include <linux/of.h>
  9#include <linux/of_device.h>
 10#include <asm/cacheinfo.h>
 11
 12static struct riscv_cacheinfo_ops *rv_cache_ops;
 13
 14void riscv_set_cacheinfo_ops(struct riscv_cacheinfo_ops *ops)
 15{
 16	rv_cache_ops = ops;
 17}
 18EXPORT_SYMBOL_GPL(riscv_set_cacheinfo_ops);
 19
 20const struct attribute_group *
 21cache_get_priv_group(struct cacheinfo *this_leaf)
 22{
 23	if (rv_cache_ops && rv_cache_ops->get_priv_group)
 24		return rv_cache_ops->get_priv_group(this_leaf);
 25	return NULL;
 26}
 27
 28static void ci_leaf_init(struct cacheinfo *this_leaf,
 29			 struct device_node *node,
 30			 enum cache_type type, unsigned int level)
 31{
 
 32	this_leaf->level = level;
 33	this_leaf->type = type;
 
 
 
 
 
 
 
 34}
 35
 36static int __init_cache_level(unsigned int cpu)
 37{
 38	struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu);
 39	struct device_node *np = of_cpu_device_node_get(cpu);
 40	struct device_node *prev = NULL;
 41	int levels = 0, leaves = 0, level;
 42
 43	if (of_property_read_bool(np, "cache-size"))
 44		++leaves;
 45	if (of_property_read_bool(np, "i-cache-size"))
 46		++leaves;
 47	if (of_property_read_bool(np, "d-cache-size"))
 48		++leaves;
 49	if (leaves > 0)
 50		levels = 1;
 51
 52	prev = np;
 53	while ((np = of_find_next_cache_node(np))) {
 54		of_node_put(prev);
 55		prev = np;
 56		if (!of_device_is_compatible(np, "cache"))
 57			break;
 58		if (of_property_read_u32(np, "cache-level", &level))
 59			break;
 60		if (level <= levels)
 61			break;
 62		if (of_property_read_bool(np, "cache-size"))
 63			++leaves;
 64		if (of_property_read_bool(np, "i-cache-size"))
 65			++leaves;
 66		if (of_property_read_bool(np, "d-cache-size"))
 67			++leaves;
 68		levels = level;
 69	}
 70
 71	of_node_put(np);
 72	this_cpu_ci->num_levels = levels;
 73	this_cpu_ci->num_leaves = leaves;
 74
 75	return 0;
 76}
 77
 78static int __populate_cache_leaves(unsigned int cpu)
 79{
 80	struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu);
 81	struct cacheinfo *this_leaf = this_cpu_ci->info_list;
 82	struct device_node *np = of_cpu_device_node_get(cpu);
 83	struct device_node *prev = NULL;
 84	int levels = 1, level = 1;
 85
 86	if (of_property_read_bool(np, "cache-size"))
 87		ci_leaf_init(this_leaf++, np, CACHE_TYPE_UNIFIED, level);
 88	if (of_property_read_bool(np, "i-cache-size"))
 89		ci_leaf_init(this_leaf++, np, CACHE_TYPE_INST, level);
 90	if (of_property_read_bool(np, "d-cache-size"))
 91		ci_leaf_init(this_leaf++, np, CACHE_TYPE_DATA, level);
 92
 93	prev = np;
 94	while ((np = of_find_next_cache_node(np))) {
 95		of_node_put(prev);
 96		prev = np;
 97		if (!of_device_is_compatible(np, "cache"))
 98			break;
 99		if (of_property_read_u32(np, "cache-level", &level))
100			break;
101		if (level <= levels)
102			break;
103		if (of_property_read_bool(np, "cache-size"))
104			ci_leaf_init(this_leaf++, np, CACHE_TYPE_UNIFIED, level);
105		if (of_property_read_bool(np, "i-cache-size"))
106			ci_leaf_init(this_leaf++, np, CACHE_TYPE_INST, level);
107		if (of_property_read_bool(np, "d-cache-size"))
108			ci_leaf_init(this_leaf++, np, CACHE_TYPE_DATA, level);
109		levels = level;
110	}
111	of_node_put(np);
112
113	return 0;
114}
115
116DEFINE_SMP_CALL_CACHE_FUNCTION(init_cache_level)
117DEFINE_SMP_CALL_CACHE_FUNCTION(populate_cache_leaves)