/* SPDX-License-Identifier: GPL-2.0 */1/* Copyright (c) 2024 Pengutronix, Oleksij Rempel <[email protected]> */23#ifndef __DSCP_H__4#define __DSCP_H__56/*7* DSCP Pools and Codepoint Space Division:8*9* The Differentiated Services (Diffserv) architecture defines a method for10* classifying and managing network traffic using the DS field in IPv4 and IPv611* packet headers. This field can carry one of 64 distinct DSCP (Differentiated12* Services Code Point) values, which are divided into three pools based on13* their Least Significant Bits (LSB) patterns and intended usage. Each pool has14* a specific registration procedure for assigning DSCP values:15*16* Pool 1 (Standards Action Pool):17* - Codepoint Space: xxxxx018* This pool includes DSCP values ending in '0' (binary), allocated via19* Standards Action. It is intended for globally recognized traffic classes,20* ensuring interoperability across the internet. This pool encompasses21* well-known DSCP values such as CS0-CS7, AFxx, EF, and VOICE-ADMIT.22*23* Pool 2 (Experimental/Local Use Pool):24* - Codepoint Space: xxxx1125* Reserved for DSCP values ending in '11' (binary), this pool is designated26* for Experimental or Local Use. It allows for private or temporary traffic27* marking schemes not intended for standardized global use, facilitating28* testing and network-specific configurations without impacting29* interoperability.30*31* Pool 3 (Preferential Standardization Pool):32* - Codepoint Space: xxxx0133* Initially reserved for experimental or local use, this pool now serves as34* a secondary standardization resource should Pool 1 become exhausted. DSCP35* values ending in '01' (binary) are assigned via Standards Action, with a36* focus on adopting new, standardized traffic classes as the need arises.37*38* For pool updates see:39* https://www.iana.org/assignments/dscp-registry/dscp-registry.xhtml40*/4142/* Pool 1: Standardized DSCP values as per [RFC8126] */43#define DSCP_CS0 0 /* 000000, [RFC2474] */44/* CS0 is some times called default (DF) */45#define DSCP_DF 0 /* 000000, [RFC2474] */46#define DSCP_CS1 8 /* 001000, [RFC2474] */47#define DSCP_CS2 16 /* 010000, [RFC2474] */48#define DSCP_CS3 24 /* 011000, [RFC2474] */49#define DSCP_CS4 32 /* 100000, [RFC2474] */50#define DSCP_CS5 40 /* 101000, [RFC2474] */51#define DSCP_CS6 48 /* 110000, [RFC2474] */52#define DSCP_CS7 56 /* 111000, [RFC2474] */53#define DSCP_AF11 10 /* 001010, [RFC2597] */54#define DSCP_AF12 12 /* 001100, [RFC2597] */55#define DSCP_AF13 14 /* 001110, [RFC2597] */56#define DSCP_AF21 18 /* 010010, [RFC2597] */57#define DSCP_AF22 20 /* 010100, [RFC2597] */58#define DSCP_AF23 22 /* 010110, [RFC2597] */59#define DSCP_AF31 26 /* 011010, [RFC2597] */60#define DSCP_AF32 28 /* 011100, [RFC2597] */61#define DSCP_AF33 30 /* 011110, [RFC2597] */62#define DSCP_AF41 34 /* 100010, [RFC2597] */63#define DSCP_AF42 36 /* 100100, [RFC2597] */64#define DSCP_AF43 38 /* 100110, [RFC2597] */65#define DSCP_EF 46 /* 101110, [RFC3246] */66#define DSCP_VOICE_ADMIT 44 /* 101100, [RFC5865] */6768/* Pool 3: Standardized assignments, previously available for experimental/local69* use70*/71#define DSCP_LE 1 /* 000001, [RFC8622] */7273#define DSCP_MAX 647475#endif /* __DSCP_H__ */767778