1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21# uts/sun4v/nxge/Makefile 22# 23# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26# 27# ident "%Z%%M% %I% %E% SMI" 28# 29# This makefile drives the production of the N2 NIU 30# 10G Ethernet leaf driver kernel module. 31# 32# sun4v implementation architecture dependent 33# 34 35# 36# Path to the base of the uts directory tree (usually /usr/src/uts). 37# 38UTSBASE = ../.. 39 40# 41# Define the module and object file sets. 42# 43MODULE = nxge 44OBJECTS = $(NXGE_OBJS:%=$(OBJS_DIR)/%) $(NXGE_NPI_OBJS:%=$(OBJS_DIR)/%) 45LINTS = $(NXGE_OBJS:%.o=$(LINTS_DIR)/%.ln) \ 46 $(NXGE_NPI_OBJS:%.o=$(LINTS_DIR)/%.ln) 47ROOTMODULE = $(ROOT_PSM_DRV_DIR)/$(MODULE) 48 49# 50# Include common rules. 51# 52include $(UTSBASE)/sun4v/Makefile.sun4v 53 54# 55# Override defaults to build a unique, local modstubs.o. 56# 57MODSTUBS_DIR = $(OBJS_DIR) 58 59CLEANFILES += $(MODSTUBS_O) 60 61# 62# Define targets 63# 64ALL_TARGET = $(BINARY) 65LINT_TARGET = $(MODULE).lint 66INSTALL_TARGET = $(BINARY) $(ROOTMODULE) 67 68# 69# 70# Turn on doubleword alignment for 64 bit registers 71# 72CFLAGS += -dalign 73# 74# Include nxge specific header files 75# 76INC_PATH += -I$(UTSBASE)/sun4v/io/nxge/npi 77INC_PATH += -I$(UTSBASE)/sun4v/sys/nxge 78# 79# 80# lint pass one enforcement 81# 82CFLAGS += -DSOLARIS 83# NEMO 84#CFLAGS += -DNEMO 85# 86# Enable the following flags to run mac internal loopback under legion 87#CFLAGS += -DLEGION -DAXIS -DAXIS_DEBUG -DAXIS_DEBUG_LB -DSAM_DEBUG 88# 89# Enable the following flags to run mac internal loopback under AXIS 90# (NOTE: LEGION flag can be enabled too) 91#CFLAGS += -DAXIS_DEBUG -DAXIS -DAXIS_DEBUG_LB -DSAM_DEBUG -DLEGION 92# 93# Enable NXGE debug 94#CFLAGS += -DNXGE_DEBUG 95# Enable NPI debug 96#CFLAGS += -DNPI_DEBUG 97#CFLAGS += -DNXGE_FM 98#CFLAGS += -DUSE_RX_BUFF_ATTR 99 100#CFLAGS += -DNIU_PA_WORKAROUND 101#CFLAGS += -DNIU_HV_WORKAROUND 102CFLAGS += -DNIU_LP_WORKAROUND 103 104LINTFLAGS += -DSOLARIS 105LINTFLAGS += -DNXGE_FM 106LINTFLAGS += -DNIU_LP_WORKAROUND 107# 108# STREAMS, DDI API limitations and other ON header file definitions such as ethernet.h 109# force us to turn off these lint checks. 110# 111LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN 112LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW 113# 114# Driver depends on mac & IP 115# 116LDFLAGS += -dy -N misc/mac -N drv/ip 117 118# 119# Default build targets. 120# 121.KEEP_STATE: 122 123def: $(DEF_DEPS) 124 125all: $(ALL_DEPS) 126 127clean: $(CLEAN_DEPS) 128 129clobber: $(CLOBBER_DEPS) 130 131lint: $(LINT_DEPS) 132 133modlintlib: $(MODLINTLIB_DEPS) 134 135clean.lint: $(CLEAN_LINT_DEPS) 136 137install: $(INSTALL_DEPS) 138 139# 140# Include common targets. 141# 142include $(UTSBASE)/$(PLATFORM)/Makefile.targ 143