soc-integrator.c (4eca459bc10d8400407d0fc04e90dac45b571c87) soc-integrator.c (c747803861f7e3849673754062e827d8d21dbcc4)
1/*
2 * Copyright (C) 2014 Linaro Ltd.
3 *
4 * Author: Linus Walleij <linus.walleij@linaro.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2, as
8 * published by the Free Software Foundation.

--- 9 unchanged lines hidden (view full) ---

18#include <linux/of.h>
19
20#define INTEGRATOR_HDR_ID_OFFSET 0x00
21
22static u32 integrator_coreid;
23
24static const struct of_device_id integrator_cm_match[] = {
25 { .compatible = "arm,core-module-integrator", },
1/*
2 * Copyright (C) 2014 Linaro Ltd.
3 *
4 * Author: Linus Walleij <linus.walleij@linaro.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2, as
8 * published by the Free Software Foundation.

--- 9 unchanged lines hidden (view full) ---

18#include <linux/of.h>
19
20#define INTEGRATOR_HDR_ID_OFFSET 0x00
21
22static u32 integrator_coreid;
23
24static const struct of_device_id integrator_cm_match[] = {
25 { .compatible = "arm,core-module-integrator", },
26 { }
26};
27
28static const char *integrator_arch_str(u32 id)
29{
30 switch ((id >> 16) & 0xff) {
31 case 0x00:
32 return "ASB little-endian";
33 case 0x01:

--- 121 unchanged lines hidden ---
27};
28
29static const char *integrator_arch_str(u32 id)
30{
31 switch ((id >> 16) & 0xff) {
32 case 0x00:
33 return "ASB little-endian";
34 case 0x01:

--- 121 unchanged lines hidden ---