blob: d3261aae06ee10e898d100cc99cc7e8f2ddaf5ba [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass6a84aaf2015-06-23 15:38:43 -06002/*
3 * Copyright (c) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass6a84aaf2015-06-23 15:38:43 -06005 */
6
7#ifndef __SYSCON_H
8#define __SYSCON_H
9
Simon Glass1b1fe412017-08-29 14:15:50 -060010#include <fdtdec.h>
11
Simon Glass6a84aaf2015-06-23 15:38:43 -060012/**
13 * struct syscon_uc_info - Information stored by the syscon UCLASS_UCLASS
14 *
15 * @regmap: Register map for this controller
16 */
17struct syscon_uc_info {
18 struct regmap *regmap;
19};
20
21/* So far there are no ops so this is a placeholder */
22struct syscon_ops {
23};
24
25#define syscon_get_ops(dev) ((struct syscon_ops *)(dev)->driver->ops)
26
Simon Glass73dd0692016-07-04 11:58:00 -060027#if CONFIG_IS_ENABLED(OF_PLATDATA)
28/*
29 * We don't support 64-bit machines. If they are so resource-contrained that
30 * they need to use OF_PLATDATA, something is horribly wrong with the
31 * education of our hardware engineers.
Simon Glass1b1fe412017-08-29 14:15:50 -060032 *
33 * Update: 64-bit is now supported and we have an education crisis.
Simon Glass73dd0692016-07-04 11:58:00 -060034 */
35struct syscon_base_platdata {
Simon Glass1b1fe412017-08-29 14:15:50 -060036 fdt_val_t reg[2];
Simon Glass73dd0692016-07-04 11:58:00 -060037};
38#endif
39
Simon Glass6a84aaf2015-06-23 15:38:43 -060040/**
41 * syscon_get_regmap() - Get access to a register map
42 *
43 * @dev: Device to check (UCLASS_SCON)
44 * @info: Returns regmap for the device
45 * @return 0 if OK, -ve on error
46 */
47struct regmap *syscon_get_regmap(struct udevice *dev);
48
49/**
50 * syscon_get_regmap_by_driver_data() - Look up a controller by its ID
51 *
52 * Each system controller can be accessed by its driver data, which is
53 * assumed to be unique through the scope of all system controllers that
Simon Glass6d5579c2016-01-17 16:11:08 -070054 * are in use. This function looks up the controller given this driver data.
55 *
56 * @driver_data: Driver data value to look up
57 * @devp: Returns the controller correponding to @driver_data
58 * @return 0 on success, -ENODEV if the ID was not found, or other -ve error
59 * code
60 */
61int syscon_get_by_driver_data(ulong driver_data, struct udevice **devp);
62
63/**
64 * syscon_get_regmap_by_driver_data() - Look up a controller by its ID
65 *
66 * Each system controller can be accessed by its driver data, which is
67 * assumed to be unique through the scope of all system controllers that
Simon Glass6a84aaf2015-06-23 15:38:43 -060068 * are in use. This function looks up the regmap given this driver data.
69 *
70 * @driver_data: Driver data value to look up
71 * @return register map correponding to @driver_data, or -ve error code
72 */
73struct regmap *syscon_get_regmap_by_driver_data(ulong driver_data);
74
75/**
76 * syscon_get_first_range() - get the first memory range from a syscon regmap
77 *
78 * @driver_data: Driver data value to look up
79 * @return first region of register map correponding to @driver_data, or
80 * -ve error code
81 */
82void *syscon_get_first_range(ulong driver_data);
83
84#endif