ixp4xx-npe.c (d5d9f7ac58ea1041375a028f143ca5784693ea86) | ixp4xx-npe.c (09aa9aabdcc4966270b031816a16d4641fb45dfa) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Intel IXP4xx Network Processor Engine driver for Linux 4 * 5 * Copyright (C) 2007 Krzysztof Halasa <khc@pm.waw.pl> 6 * 7 * The code is based on publicly available information: 8 * - Intel IXP4xx Developer's Manual and other e-papers --- 7 unchanged lines hidden (view full) --- 16#include <linux/firmware.h> 17#include <linux/io.h> 18#include <linux/kernel.h> 19#include <linux/module.h> 20#include <linux/of.h> 21#include <linux/platform_device.h> 22#include <linux/soc/ixp4xx/npe.h> 23#include <mach/hardware.h> | 1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Intel IXP4xx Network Processor Engine driver for Linux 4 * 5 * Copyright (C) 2007 Krzysztof Halasa <khc@pm.waw.pl> 6 * 7 * The code is based on publicly available information: 8 * - Intel IXP4xx Developer's Manual and other e-papers --- 7 unchanged lines hidden (view full) --- 16#include <linux/firmware.h> 17#include <linux/io.h> 18#include <linux/kernel.h> 19#include <linux/module.h> 20#include <linux/of.h> 21#include <linux/platform_device.h> 22#include <linux/soc/ixp4xx/npe.h> 23#include <mach/hardware.h> |
24#include <mach/cpu.h> | 24#include <linux/soc/ixp4xx/cpu.h> |
25 26#define DEBUG_MSG 0 27#define DEBUG_FW 0 28 29#define NPE_COUNT 3 30#define MAX_RETRIES 1000 /* microseconds */ 31#define NPE_42X_DATA_SIZE 0x800 /* in dwords */ 32#define NPE_46X_DATA_SIZE 0x1000 --- 729 unchanged lines hidden --- | 25 26#define DEBUG_MSG 0 27#define DEBUG_FW 0 28 29#define NPE_COUNT 3 30#define MAX_RETRIES 1000 /* microseconds */ 31#define NPE_42X_DATA_SIZE 0x800 /* in dwords */ 32#define NPE_46X_DATA_SIZE 0x1000 --- 729 unchanged lines hidden --- |