setup.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #ifndef __ASMARC_SETUP_H
  9. #define __ASMARC_SETUP_H
  10. #include <linux/types.h>
  11. #include <uapi/asm/setup.h>
  12. #define COMMAND_LINE_SIZE 256
  13. /*
  14. * Data structure to map a ID to string
  15. * Used a lot for bootup reporting of hardware diversity
  16. */
  17. struct id_to_str {
  18. int id;
  19. const char *str;
  20. };
  21. struct cpuinfo_data {
  22. struct id_to_str info;
  23. int up_range;
  24. };
  25. extern int root_mountflags, end_mem;
  26. void setup_processor(void);
  27. void __init setup_arch_memory(void);
  28. /* Helpers used in arc_*_mumbojumbo routines */
  29. #define IS_AVAIL1(v, s) ((v) ? s : "")
  30. #define IS_DISABLED_RUN(v) ((v) ? "" : "(disabled) ")
  31. #define IS_USED_RUN(v) ((v) ? "" : "(not used) ")
  32. #define IS_USED_CFG(cfg) IS_USED_RUN(IS_ENABLED(cfg))
  33. #define IS_AVAIL2(v, s, cfg) IS_AVAIL1(v, s), IS_AVAIL1(v, IS_USED_CFG(cfg))
  34. #endif /* __ASMARC_SETUP_H */