20 lines
479 B
C
20 lines
479 B
C
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
/*
|
|
* All functions in charge of generating the associativity/affinity
|
|
* properties in the device-tree
|
|
*
|
|
* Copyright 2013-2014 IBM Corp.
|
|
*/
|
|
|
|
#ifndef __AFFINITY_H
|
|
#define __AFFINITY_H
|
|
|
|
struct dt_node;
|
|
struct cpu_thread;
|
|
|
|
extern void add_associativity_ref_point(void);
|
|
|
|
extern void add_chip_dev_associativity(struct dt_node *dev);
|
|
extern void add_core_associativity(struct cpu_thread *cpu);
|
|
|
|
#endif /* __AFFINITY_H */
|