debug.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * drivers/net/ethernet/ibm/emac/debug.h
  3. *
  4. * Driver for PowerPC 4xx on-chip ethernet controller, debug print routines.
  5. *
  6. * Copyright 2007 Benjamin Herrenschmidt, IBM Corp.
  7. * <benh@kernel.crashing.org>
  8. *
  9. * Based on the arch/ppc version of the driver:
  10. *
  11. * Copyright (c) 2004, 2005 Zultys Technologies
  12. * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
  13. *
  14. * This program is free software; you can redistribute it and/or modify it
  15. * under the terms of the GNU General Public License as published by the
  16. * Free Software Foundation; either version 2 of the License, or (at your
  17. * option) any later version.
  18. *
  19. */
  20. #ifndef __IBM_NEWEMAC_DEBUG_H
  21. #define __IBM_NEWEMAC_DEBUG_H
  22. #include <linux/init.h>
  23. #include "core.h"
  24. #if defined(CONFIG_IBM_EMAC_DEBUG)
  25. # define DBG_LEVEL 1
  26. #else
  27. # define DBG_LEVEL 0
  28. #endif
  29. #define EMAC_DBG(d, name, fmt, arg...) \
  30. printk(KERN_DEBUG #name "%pOF: " fmt, d->ofdev->dev.of_node, ## arg)
  31. #if DBG_LEVEL > 0
  32. # define DBG(d,f,x...) EMAC_DBG(d, emac, f, ##x)
  33. # define MAL_DBG(d,f,x...) EMAC_DBG(d, mal, f, ##x)
  34. # define ZMII_DBG(d,f,x...) EMAC_DBG(d, zmii, f, ##x)
  35. # define RGMII_DBG(d,f,x...) EMAC_DBG(d, rgmii, f, ##x)
  36. # define NL "\n"
  37. #else
  38. # define DBG(f,x...) ((void)0)
  39. # define MAL_DBG(d,f,x...) ((void)0)
  40. # define ZMII_DBG(d,f,x...) ((void)0)
  41. # define RGMII_DBG(d,f,x...) ((void)0)
  42. #endif
  43. #if DBG_LEVEL > 1
  44. # define DBG2(d,f,x...) DBG(d,f, ##x)
  45. # define MAL_DBG2(d,f,x...) MAL_DBG(d,f, ##x)
  46. # define ZMII_DBG2(d,f,x...) ZMII_DBG(d,f, ##x)
  47. # define RGMII_DBG2(d,f,x...) RGMII_DBG(d,f, ##x)
  48. #else
  49. # define DBG2(f,x...) ((void)0)
  50. # define MAL_DBG2(d,f,x...) ((void)0)
  51. # define ZMII_DBG2(d,f,x...) ((void)0)
  52. # define RGMII_DBG2(d,f,x...) ((void)0)
  53. #endif
  54. #endif /* __IBM_NEWEMAC_DEBUG_H */